diff --git a/assets/scss/style.scss b/assets/scss/style.scss
index acff227..2195e88 100644
--- a/assets/scss/style.scss
+++ b/assets/scss/style.scss
@@ -22,7 +22,7 @@ a {
text-decoration: none;
border-bottom: 2px solid $fg_color;
&:hover {
- border-bottom: 2px solid $accent_color;
+ border-color: $accent_color !important;
}
}
@@ -128,8 +128,9 @@ pre code {
padding: 0
}
-.date {
+.date, .date a {
color: $dim_fg_color;
+ border-color: $dim_fg_color;
font-size: .9em;
}
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 1138e3a..4b050f9 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -1,13 +1,11 @@
{{ define "main" }}
-
{{ $title := .Title }}
{{ $section := .Section | humanize }}
{{ if and (ne $section $title) (ne $section "Tags") }}
{{ $section }}:
{{ end }}
- {{ if and (eq $section "Tags") (ne $section $title) }}#{{ end }}{{ $title }}
-
+ {{ if and (eq $section "Tags") (ne $section $title) }}Tag: #{{ end }}{{ $title }}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 8244bbc..8768a2a 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -2,7 +2,10 @@
{{- partial "inject/content-before.html" . -}}
{{ .Title }}
- {{ .Date.Format "2006-01-02" }}
+
+
+ {{ .Date.Format "2006-01-02" }}
+
{{ .Content }}
{{ if .Params.tags }}
diff --git a/layouts/index.html b/layouts/index.html
index b52bfcc..9bb53bf 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -11,10 +11,14 @@
{{ .Title }}
+
{{ .Date.Format "2006-01-02" }}
{{ if .Params.tags }}
-
- {{ range .Params.tags }}#{{ . }} {{ end }}
+ |
+
+ {{ range .Params.tags }}
+ #{{ . }}
+ {{ end }}
{{ end }}