Zola init

This commit is contained in:
2023-08-25 11:47:55 +03:00
commit bfe5a8b037
96 changed files with 6639 additions and 0 deletions

51
templates/index.html Normal file
View File

@ -0,0 +1,51 @@
{% 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>