Files

16 lines
660 B
Plaintext
Raw Permalink Normal View History

2021-12-24 11:00:43 +01:00
{% include page_start.liquid %}
{% include page_content.liquid %}
{% include breadcrumbs.liquid title=page.title permalink=page.url %}
2021-12-25 08:55:17 +01:00
<div id="index">
2021-12-24 11:00:43 +01:00
{% 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 %}
2021-12-25 09:08:01 +01:00
{% include article.liquid type=post index=true title=data.title content=content permalink=data.url categories=data.categories tags=data.tags timestamp=data.date %}
2021-12-24 11:00:43 +01:00
{% endfor %}
2021-12-25 08:55:17 +01:00
</div>
2022-11-26 00:52:11 +01:00
{% include pagination.liquid %}
2021-12-24 11:00:43 +01:00
{% include page_end.liquid %}