14 lines
474 B
HTML
14 lines
474 B
HTML
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>
|
|
{{ if .IsHome }}{{ site.Title |plainify }}{{ else }}{{ printf "%s | %s" .Title
|
|
site.Title | plainify }}{{ end }}
|
|
</title>
|
|
{{ partialCached "head/css.html" . }} {{ partialCached "head/js.html" . }}
|
|
|
|
<!-- math -->
|
|
{{ if .Param "math" }} {{ partialCached "math.html" . }} {{ end }}
|
|
|
|
<!-- pseudocode.js -->
|
|
{{ if .Param "pseudocode" }} {{ partialCached "pseudocode.html" . }} {{ end }}
|