diff options
Diffstat (limited to 'dev-random/templates')
-rw-r--r-- | dev-random/templates/base.html | 10 | ||||
-rw-r--r-- | dev-random/templates/includes/sidebar.html | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dev-random/templates/base.html b/dev-random/templates/base.html index 1424ca4..d9dd46a 100644 --- a/dev-random/templates/base.html +++ b/dev-random/templates/base.html @@ -42,21 +42,21 @@ {% endif %} {% endblock headers %} </head> - <body> + <body> <div class="page"> - <header class="head"> + <header class="page-head"> <h1> <a href="{{ SITEURL }}/index.html">{{ SITENAME }}</a> </h1> </header> - <div class="main"> - {% include "includes/sidebar.html" %} + <div class="page-content"> {% block content %} {% endblock content %} </div> + {% include "includes/sidebar.html" %} - <footer class="foot"> + <footer class="page-footer"> <p> {{ FOOTER_TEXT or 'Powered by <a href="http://pelican.readthedocs.org">Pelican</a>' }}</p> {% if GITHUB_URL %}<p><a id="github-link" href="{{ GITHUB_URL}}">Fork me on Github</a></p>{% endif %} </footer> diff --git a/dev-random/templates/includes/sidebar.html b/dev-random/templates/includes/sidebar.html index 3c42ef9..803ae08 100644 --- a/dev-random/templates/includes/sidebar.html +++ b/dev-random/templates/includes/sidebar.html @@ -1,4 +1,4 @@ - <aside class="sidebar"> + <aside class="page-sidebar"> <nav class="widget"> <h3>Site</h3> <ul> |