layout | title | permalink |
---|---|---|
default |
Blog |
/blog/ |
{% for post in site.posts %}
{{ post.title }}
{{ post.content | strip_html | truncatewords:20}}
posted on
{{ post.date | date: "%A, %B %-d, %Y" }}
</span>
<span class="in">
in
</span>
<span class="categories-on">
{% for category in post.categories %}
{{category}} {% if forloop.last %}{% else %},{% endif %}
{% endfor %}
</span>
</div>
<a class="read-more" href="{{post.url | prepend:site.baseurl }}">read more</a>
</div>
{% endfor %}
</div>
</div>