Dramatic layout updates, still in progress.

This commit is contained in:
2016-05-04 15:16:23 -04:00
parent f343f2b42c
commit 9ead6e05b6
7 changed files with 36 additions and 28 deletions

18
_includes/post_list.html Normal file
View File

@ -0,0 +1,18 @@
<ul class="post-list">
{% for post in site.posts limit:include.limit %}
{% if include.categories contains post.category %}
<li style="margin-top: 30px">
<h2 style="line-height: 1">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
{{ post.title }}
</a>
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
</h2>
{{ post.excerpt }}
<p>
<a href="{{ post.url | prepend: site.baseurl }}">Read More...</a>
</p>
</li>
{% endif %}
{% endfor %}
</ul>