diff options
author | Matt <s@tuxlite.com> | 2013-05-12 16:46:53 +0000 |
---|---|---|
committer | Matt <s@tuxlite.com> | 2013-05-12 16:46:53 +0000 |
commit | 1abef3723b4db5b3c287db58fbe9275064384ad8 (patch) | |
tree | 9e5432871233f29cc4cd2cc308a6728e7e148ff1 /tuxlite_zf/templates/page.html | |
parent | ff2e25c964ba12505a402d00c9fa566367161667 (diff) | |
download | pelican-themes-1abef3723b4db5b3c287db58fbe9275064384ad8.tar.gz |
Fix misc styling bugs.
- Change header and site name colors
- Fix heading sizes for pages and archives
- Change navigation link color
- Fix syntax highlighting. Now using solarized theme
- Fix HTML lists using list-style-position
- Increased spacing between posts
- Update foundation CSS, JS files
Diffstat (limited to 'tuxlite_zf/templates/page.html')
-rw-r--r-- | tuxlite_zf/templates/page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tuxlite_zf/templates/page.html b/tuxlite_zf/templates/page.html index 7614c61..6c40e4b 100644 --- a/tuxlite_zf/templates/page.html +++ b/tuxlite_zf/templates/page.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block title %}{{ page.title }}{% endblock %} {% block content %} - <h1>{{ page.title }}</h1> + <h3>{{ page.title }}</h3> {% import 'translations.html' as translations with context %} {{ translations.translations_for(page) }} {% if PDF_PROCESSOR %}<a href="{{ SITEURL }}/pdf/{{ page.slug }}.pdf">PDF</a>{% endif %} |