mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00

- If `blogs` isn't set in the config file, `blog` is treated as a blog, to avoid breaking existing sites - If it is, only sections listed are treated as blogs, possibly excluding `blog` - Differences include comments, but also hn/lobsters links, time to read, and tags (possibly non-exhaustive)
10 lines
262 B
HTML
10 lines
262 B
HTML
{{ partial "header.html" . }}
|
|
|
|
{{ if (or (in .Site.Params.blogs .Section) (and (eq "blog" .Section) (not (isset .Site.Params "blogs")))) }}
|
|
{{ partial "blog_single.html" . }}
|
|
{{ else }}
|
|
{{ partial "base_single.html" . }}
|
|
{{ end }}
|
|
|
|
{{ partial "footer.html" . }}
|