The README contains the commands for building the blog in all different configurations.
18 lines
480 B
HTML
18 lines
480 B
HTML
---
|
|
layout: post-index
|
|
title: All Posts
|
|
comments: false
|
|
image:
|
|
feature: index_background2.png
|
|
---
|
|
|
|
<article>
|
|
{% for post in site.posts %}
|
|
<div class="index-post">
|
|
<span class="index-post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
|
|
<h4 class="index-post-title"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h4>
|
|
<p class="index-post-description">{{ post.description }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</article>
|