You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
3 years ago
|
{% extends "frame.twig" %}
|
||
4 years ago
|
|
||
|
{% block title %}
|
||
2 years ago
|
{{ title }}
|
||
4 years ago
|
{% endblock %}
|
||
|
|
||
2 years ago
|
{% 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 %}
|