From 4f01edb9230f58ff84b0dd892c931ec8ac9aad55 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Tue, 13 Sep 2022 12:56:08 +0200 Subject: move src out of srv, clean up default.nix and Makefile --- srv/src/http/tpl/post.html | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 srv/src/http/tpl/post.html (limited to 'srv/src/http/tpl/post.html') diff --git a/srv/src/http/tpl/post.html b/srv/src/http/tpl/post.html deleted file mode 100644 index 23500eb..0000000 --- a/srv/src/http/tpl/post.html +++ /dev/null @@ -1,44 +0,0 @@ -{{ define "body" }} - -

- {{ .Payload.Title }} -

- -

- - {{ .Payload.Description }} -

- -
- -{{ .Payload.Body }} - -

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

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

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

-{{ end }} - -{{ end }} - -{{ template "base.html" . }} -- cgit v1.2.3