// This file is part of gmnhg. // gmnhg is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // gmnhg is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with gmnhg. If not, see . package main import ( "text/template" "github.com/Masterminds/sprig/v3" "github.com/tdemin/gmnhg/internal/gmnhg" ) func mustParseTmpl(name, value string) *template.Template { return template.Must(template.New(name).Funcs(defineFuncMap()).Parse(value)) } func defineFuncMap() template.FuncMap { fm := sprig.TxtFuncMap() // sorts posts by date, newest posts go first fm["sortPosts"] = gmnhg.SortRev fm["sort"] = gmnhg.Sort fm["sortRev"] = gmnhg.SortRev return fm } var defaultSingleTemplate = mustParseTmpl("single", `# {{ .Metadata.Title }} {{ .Metadata.Date.Format "2006-01-02 15:04" }} {{ printf "%s" .Post }}`) var defaultIndexTemplate = mustParseTmpl("index", `# Site index {{ with .Content }}{{ printf "%s" . -}}{{ end }} {{- range $dir, $posts := .PostData }}{{ if and (ne $dir "/") (eq (dir $dir) "/") }} Index of {{ trimPrefix "/" $dir }}: {{ range $p := $posts | sortPosts }}=> {{ $p.Link }} {{ $p.Metadata.Date.Format "2006-01-02 15:04" }} - {{ if $p.Metadata.Title }}{{ $p.Metadata.Title }}{{else}}{{ $p.Link }}{{end}} {{ end }}{{ end }}{{ end }} `) var defaultRssTemplate = mustParseTmpl("rss", `{{- $Site := .Site -}} {{- $SiteTitle := or $Site.GmnhgTitle $Site.Title | html -}} {{- $SiteBaseURL := or $Site.GmnhgBaseURL $Site.BaseURL | trimSuffix "/" | html -}} {{- $Dirname := .Dirname | trimPrefix "/" | html -}} {{- $DirURL := list $SiteBaseURL $Dirname | join "/" | html -}} {{- $RssURL := list $SiteBaseURL (trimPrefix "/" .Link) | join "/" | html -}} {{- $RssTitle := printf "%s%s" (or $SiteTitle "Site feed") (and $Dirname (printf " - %s" $Dirname)) | html -}} {{ $RssTitle }} {{ $DirURL }} Recent content{{ with $Dirname }} in {{ . }}{{end}}{{ with $SiteTitle }} on {{ . }}{{end}} gmnhg{{ with $Site.LanguageCode }} {{ html .}}{{end}}{{ with $Site.Author.email }} {{ html . }}{{ with $Site.Author.name }} ({{ html . }}){{end}} {{ html . }}{{ with $Site.Author.name }} ({{ html . }}){{end}}{{end}}{{ with $Site.Copyright }} {{ html . }}{{end}} {{ now.Format "Mon, 02 Jan 2006 15:04:05 -0700" }} {{ printf "" $RssURL }} {{ range $i, $p := .Posts | sortPosts }}{{ if lt $i 25 }} {{- $RelURL := trimPrefix "/" $p.Link | html -}} {{- $AbsURL := list $SiteBaseURL $RelURL | join "/" }} {{ if $p.Metadata.Title }}{{ html $p.Metadata.Title }}{{ else }}{{ $RelURL }}{{end}} {{ $AbsURL }} {{ $p.Metadata.Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" }} {{ $AbsURL }} {{ html $p.Metadata.Summary }} {{end}}{{end}} `)