16 lines
660 B
Plaintext
16 lines
660 B
Plaintext
{% include page_start.liquid %}
|
|
{% include page_content.liquid %}
|
|
{% include breadcrumbs.liquid title=page.title permalink=page.url %}
|
|
<div id="index">
|
|
{% for data in paginator.posts %}
|
|
{% if site.xaymar.index.excerpt.enabled %}
|
|
{% assign content=data.excerpt | strip_html | normalize_whitespace | truncatewords: site.xaymar.index.excerpt.length %}
|
|
{% else %}
|
|
{% assign content=data.content %}
|
|
{% endif %}
|
|
{% include article.liquid type=post index=true title=data.title content=content permalink=data.url categories=data.categories tags=data.tags timestamp=data.date %}
|
|
{% endfor %}
|
|
</div>
|
|
{% include pagination.liquid %}
|
|
{% include page_end.liquid %}
|