aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-21 15:08:22 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-09-21 15:08:22 +0530
commitf0f8897e08f7d257572b1f43e86e5d7682431da1 (patch)
treee0192164f4748f206df016c09a998a7a32e1a0fe
parent5478510d1cdfe0aaf341e3b2f167e1e0e1d569a8 (diff)
added content on blog's list.html
-rw-r--r--layouts/blog/list.html1
-rw-r--r--static/scss/blog.scss2
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; }
}