diff options
Diffstat (limited to 'tuxlite_zf/templates')
-rw-r--r-- | tuxlite_zf/templates/archives.html | 4 | ||||
-rw-r--r-- | tuxlite_zf/templates/base.html | 14 | ||||
-rw-r--r-- | tuxlite_zf/templates/page.html | 2 |
3 files changed, 10 insertions, 10 deletions
diff --git a/tuxlite_zf/templates/archives.html b/tuxlite_zf/templates/archives.html index d866cd5..357246f 100644 --- a/tuxlite_zf/templates/archives.html +++ b/tuxlite_zf/templates/archives.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block content %} -<h1>Archives</h1> +<h3>Archives</h3> <table class="table-archive"> <tbody> @@ -14,4 +14,4 @@ </tbody> </table> -{% endblock %}
\ No newline at end of file +{% endblock %} diff --git a/tuxlite_zf/templates/base.html b/tuxlite_zf/templates/base.html index 3ba3bd3..2d5e1f2 100644 --- a/tuxlite_zf/templates/base.html +++ b/tuxlite_zf/templates/base.html @@ -6,10 +6,10 @@ <title>{% block title %}{{ SITENAME }}{%endblock%}</title>
- <link rel="stylesheet" href="{{ SITEURL }}/theme/css/normalize.css">
- <link rel="stylesheet" href="{{ SITEURL }}/theme/css/foundation.min.css">
- <link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css">
- <link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css">
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/normalize.css" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/foundation.min.css" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/style.css" />
+ <link rel="stylesheet" href="{{ SITEURL }}/theme/css/pygments.css" />
<script src="{{ SITEURL }}/theme/js/custom.modernizr.js"></script>
</head>
@@ -30,12 +30,12 @@ <div class="large-9 columns">
<ul class="button-group navigation">
{% for title, link in MENUITEMS %}
- <li><a href="{{ link }}" class="button small">{{ title }}</a></li>
+ <li><a href="{{ link }}" class="button secondary small">{{ title }}</a></li>
{% endfor %}
{% if DISPLAY_PAGES_ON_MENU %}
{% for page in PAGES %}
- <li><a href="{{ SITEURL }}/{{ page.url }}" class="button small">{{ page.title }}</a></li>
+ <li><a href="{{ SITEURL }}/{{ page.url }}" class="button secondary small">{{ page.title }}</a></li>
{% endfor %}
{% endif %}
</ul>
@@ -110,4 +110,4 @@ </div>
</div>
</div>
-</footer>
\ No newline at end of file +</footer>
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 %} |