Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « _default « layouts - github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 048b788627dcb1df48cfc484743511f330845773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
  {{- partial "post.html" . -}}
{{ end }}

{{ define "script" }}
  <!-- following is js part -->
  {{- partial "highlight.html" . -}}
  {{- partial "anchor.html" . -}}

  {{ if or .Params.math .Site.Params.math }}
  {{- partial "math.html" . -}}
  {{ end }}

  {{ if or .Params.toc (and .Site.Params.toc (ne .Params.toc false)) }}
  {{- partial "toc.html" . -}}
  {{ end }}
{{ end }}