blob: 463dabb5ec8fccf240fc51e2132e234c5ec98889 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>{{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }}</title>
{{ range slice "aoidh.css" "fonts/et-book/et-book.css" }}
{{- with resources.Get . }}<link rel="stylesheet" href="{{ .RelPermalink }}">{{ end }}
{{ end }}
{{- range $style := slice "roman-line-figures" "display-italic-old-style-figures" "bold-line-figures" }}
{{- range $fmt := slice "eot" "woff" "ttf" "svg" }}
{{- $font := printf "fonts/et-book/et-book/et-book-%s/et-book-%s.%s" $style $style $fmt }}
{{- with resources.Get $font }}{{ .Publish }}
{{- else }}{{ errorf "font not found: %s" $font }}{{ end }}
{{- end -}}
{{- end -}}
|