mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 22:16:07 +01:00
16 lines
532 B
Text
16 lines
532 B
Text
{{- define "main" -}}
|
|
# {{ with .Params.emoji }}{{.}} {{end}}{{ title (replace .Title "-" " ") }}
|
|
|
|
{{- with .Page.RenderShortcodes }}
|
|
{{- partial "markdown.gmi" . -}}{{ end -}}
|
|
|
|
{{- $paginator := .Paginate .Pages -}}
|
|
|
|
{{- $paginatorGroup := $paginator.Pages.GroupByDate "2006" -}}
|
|
{{- range $paginatorGroup }}
|
|
## {{ .Key }}
|
|
{{ range .Pages -}}
|
|
=> {{ partial "noindex.gmi" .RelPermalink }} {{ with .Params.emoji }}{{ . }} {{ end }}{{ .Date.Format "2006-01-02" }} {{ partial "page-title.txt" . }}
|
|
{{ end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|