This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/templates/misaki/main/settings.twig
2016-01-04 21:14:09 +01:00

18 lines
503 B
Twig

{% extends 'global/master.twig' %}
{% block title %}{{ page.category }} / {{ page.mode }}{% endblock %}
{% block content %}
<div class="box">
<h1 class="sectionHead">
{{ page.category }} <div class="fa">&#xf105;</div> {{ page.mode }}
</h1>
<h3>
{% for descline in page.description %}
{{ include(template_from_string(descline)) }}
{% endfor %}
</h3>
</div>
{% include 'settings/' ~ current ~ '.twig' %}
{% endblock %}