mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-21 12:40:39 +00:00
add parameter GeekblogContentSection
This commit is contained in:
parent
99ab683d5d
commit
01644b9495
@ -4,8 +4,6 @@
|
||||
.drone*
|
||||
.lighthouse*
|
||||
.markdownlint*
|
||||
.jsbeautify*
|
||||
.prettier*
|
||||
example*
|
||||
gulp*
|
||||
package*
|
||||
|
@ -246,6 +246,9 @@ enableGitInfo = true
|
||||
# (Optional, default none) Sites main author.
|
||||
geekblogAuthor = "john-doe"
|
||||
|
||||
# (Optional, default posts) Set the name of the default content section.
|
||||
geekblogContentSection = "my-pages"
|
||||
|
||||
# (Optional, default none) Adds a "Hosted on <provider>" line to the footer.
|
||||
# Could be used if you want to give credits to your hosting provider.
|
||||
[params.geekblogHostedOn]
|
||||
@ -354,6 +357,9 @@ params:
|
||||
# (Optional, default none) Sites main author.
|
||||
geekblogAuthor: john-doe
|
||||
|
||||
# (Optional, default posts) Set the name of the default content section.
|
||||
geekblogContentSection: "my-pages"
|
||||
|
||||
# (Optional, default none) Adds a "Hosted on <provider>" line to the footer.
|
||||
# Could be used if you want to give credits to your hosting provider.
|
||||
geekblogHostedOn:
|
||||
|
@ -16,7 +16,7 @@
|
||||
{{ end }}
|
||||
|
||||
<h1>{{ partial "title" . }}</h1>
|
||||
{{ if eq .Type "posts" }}
|
||||
{{ if or (eq .Type (default "posts" .Site.Params.GeekblogContentSection)) (eq .Type "post") }}
|
||||
<div class="gblog-post__meta">
|
||||
<span class="no-wrap">
|
||||
<svg class="icon date"><use xlink:href="#date"></use></svg>
|
||||
|
Loading…
Reference in New Issue
Block a user