mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-04 20:30:44 +00:00
83 lines
2.1 KiB
HTML
83 lines
2.1 KiB
HTML
<script src="{{ index (index .Site.Data.assets "main.js") "src" | relURL }}"></script>
|
|
|
|
<link
|
|
rel="preload"
|
|
as="font"
|
|
href="{{ "fonts/Metropolis.woff2" | relURL }}"
|
|
type="font/woff2"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
as="font"
|
|
href="{{ "fonts/LiberationSans.woff2" | relURL }}"
|
|
type="font/woff2"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<link
|
|
rel="preload"
|
|
as="font"
|
|
href="{{ "fonts/GeekblogIcons.woff2" | relURL }}"
|
|
type="font/woff2"
|
|
crossorigin="anonymous"
|
|
/>
|
|
|
|
<link
|
|
rel="preload"
|
|
href="{{ index (index .Site.Data.assets "main.scss") "src" | relURL }}"
|
|
as="style"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ index (index .Site.Data.assets "main.scss") "src" | relURL }}"
|
|
media="all"
|
|
/>
|
|
|
|
<link
|
|
rel="preload"
|
|
href="{{ index (index .Site.Data.assets "mobile.scss") "src" | relURL }}"
|
|
as="style"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ index (index .Site.Data.assets "mobile.scss") "src" | relURL }}"
|
|
media="screen and (max-width: 45rem)"
|
|
/>
|
|
|
|
<link
|
|
rel="preload"
|
|
href="{{ index (index .Site.Data.assets "print.scss") "src" | relURL }}"
|
|
as="style"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ index (index .Site.Data.assets "print.scss") "src" | relURL }}"
|
|
media="print"
|
|
/>
|
|
|
|
<link
|
|
rel="preload"
|
|
href="{{ index (index .Site.Data.assets "custom.css") "src" | relURL }}"
|
|
as="style"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{ index (index .Site.Data.assets "custom.css") "src" | relURL }}"
|
|
media="all"
|
|
/>
|
|
{{- with .OutputFormats.Get "html" }}
|
|
{{ printf `<link href=%q rel=%q type=%q />` .Permalink .Rel .MediaType.Type | safeHTML }}
|
|
{{- end }}
|
|
{{- $output_formats := (.Site.GetPage "home").OutputFormats }}
|
|
{{- range $format := (.Site.GetPage "home").OutputFormats }}
|
|
{{- if not (eq $format.Rel "canonical") }}
|
|
{{ printf `<link href=%q rel=%q type=%q title="%s %s Feed" />` $format.Permalink $format.Rel $format.MediaType.Type $.Site.Title $format.Name | safeHTML }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- if (default false $.Site.Params.GeekblogOverwriteHTMLBase) }}
|
|
<base href="{{ .Site.BaseURL }}" />
|
|
{{- end }}
|
|
|
|
{{ printf "<!-- %s -->" "Made with Geekblog theme https://github.com/thegeeklab/hugo-geekblog" | safeHTML }}
|