2022-03-19 00:00:51 +01:00
|
|
|
{% extends "frame.twig" %}
|
2021-04-24 05:54:56 +02:00
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block mainContent %}
|
|
|
|
<section>
|
|
|
|
<div class="page-title">
|
|
|
|
<span>{{title}}</span>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<article>
|
|
|
|
<div class="page">
|
|
|
|
{% for item in archives %}
|
|
|
|
<div class="archive-item">
|
|
|
|
<span class="year">
|
|
|
|
{{item.year}}
|
|
|
|
</span>
|
|
|
|
{% for data in item.year_data %}
|
|
|
|
<div class="archive-month">
|
|
|
|
<span class="month">
|
|
|
|
{{data.full_month}}
|
|
|
|
</span>
|
|
|
|
{% for page in data.pages %}
|
2021-11-03 23:19:52 +01:00
|
|
|
{% if dynamicRender is defined %}
|
2021-12-30 02:10:01 +01:00
|
|
|
{% if dynamicRender == 'true' %}
|
2021-11-03 23:19:52 +01:00
|
|
|
<a href="{{ "/"~item.year~"/"~data.month~"/"~page.slug }}">{{page.title}}</a><br />
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ "/"~item.year~"/"~data.month~"/"~page.slug~".html" }}">{{page.title}}</a><br />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ "/"~item.year~"/"~data.month~"/"~page.slug~".html" }}">{{page.title}}</a><br />
|
|
|
|
{% endif %}
|
2021-04-24 05:54:56 +02:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|