show metadata box on the index, too
authorM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Mon, 5 Sep 2016 20:47:40 +0000 (13:47 -0700)
committerM. Taylor Saotome-Westlake <ultimatelyuntruethought@gmail.com>
Mon, 5 Sep 2016 20:47:40 +0000 (13:47 -0700)
theme/static/css/main.css
theme/templates/index.html

index d10a6a7..9dcadd0 100644 (file)
@@ -191,6 +191,7 @@ article.summary > div {
   margin-left: 28%;
 }
 
+article .metadata,
 article.full .metadata,
 article.summary .metadata {
   padding: 1%;
@@ -199,6 +200,7 @@ article.summary .metadata {
   font-style: italic;
 }
 
+article .metadata,
 article.full .metadata {
   width: 25%;
   float: right;
index 56079ac..233c8a8 100644 (file)
@@ -6,6 +6,7 @@
 {% for article in articles %}
   <article>
     <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
+    {% include 'metadata.inc.html' %}
     {{ article.content }}
   </article>
   <hr />