1. 修改config.yaml文件
params:
    sidebar:
        name: 站长名称
  1. 修改.\themes\hugo-theme-stack\layouts\partials\sidebar\left.html文件

  1. 修改.\themes\hugo-theme-stack\layouts\index.html
{{ define "main" }}
    {{ $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
    {{ $notHidden := where .Site.RegularPages "Params.hidden" "!=" true }}
    {{ $filtered := ($pages | intersect $notHidden) }}
    {{ $pag := .Paginate ($filtered) }}
    
    
{{ range $index, $element := $pag.Pages }} {{ partial "article-list/default" . }} {{ end }}
{{- partial "pagination.html" . -}} {{- partial "footer/footer" . -}} {{ end }} {{ define "right-sidebar" }} {{ partial "sidebar/right.html" (dict "Context" . "Scope" "homepage") }} {{ end }}
最后修改:2023 年 08 月 26 日
如果觉得我的文章对你有用,请随意赞赏