diff options
Diffstat (limited to 'apps/docs/templates/docs_view.html')
-rw-r--r-- | apps/docs/templates/docs_view.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/docs/templates/docs_view.html b/apps/docs/templates/docs_view.html new file mode 100644 index 0000000..54a4fc0 --- /dev/null +++ b/apps/docs/templates/docs_view.html @@ -0,0 +1,8 @@ +{% extends "default.html" %} +{% load motor_tags %} + +{% block main %} + <small class="muted pull-right">Last updated: {{ article.updated_at|date:"SHORT_DATE_FORMAT" }}</small> + <h2>{{ article.title }}</h2> + {{ article.content|markdown }} +{% endblock main %} |