diff options
Diffstat (limited to 'templates/wiki/page_source.html')
-rw-r--r-- | templates/wiki/page_source.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/wiki/page_source.html b/templates/wiki/page_source.html new file mode 100644 index 00000000..15384aa9 --- /dev/null +++ b/templates/wiki/page_source.html @@ -0,0 +1,13 @@ +{% extends "wiki/base.html" %} +{% block title %}Wiki | {{ data["title"] }}{% endblock %} +{% block og_title %}Wiki | {{ data["title"] }}{% endblock %} +{% block og_description %}{% endblock %} +{% block content %} + <div class="uk-container uk-container-small"> + <h2 class="uk-title"> + {{ data["title"] }} + </h2> + + {{ rst | safe }} + </div> +{% endblock %}
\ No newline at end of file |