aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_zf/templates/index.html
diff options
context:
space:
mode:
authorMatt <s@tuxlite.com>2013-05-21 23:56:23 +0000
committerMatt <s@tuxlite.com>2013-05-21 23:56:23 +0000
commitdb15d9db311c76bc2ce015e171ecfb0832c2f75a (patch)
tree7f5eb47a551c782de1f52d4b8c023066c5197e5f /tuxlite_zf/templates/index.html
parente966af053d5c99ef22431264b3a645fac9c63785 (diff)
downloadpelican-themes-db15d9db311c76bc2ce015e171ecfb0832c2f75a.tar.gz
Fix html tag order and change color for article title.
Diffstat (limited to 'tuxlite_zf/templates/index.html')
-rw-r--r--tuxlite_zf/templates/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tuxlite_zf/templates/index.html b/tuxlite_zf/templates/index.html
index a07813c..6e632dc 100644
--- a/tuxlite_zf/templates/index.html
+++ b/tuxlite_zf/templates/index.html
@@ -7,7 +7,7 @@
{# First item #}
{% if loop.first and not articles_page.has_previous() %}
<article>
- <h3 class="article-title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3>
+ <a href="{{ SITEURL }}/{{ article.url }}"><h3 class="article-title">{{ article.title }}</h3></a>
{% include 'article_infos.html' %}{{ article.content }}{% include 'article_infos_bottom.html' %}{% include 'comments.html' %}
</article>