mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
34 lines
821 B
Plaintext
34 lines
821 B
Plaintext
<div id="page">
|
|
<h2>{{page.title}}</h2>
|
|
|
|
{% paginate blog.articles by 20 %}
|
|
|
|
{% for article in blog.articles %}
|
|
|
|
<div class="article">
|
|
<div class="headline">
|
|
<h3 class="title">
|
|
<a href="{{article.url}}">{{ article.title }}</a>
|
|
</h3>
|
|
<h4 class="date">Posted on {{ article.created_at | date: "%B %d, '%y" }} by {{ article.author }}.</h4>
|
|
</div>
|
|
|
|
<div class="article-body textile">
|
|
{{ article.content | strip_html | truncate: 250 }}
|
|
</div>
|
|
|
|
{% if blog.comments_enabled? %}
|
|
<p style="text-align: right"><a href="{{article.url}}#comments">{{ article.comments_count }} comments</a></p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
<div id="pagination">
|
|
{{ paginate | default_pagination }}
|
|
</div>
|
|
|
|
{% endpaginate %}
|
|
|
|
</div>
|