11 lines
280 B
Smarty
Executable file
11 lines
280 B
Smarty
Executable file
{% extends 'global/master.tpl' %}
|
|
|
|
{% block title %}{% if page.title %}{{ page.title }}{% else %}Not found!{% endif %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="markdown platform">
|
|
<div>
|
|
{{ page.content|raw }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|