diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-11-27 22:04:31 +0100 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-11-27 22:04:31 +0100 |
commit | b3d3fa7c628e637f448daeaa39045a758ea2b46d (patch) | |
tree | 9b8d0c758eb6ea360fa40f044efade319a822873 /src/http/tpl/index.html | |
parent | 52d4fdac552158fff4204d1ac10d59737c9468b6 (diff) |
Bold post titles in index
Diffstat (limited to 'src/http/tpl/index.html')
-rw-r--r-- | src/http/tpl/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/tpl/index.html b/src/http/tpl/index.html index 68cfbb9..9b03531 100644 --- a/src/http/tpl/index.html +++ b/src/http/tpl/index.html @@ -14,9 +14,9 @@ <ul> {{ range .Payload.Posts }} <li> - <a href="{{ PostURL .ID }}"> + <strong><a href="{{ PostURL .ID }}"> {{ DateTimeFormat .PublishedAt }} / {{ .Title }} - </a> + </a></strong> {{ if .Description }} <br/><em>{{ .Description }}</em> {{ end }} |