diff options
| author | Owen Jacobson <owen.jacobson@grimoire.ca> | 2013-05-21 11:18:04 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen.jacobson@grimoire.ca> | 2013-05-21 16:43:42 -0400 |
| commit | bd268036ed4fd111f0ae3156c324acbf4d2707e7 (patch) | |
| tree | fbf0416d5fe405e34be9f17faca1167b01926c6b /.templates/document.html | |
| parent | c34412e851cf46c3d3e5ba27ab76eda0086c64b5 (diff) | |
A thorough revamp of grimoire.ca's look and feel.
The new look is based, loosely, on print aesthetics, and uses Baskerville (and
Menlo, for code) throughout, with Google's Buenard as a fallback for Windows
and Linux users.
I've retained the basic visual flow, but reworked it to be both more visible
and more readable, and to have less-crazy layout rules (no more
borders-as-gaps).
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 %} |
