Added .uk-heading-large to page titles

This commit is contained in:
Luca Chiricozzi 2014-12-31 22:17:45 +01:00
parent ec759332f0
commit aad8e5e496
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
{% block content %}
<div class="uk-width-medium-4-5">
<h1>Archives</h1>
<h1 class="uk-heading-large">Archives</h1>
{% for article in dates %}
<article class="uk-article">

View File

@ -25,7 +25,7 @@
<div class="uk-width-medium-7-10">
<article class="uk-article">
<h1 class="uk-article-title">{{ article.title }}</h1>
<h1 class="uk-heading-large uk-article-title">{{ article.title }}</h1>
<p class="uk-article-meta"> {{ article.locale_date }} in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>{% if DISQUS_SITENAME %}, <i class="uk-icon-comment"></i> <a href="{{ SITEURL }}/{{ article.url }}#disqus_thread"></a>{% endif %}</p>
{% if SHARE %}

View File

@ -4,7 +4,7 @@
{% block content %}
<div class="uk-width-medium-4-5">
<h1>Tags</h1>
<h1 class="uk-heading-large">Tags</h1>
<ul>
{% for tag, articles in tags|sort %}
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> ({{ articles|count }})</li>