18 lines
575 B
Smarty
Executable file
18 lines
575 B
Smarty
Executable file
{% 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 %}
|
|
</div>
|
|
{% include 'settings/' ~ current ~ '.tpl' %}
|
|
</div>
|
|
{% endblock %}
|