From 6ab4d8b1a912ce2b80892d9fce8f2ecff85cff74 Mon Sep 17 00:00:00 2001 From: "M. Taylor Saotome-Westlake" Date: Mon, 5 Sep 2016 13:47:40 -0700 Subject: [PATCH] show metadata box on the index, too --- theme/static/css/main.css | 2 ++ theme/templates/index.html | 1 + 2 files changed, 3 insertions(+) diff --git a/theme/static/css/main.css b/theme/static/css/main.css index d10a6a7..9dcadd0 100644 --- a/theme/static/css/main.css +++ b/theme/static/css/main.css @@ -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; diff --git a/theme/templates/index.html b/theme/templates/index.html index 56079ac..233c8a8 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -6,6 +6,7 @@ {% for article in articles %}

{{ article.title }}

+ {% include 'metadata.inc.html' %} {{ article.content }}

-- 2.17.1