summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-11-27 22:04:31 +0100
committerBrian Picciano <mediocregopher@gmail.com>2022-11-27 22:04:31 +0100
commitb3d3fa7c628e637f448daeaa39045a758ea2b46d (patch)
tree9b8d0c758eb6ea360fa40f044efade319a822873
parent52d4fdac552158fff4204d1ac10d59737c9468b6 (diff)
Bold post titles in index
-rw-r--r--src/http/tpl/index.html4
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 }}