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/_sakura/templates/misaki/main/settings.tpl

19 lines
575 B
Smarty
Raw Normal View History

{% extends 'global/master.tpl' %}
{% block title %}{{ page.category }} / {{ page.mode }}{% endblock %}
{% block content %}
{% include 'elements/settingsNavigation.tpl' %}
<div class="platform">
<h1 class="sectionHead">
{{ page.category }} / {{ page.mode }}
</h1>
<div class="settings-explanation">
{% for descline in page.description %}
<div>{{ include(template_from_string(descline)) }}</div>
{% endfor %}
2015-08-23 22:08:36 +00:00
</div>
{% include 'settings/' ~ current ~ '.tpl' %}
2015-08-23 22:08:36 +00:00
</div>
{% endblock %}