2022-02-06 00:27:02 +01:00
|
|
|
{% extends "frame.twig" %}
|
2021-04-21 08:14:49 +02:00
|
|
|
|
|
|
|
{% block title %}
|
2022-11-01 00:07:19 +01:00
|
|
|
{{ title }}
|
2021-04-21 08:14:49 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
2022-11-01 00:07:19 +01:00
|
|
|
{% block mainContent %}
|
|
|
|
<article>
|
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
<p>{{ content | raw }}</p>
|
|
|
|
</article>
|
|
|
|
<section role="page-meta">
|
|
|
|
<div>
|
|
|
|
<h2>RECENT</h2>
|
|
|
|
{% for item in recent %}
|
|
|
|
{% if dynamicRender is defined %}
|
|
|
|
{% if dynamicRender == 'true' %}
|
|
|
|
<a href="{{ "/"~item.path~"/"~item.slug }}">
|
|
|
|
{{ item.title }}
|
|
|
|
</a><br/>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ "/"~item.path~"/"~item.slug~".html" }}">
|
|
|
|
{{ item.title }}
|
|
|
|
</a><br/>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ "/"~item.path~"/"~item.slug~".html" }}">
|
|
|
|
{{ item.title }}
|
|
|
|
</a><br/>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2>FEATURED</h2>
|
|
|
|
{% for item in featured %}
|
|
|
|
{% if dynamicRender is defined %}
|
|
|
|
{% if dynamicRender == 'true' %}
|
|
|
|
<a href="{{ "/"~item.path~"/"~item.slug }}">
|
|
|
|
{{ item.title }}
|
|
|
|
</a><br/>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ "/"~item.path~"/"~item.slug~".html" }}">
|
|
|
|
{{ item.title }}
|
|
|
|
</a><br/>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ "/"~item.path~"/"~item.slug~".html" }}">
|
|
|
|
{{ item.title }}
|
|
|
|
</a><br/>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% endblock %}
|