diff options
author | Mark Powers <mark@marks.kitchen> | 2024-10-28 20:16:15 -0500 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2024-10-28 20:16:15 -0500 |
commit | cfa56ed5ca165a3a2e2b4bedf2076cd101935fe4 (patch) | |
tree | 3502ba5b04e4ba9479c3cf3d6ff0855256a96b80 /layouts/_default/single.html | |
parent | 2533c0fbbea6f3bf52cf54861fce1f43a529c60f (diff) |
Update layout
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r-- | layouts/_default/single.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index 52e9c13..50810e9 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -4,8 +4,9 @@ {{ define "main" }} <main id="main" class="post"> - <h1>{{ .Title }}</h1> + <h1 class="title">{{ .Title }}</h1> <div><i>{{ .PublishDate.Format "January 2, 2006"}}</i></div> + <hr> <article class="content"> {{ .Content }} </article> @@ -13,7 +14,7 @@ <div> <b>Keywords: </b> {{ range .Params.tags }} - <a class="link" href='{{ "tags" | absURL }}/{{ . | urlize }}'>#{{ . }}</a> + <a href='{{ "tags" | absURL }}/{{ . | urlize }}'>#{{ . }}</a> {{ end }} </div> {{ end }} |