diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2013-04-28 19:54:45 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2013-05-01 10:33:08 +0200 |
commit | dc214056449119b29ad7b19b8d47e81b343ff453 (patch) | |
tree | e5fbae31ed73509852d45354ab682e8c96e5c42f /theme/templates/index.html | |
parent | bfc347fdea8ebf0246902cbf7c95cfd5b518b4e8 (diff) |
Updated theme and templates
Updated to pelican 3.2
Diffstat (limited to 'theme/templates/index.html')
-rwxr-xr-x | theme/templates/index.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html index 245c708..d045910 100755 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -5,11 +5,12 @@ {% if articles %} {% for article in (articles_page.object_list if articles_page else articles) %} <article class="post"> - <h2 class="title"><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></h2> + <h1 class="title"><a href="{{ SITEURL }}/{{ article.url}}">{{ article.title }}</a></h1> <time class="meta" datetime="{{ article.date.isoformat() }}" pubdate="pubdate">{{ article.locale_date }}</time> <section class="post_content"> {{ article.summary }} + <div class="clear" /> {% if not loop.last %} <hr> {% endif %} |