no posts?
This commit is contained in:
parent
b230383376
commit
7553211043
@ -67,7 +67,7 @@ params:
|
||||
style: dark-without-switcher
|
||||
mainSections: [ "blog" ] # which sections should be on index/main page
|
||||
sectionsWithFullContentOnListPage: [ "notes" ] # for which sections content should be displayed on list pages
|
||||
readMore: true # show read more button
|
||||
readMore: false # show read more button
|
||||
readNextPosts: 5 # show 5 related posts, 0 by default
|
||||
disableSummary: false
|
||||
toc: true # display Table of Contents
|
||||
|
20
template.md
Normal file
20
template.md
Normal file
@ -0,0 +1,20 @@
|
||||
+++
|
||||
title = 'HowTo DO SOMETHING
|
||||
date = 2024-05-03
|
||||
+++
|
||||
|
||||
<!-- -->
|
||||
|
||||
I forgot to write summary<!--more-->
|
||||
|
||||
|
||||
{{< spoiler Spoiler >}}
|
||||
I forgot to remove it from template
|
||||
{{< /spoiler >}}
|
||||
|
||||
|
||||
{{< source >}}
|
||||
Random YouTube videos
|
||||
My Experience
|
||||
{{< /source >}}
|
||||
|
15
themes/anubis2/layouts/index.html_bak
Normal file
15
themes/anubis2/layouts/index.html_bak
Normal file
@ -0,0 +1,15 @@
|
||||
{{ define "main" }}
|
||||
<div class="homepage-content">
|
||||
{{ .Content }}
|
||||
</div>
|
||||
|
||||
<div class="articles h-feed">
|
||||
{{ $pages := where (where site.RegularPages "Type" "in" site.Params.mainSections) "Params.hidden" "!=" true }}
|
||||
{{ range .Site.RegularPages }}
|
||||
{{ partial "post-summary.html" . }}
|
||||
{{ end }}
|
||||
{{ partial "pagination.html" . }}
|
||||
</div>
|
||||
|
||||
{{ end }}
|
||||
|
Loading…
Reference in New Issue
Block a user