mirror of
https://github.com/kemko/liquid.git
synced 2026-01-03 00:35:40 +03:00
14 lines
437 B
Plaintext
14 lines
437 B
Plaintext
<div id="blog-page">
|
|
<h2 class="heading-shaded">{{page.title}}</h2>
|
|
{% for article in blog.articles %}
|
|
<h4>
|
|
{{ article.created_at | date: '%d %b' }}
|
|
<a href="{{article.url}}">{{ article.title }}</a>
|
|
</h4>
|
|
{{ article.content }}
|
|
{% if blog.comments_enabled? %}
|
|
<p><a href="{{article.url}}#comments">{{ article.comments_count }} comments</a></p>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|