aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authorKeith Gray <idahogray@gmail.com>2013-02-22 21:34:54 -0600
committerJustin Mayer <entroP@gmail.com>2013-04-29 20:25:30 -0700
commitf24a4d1d5fe5440b912deee3e700e0698c1088eb (patch)
tree61cca0ffa3b7fb5ec84f7fe44d6bf4db24e4769e /bootstrap
parent94c5db216f7d0d7494f61d612e8715da99d9cda4 (diff)
downloadpelican-themes-f24a4d1d5fe5440b912deee3e700e0698c1088eb.zip
pelican-themes-f24a4d1d5fe5440b912deee3e700e0698c1088eb.tar.gz
pelican-themes-f24a4d1d5fe5440b912deee3e700e0698c1088eb.tar.bz2
Fixed a problem with spacing in the bootstrap theme metadata template
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/templates/metadata.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/bootstrap/templates/metadata.html b/bootstrap/templates/metadata.html
index 8c9f261..68a76bf 100644
--- a/bootstrap/templates/metadata.html
+++ b/bootstrap/templates/metadata.html
@@ -1,4 +1,5 @@
Permalink: <a class="more" href="{{ SITEURL }}/{{ article.url }}">{{ article.date }}</a>
-{% if article.author %}by <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>{% endif %}
-in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
+{% if article.author %}by <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }} </a>{% endif %}
+
+ in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
{% if article.tags %}tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> {% endfor %}{% endif %}