diff options
-rw-r--r-- | layouts/blog/list.html | 1 | ||||
-rw-r--r-- | static/scss/blog.scss | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/layouts/blog/list.html b/layouts/blog/list.html index 60d7a2f..1aa589a 100644 --- a/layouts/blog/list.html +++ b/layouts/blog/list.html @@ -1,6 +1,7 @@ {{ define "main" }} <div class="list"> <h1>{{ if .Params.heading }}{{ .Params.heading }}{{ else }}{{ .Title }}{{ end }}</h1> + {{ .Content }} {{ range .Sections.ByDate.Reverse }} <h2 class="section" id="{{ .Title }}">{{ .Title }}:</h2> <ul> diff --git a/static/scss/blog.scss b/static/scss/blog.scss index 161ab27..c0a40d6 100644 --- a/static/scss/blog.scss +++ b/static/scss/blog.scss @@ -107,7 +107,7 @@ a { // the year/tag heading of the blog .list { - .section { color: $headingColor1; } + .section { color: $headingColor2; } li::marker { color: $linkColor; } } |