From 458a0291b523ea83b2c1012e0ab77a4d10d178b7 Mon Sep 17 00:00:00 2001 From: gutmet Date: Mon, 19 Oct 2020 10:11:50 +0200 Subject: [PATCH] simplify style --- initer/styles.go | 1 + initer/templates.go | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/initer/styles.go b/initer/styles.go index fddbe76..8cb7700 100644 --- a/initer/styles.go +++ b/initer/styles.go @@ -15,6 +15,7 @@ var defaultStyle string = `body { a { color : #0D0; + text-decoration: none; } a:hover { color : red; diff --git a/initer/templates.go b/initer/templates.go index 84e6c67..91c2888 100644 --- a/initer/templates.go +++ b/initer/templates.go @@ -64,11 +64,9 @@ var defaultTemplate string = ` {{if .TimelineListing}}
-
{{range $i, $post := .TimelineListing -}} -
{{$post.Meta.FormattedDate}}
{{$post.Meta.Title}}
+{{$post.Meta.FormattedDate}}: {{$post.Meta.Title}}
{{end}} -
{{end}}