52 lines
1.7 KiB
HTML
52 lines
1.7 KiB
HTML
![]() |
{% import "macros/macros.html" as post_macros %}
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="{{lang}}">
|
||
|
{% include "partials/header.html" %}
|
||
|
|
||
|
<body>
|
||
|
<div class="content">
|
||
|
{% include "partials/head.html" %}
|
||
|
|
||
|
{% block main_content %}
|
||
|
<main class="list">
|
||
|
<div class="site-description">
|
||
|
{% if config.description %}
|
||
|
{{ config.description | markdown | safe }}
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
{%- if paginator %}
|
||
|
{%- set show_pages = paginator.pages -%}
|
||
|
{% else %}
|
||
|
{% set section = get_section(path="posts/_index.md") %}
|
||
|
{%- set show_pages = section.pages -%}
|
||
|
{% endif -%}
|
||
|
|
||
|
{{ post_macros::list_posts(pages=show_pages, extra=config.extra) }}
|
||
|
</main>
|
||
|
|
||
|
{% if paginator %}
|
||
|
<ul class="pagination">
|
||
|
{% if paginator.previous %}
|
||
|
<span class="page-item page-prev">
|
||
|
<a href={{ paginator.previous }} class="page-link" aria-label="Previous"><span aria-hidden="true">{{ config.extra.translations[lang][0].previous_page }}</span></a>
|
||
|
</span>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if paginator.next %}
|
||
|
<span class="page-item page-next">
|
||
|
<a href={{ paginator.next }} class="page-link" aria-label="Next"><span aria-hidden="true">{{ config.extra.translations[lang][0].next_page }}</span></a>
|
||
|
</span>
|
||
|
{% endif %}
|
||
|
</ul>
|
||
|
{% endif %}
|
||
|
|
||
|
{% endblock main_content %}
|
||
|
|
||
|
{% include "partials/footer.html" %}
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|