add comments to sections

This commit is contained in:
theshka 2015-12-01 09:53:00 -06:00
parent d25f0df4a0
commit a2b825ff49

View file

@ -1,11 +1,15 @@
<!-- Blog List -->
{% for page in pages|sort_by("time")|reverse %}
{% if page.id starts with "blog/" %}
<!-- Blog Post Meta -->
<div class="blog-post">
<!-- Blog Post Meta -->
<h2 class="blog-post-title"><a href="{{ page.url }}">{{ page.title }}</a></h2>
<p class="blog-post-meta">
<i class="fa fa-calendar"></i> {{ page.date }}
by <strong>{{ page.author }}</strong>
</p>
<!-- Blog Content -->
{{ page.description|slice(0, 500) }}
</div>
<hr>