diff options
| author | 2018-04-12 11:54:02 +0100 | |
|---|---|---|
| committer | 2018-04-12 11:54:02 +0100 | |
| commit | cec1ab596024dfcee929a3246715a88b432bfe8a (patch) | |
| tree | 338b3ceb612687c258083b8251cd74e7d874dbc3 /templates/wiki/page_source.html | |
| parent | Update resources page with new icons and formatting. (diff) | |
Add page source view to wiki
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 |