summaryrefslogtreecommitdiff
path: root/themes/archie
diff options
context:
space:
mode:
Diffstat (limited to 'themes/archie')
-rw-r--r--themes/archie/layouts/_default/single.html1
-rw-r--r--themes/archie/static/css/main.css19
2 files changed, 19 insertions, 1 deletions
diff --git a/themes/archie/layouts/_default/single.html b/themes/archie/layouts/_default/single.html
index 1bebdd7..e9ec6a5 100644
--- a/themes/archie/layouts/_default/single.html
+++ b/themes/archie/layouts/_default/single.html
@@ -4,6 +4,7 @@
<div class="title">
<h1 class="title">{{ .Title }}</h1>
<div class="meta">Posted on {{ dateFormat "Jan 2, 2006" .Date }}{{ if .Draft }} <span class="draft-label">DRAFT</span> {{ end }}</div>
+ <div class="meta">Last updated on {{ dateFormat "Jan 2, 2006" .Lastmod }}</div>
</div>
{{ if isset .Params "tldr" }}
<div class="tldr">
diff --git a/themes/archie/static/css/main.css b/themes/archie/static/css/main.css
index 97bbe5d..96d0cbf 100644
--- a/themes/archie/static/css/main.css
+++ b/themes/archie/static/css/main.css
@@ -9,7 +9,7 @@
html {
color: #232333;
font-family: 'Roboto Mono', monospace;
- font-size: 15px;
+ font-size: 14px;
line-height: 1.6em;
}
body{
@@ -291,3 +291,20 @@ content: 'Markdown';
background: royalblue;
color: whitesmoke ;
}
+.title .meta {
+ color: grey;
+ font-size: 12px;
+}
+#artlist .artlist-date {
+ color: grey;
+}
+dd a {
+ border-bottom: 0px;
+}
+dd a:hover {
+ background-color: transparent;
+ color: #fff;
+}
+dd a img {
+ border: 0px;
+}