mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 12:50:45 +00:00
78 lines
1.8 KiB
HTML
78 lines
1.8 KiB
HTML
<script src="{{ index (index .Site.Data.assets "bundle.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 "atom" }}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
{{ 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 }}
|