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.
|
|
|
{% extends "fipamo-default/frame.twig" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block mainContent %}
|
|
|
|
<section>
|
|
|
|
<div class="page-title">
|
|
|
|
<span>{{title}}</span>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<article>
|
|
|
|
<div class="page">
|
|
|
|
<p>{{content | raw}}</p>
|
|
|
|
<div>
|
|
|
|
|
|
|
|
{{meta['who']}} dropped this {{ meta['when'] }}<br />
|
|
|
|
<strong>tags: </strong>
|
|
|
|
{% for tag in meta['tags'] %}
|
|
|
|
{% if dynamicRender is defined %}
|
|
|
|
{% if dynamicRender == 'false' %}
|
|
|
|
<a href="{{ "/tags/"~tag.slug }}">{{ tag.label }}</a>
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ "/tags/"~tag.slug~".html" }}">{{ tag.label }}</a>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ "/tags/"~tag.slug~".html" }}">{{ tag.label }}</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|