diff options
Diffstat (limited to 'templates/wiki/page_view.html')
-rw-r--r-- | templates/wiki/page_view.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/templates/wiki/page_view.html b/templates/wiki/page_view.html index 5601cbbf..98c6f4cd 100644 --- a/templates/wiki/page_view.html +++ b/templates/wiki/page_view.html @@ -1,11 +1,13 @@ -{% extends "main/base.html" %} +{% extends "wiki/base.html" %} {% block title %}Wiki | Home{% endblock %} {% block og_title %}Wiki | Home{% endblock %} {% block og_description %}Landing page for the wiki{% endblock %} {% block content %} - <div class="uk-container uk-section"> - <h1 class="uk-title uk-text-center"> - Placeholder text. - </h1> + <div class="uk-container uk-container-small"> + <h2 class="uk-title"> + {{ data["title"] }} + </h2> + + {{ data["html"] | safe }} </div> {% endblock %}
\ No newline at end of file |