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.
33 lines
732 B
Plaintext
33 lines
732 B
Plaintext
4 years ago
|
{% extends "fipamo-default/frame.twig" %}
|
||
|
|
||
|
{% block title %}
|
||
|
{{ title }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block mainContent %}
|
||
|
<article>
|
||
|
<div class="index">
|
||
|
<h2>{{title}}</h2>
|
||
|
<p>{{ content | raw }}</p>
|
||
|
|
||
|
</div>
|
||
|
</article>
|
||
|
<section>
|
||
|
<div class="index-lists">
|
||
|
<div class="recent">
|
||
|
<span>RECENT</span><br />
|
||
|
{% for item in recent %}
|
||
|
<a href="{{ "/"~item.path~"/"~item.slug~".html" }}"> {{item.title}} </a><br />
|
||
|
{% endfor %}
|
||
|
|
||
|
</div>
|
||
|
<div class="featured">
|
||
|
<span>FEATURED</span><br />
|
||
|
{% for item in featured %}
|
||
|
<a href="{{ "/"~item.path~"/"~item.slug~".html" }}"> {{item.title}} </a><br />
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
</section>
|
||
|
{% endblock %}
|