From 5bc4c2fe4eb2dd401380493d95e05badd7f2bf5d Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Mon, 15 Aug 2022 15:23:25 -0600 Subject: began using new.css, got rid of the old css almost entirely --- srv/src/http/tpl/post.html | 54 +++++++++++++++++++++------------------------- 1 file changed, 25 insertions(+), 29 deletions(-) (limited to 'srv/src/http/tpl/post.html') diff --git a/srv/src/http/tpl/post.html b/srv/src/http/tpl/post.html index 474d7c2..f0cb327 100644 --- a/srv/src/http/tpl/post.html +++ b/srv/src/http/tpl/post.html @@ -1,45 +1,41 @@ {{ define "body" }} -
-

- {{ .Payload.Title }} -

-
- {{ DateTimeFormat .Payload.PublishedAt }} -  •  - {{ if not .Payload.LastUpdatedAt.IsZero }} - (Updated {{ DateTimeFormat .Payload.LastUpdatedAt }}) -  •  - {{ end }} - {{ .Payload.Description }} -
-
- -{{ if (or .Payload.SeriesPrevious .Payload.SeriesNext) }} -

- This post is part of a series:
- {{ if .Payload.SeriesPrevious }} - Previously: {{ .Payload.SeriesPrevious.Title }}
- {{ end }} - {{ if .Payload.SeriesNext }} - Next: {{ .Payload.SeriesNext.Title }}
+

+ Published {{ DateTimeFormat .Payload.PublishedAt }} + {{ if not .Payload.LastUpdatedAt.IsZero }} +
Last updated {{ DateTimeFormat .Payload.LastUpdatedAt }} {{ end }}

-{{ end }} -
- {{ .Payload.Body }} -
+

+ {{ .Payload.Title }} +

+ +

+ {{ .Payload.Description }} +

+ +
+ +{{ .Payload.Body }} {{ if (or .Payload.SeriesPrevious .Payload.SeriesNext) }} -

+


+

If you liked this post, consider checking out other posts in the series:
+ {{ if .Payload.SeriesPrevious }} - Previously: {{ .Payload.SeriesPrevious.Title }}
+ Previously: {{ .Payload.SeriesPrevious.Title }} {{ end }} + + {{ if (and .Payload.SeriesNext .Payload.SeriesPrevious) }} +
+ {{ end }} + {{ if .Payload.SeriesNext }} Next: {{ .Payload.SeriesNext.Title }}
{{ end }} +

{{ end }} -- cgit v1.2.3