diff options
author | Matts <s@tuxlite.com> | 2012-02-11 08:49:53 -0500 |
---|---|---|
committer | Matts <s@tuxlite.com> | 2012-02-11 08:56:47 -0500 |
commit | 2d5800dd448293f3bc879bbd11bfc22d2e4988a6 (patch) | |
tree | 6c94a82a5e6b826de517d4d93acf0cb38a9d6637 /tuxlite_tbs/templates | |
parent | 79d93cef80c36fd9a7818d9c4ad0fadeca67fd5f (diff) | |
download | pelican-themes-2d5800dd448293f3bc879bbd11bfc22d2e4988a6.tar.gz |
Changed header elements. Also added top margin for H3 element.
Diffstat (limited to 'tuxlite_tbs/templates')
-rw-r--r-- | tuxlite_tbs/templates/article.html | 2 | ||||
-rw-r--r-- | tuxlite_tbs/templates/index.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tuxlite_tbs/templates/article.html b/tuxlite_tbs/templates/article.html index d2ceffd..766de73 100644 --- a/tuxlite_tbs/templates/article.html +++ b/tuxlite_tbs/templates/article.html @@ -2,7 +2,7 @@ {% block content %} <div class='article'> <div class="content-title"> - <h2>{{ article.title }}</h2> + <h1>{{ article.title }}</h1> {% include "metadata.html" %} </div> diff --git a/tuxlite_tbs/templates/index.html b/tuxlite_tbs/templates/index.html index 8b7dd93..9b2b251 100644 --- a/tuxlite_tbs/templates/index.html +++ b/tuxlite_tbs/templates/index.html @@ -10,7 +10,7 @@ <div class='article'> <div class="content-title"> - <a href="{{ SITEURL }}/{{ article.url }}"><h2>{{ article.title }}</h2></a> + <a href="{{ SITEURL }}/{{ article.url }}"><h1>{{ article.title }}</h1></a> {% include "metadata.html" %} </div> @@ -23,14 +23,14 @@ {% endif %} {% if loop.length > 1 %} - <h2>Other Entries</h2> + <h1>Other Entries</h1> {% endif %} {# other items #} {% else %} <div class='article'> - <a href="{{ SITEURL }}/{{ article.url }}"><h3>{{ article.title }}</h3></a> + <a href="{{ SITEURL }}/{{ article.url }}"><h1>{{ article.title }}</h1></a> <div class= "well small"> {% include "metadata.html" %} </div> <div class="summary">{{ article.summary }} <a class="btn btn-info xsmall" href="{{ SITEURL }}/{{ article.url }}">read more</a></div> </div> |