diff options
Diffstat (limited to '.templates/document.html')
| -rw-r--r-- | .templates/document.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.templates/document.html b/.templates/document.html index cb57103..2ccc18c 100644 --- a/.templates/document.html +++ b/.templates/document.html @@ -1,5 +1,12 @@ -{% extends 'markdoc-default/document.html' %} -{% block body_footer %} +{% extends 'base.html' %} + +{% block content %} + <div id="article"> + {{ content }} + </div> +{% endblock %} + +{% block after_content %} <div id="comments"> <div id="disqus_thread"></div> <script type="text/javascript"> @@ -16,7 +23,6 @@ <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> </div> -{{ super() }} {% endblock %} {% block github_info %} |
