15 lines
439 B
Plaintext
15 lines
439 B
Plaintext
|
{{ trim (readFile (replace (replace $.File.Path ".md" ".gmi") ".html" ".gmi")) "\n" | safeHTML }}
|
||
|
|
||
|
## Blog Posts
|
||
|
|
||
|
{{ with .OutputFormats.Get "html" }}
|
||
|
=> {{ .Permalink }} More posts on WWW
|
||
|
{{ end }}
|
||
|
|
||
|
{{ range (where .Site.RegularPages "Section" "blog") }}
|
||
|
{{- if .OutputFormats.Get "gemtext" }}
|
||
|
=> {{ replace .Permalink "/gemini" "" 1 }} {{ .Date.Format "Jan 02, 2006" }}: {{ .Title | safeHTML }}{{ end }}{{ end }}
|
||
|
|
||
|
|
||
|
{{ .Site.Copyright }}
|