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: 8ead5f00445e6f628bad05d742fdca42a8d3a6ac (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 .Site.Params.toc }}
  {{- partial "toc.html" . -}}
  {{ end }}
{{ end }}