diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2016-01-08 02:00:07 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2016-01-08 02:00:07 +0100 |
commit | aa306982f095bd491d6461b97a5fa7e9ffb825b5 (patch) | |
tree | 43b03e6bf208827ba98a562f8cf449d8e4b289ae /src/templates | |
parent | 3ff1fefee575e178fcc9fcd202ae1147623a6ae4 (diff) | |
download | website-aa306982f095bd491d6461b97a5fa7e9ffb825b5.tar.xz |
Make dropcaps optional
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'src/templates')
-rw-r--r-- | src/templates/entry.html | 2 | ||||
-rw-r--r-- | src/templates/journal.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/entry.html b/src/templates/entry.html index 2355310..83dad5a 100644 --- a/src/templates/entry.html +++ b/src/templates/entry.html @@ -13,7 +13,7 @@ {% block content %} <article itemscope itemtype="http://schema.org/Article" - class="entry" id="entry:{{ page.id }}"> + class="entry{% if page.dropcap %} dropcap{% endif %}" id="entry:{{ page.id }}"> <h2 itemprop="name" class="title">{{ page.title }}</h2> diff --git a/src/templates/journal.html b/src/templates/journal.html index 2b2794f..36abb93 100644 --- a/src/templates/journal.html +++ b/src/templates/journal.html @@ -7,7 +7,7 @@ {% block content %} {% for entry in entries %} <article itemscope itemtype="http://schema.org/Article" - class="entry" id="entry:{{ entry.id }}"> + class="entry{% if entry.dropcap %} dropcap{% endif %}" id="entry:{{ entry.id }}"> <h2 itemprop="name" class="title"><a href="#entry:{{ entry.id }}">{{ entry.title }}</a></h2> |