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.
50 lines
1.3 KiB
Twig
50 lines
1.3 KiB
Twig
{% 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 %}
|
|
{% if dynamicRender is defined %}
|
|
{% if dynamicRender %}
|
|
<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 class="featured">
|
|
<span>FEATURED</span><br />
|
|
{% for item in featured %}
|
|
{% if dynamicRender is defined %}
|
|
{% if dynamicRender %}
|
|
<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>
|
|
</section>
|
|
{% endblock %} |