37 lines
1.4 KiB
Twig
37 lines
1.4 KiB
Twig
|
{% extends "frame.twig" %}
|
||
|
|
||
|
{% block title %}
|
||
|
{{ title }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block mainContent %}
|
||
|
<article>
|
||
|
<h1>{{ title }}</h1>
|
||
|
|
||
|
<div role="archives">
|
||
|
{% for item in archives %}
|
||
|
<div role="archive-item">
|
||
|
<h2>{{ item.year }}</h2>
|
||
|
{% for data in item.year_data %}
|
||
|
<div role="archive-month">
|
||
|
<h3>{{ data.full_month }}</h3>
|
||
|
{% for page in data.pages %}
|
||
|
{% if dynamicRender is defined %}
|
||
|
{% if dynamicRender == 'true' %}
|
||
|
<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 %}
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</article>
|
||
|
{% endblock %}
|