diff options
author | 2018-04-03 16:52:23 +0100 | |
---|---|---|
committer | 2018-04-03 16:52:23 +0100 | |
commit | 4c639ebb06c8ef931589aca98185777b0b3e1175 (patch) | |
tree | a74b053a4c73f595cb4907e2dd516b5ff58372fc /templates/wiki | |
parent | Fix staff route name (diff) |
Basic wiki routes
Diffstat (limited to 'templates/wiki')
-rw-r--r-- | templates/wiki/index.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/wiki/index.html b/templates/wiki/index.html new file mode 100644 index 00000000..5601cbbf --- /dev/null +++ b/templates/wiki/index.html @@ -0,0 +1,11 @@ +{% extends "main/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> +{% endblock %}
\ No newline at end of file |