summaryrefslogtreecommitdiff
path: root/src/gmi/tpl/posts/post.gmi
blob: e95cb531331e6c26b1dec14b431b39307a72c109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{ $post := .GetPostByID (.GetQueryValue "id" "") -}}

# {{ $post.Title }}

{{ if ne $post.Description "" -}}
> {{ $post.Description }}

{{ end -}}

{{ .PostBody $post }}

--------------------------------------------------------------------------------

Published {{ $post.PublishedAt.Format "2006-01-02" }}

{{- if $post.Series }}

This post is part of a series!

{{ $seriesNextPrev := .GetPostSeriesNextPrevious $post -}}

{{ if $seriesNextPrev.Next -}}
=> {{ BlogURL "posts" }}/{{ $seriesNextPrev.Next.ID }}.gmi Next in the series: {{ $seriesNextPrev.Next.Title }}
{{ end -}}

{{ if $seriesNextPrev.Previous -}}
=> {{ BlogURL "posts" }}/{{ $seriesNextPrev.Previous.ID }}.gmi Prevous in the series: {{ $seriesNextPrev.Previous.Title }}
{{ end -}}

{{ end }}
=> {{ BlogURL "posts/" }} Browse all posts

{{ template "footer.gmi" . }}