Skip to content

Instantly share code, notes, and snippets.

@xiaoouwang
Last active February 24, 2020 20:27
Show Gist options
  • Save xiaoouwang/5baf36b2df7a85160b02c454ce001915 to your computer and use it in GitHub Desktop.
Save xiaoouwang/5baf36b2df7a85160b02c454ce001915 to your computer and use it in GitHub Desktop.
hugo toc
{{- define "main" -}}
<article class="article">
{{ partial "page_header" . }}
<div class="article-container">
<div class="article-style">
{{ .Content }}
</div>
{{ if .Site.Params.toc | default true }}
{{ partial "toc" . }}
{{ end }}
{{ partial "page_footer" . }}
</div>
</article>
{{- end -}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment