You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
2.1 KiB
HTML
37 lines
2.1 KiB
HTML
{{ $page := . }}
|
|
|
|
<link href="{{ relLangURL `apple-touch-icon.png` | safeURL }}" rel="apple-touch-icon" sizes="180x180">
|
|
<link href="{{ relLangURL `favicon-16x16.png` | safeURL }}" rel="icon" sizes="16x16" type="image/png">
|
|
<link href="{{ relLangURL `favicon-32x32.png` | safeURL }}" rel="icon" sizes="32x32" type="image/png">
|
|
|
|
{{ if ne (relLangURL "favicon.ico") "/favicon.ico" }}
|
|
<link href="{{ relLangURL `favicon.ico` | safeURL }}" rel="shortcut icon">
|
|
{{ end }}
|
|
|
|
<link href="{{ relLangURL `favicon.png` | safeURL }}" rel="icon" type="image/png">
|
|
<link href="{{ relLangURL `favicon.svg` | safeURL }}" rel="icon" type="image/svg+xml">
|
|
<link color="{{ $page.Param `paige.color` | default `#0d6efd` }}" href="{{ relLangURL `safari-pinned-tab.svg` | safeURL }}" rel="mask-icon">
|
|
<link href="{{ relLangURL `site.webmanifest` | safeURL }}" rel="manifest">
|
|
|
|
{{ partial "paige/link.html" (dict
|
|
"href" ($page.Param "paige.bootstrap.icons.link_href" | default "https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css")
|
|
"integrity" ($page.Param "paige.bootstrap.icons.link_integrity" | default "sha384-b6lVK+yci+bfDmaY1u0zE8YYJt0TZxLEAFyYSLHId4xoVvsrQu3INevFKo+Xir8e")
|
|
"raw" true
|
|
) }}
|
|
{{ partial "paige/link.html" (dict
|
|
"href" ($page.Param "paige.bootstrap.style.link_href" | default "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css")
|
|
"integrity" ($page.Param "paige.bootstrap.style.link_integrity" | default "sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD")
|
|
"raw" ($page.Param "paige.bootstrap.style.raw")
|
|
) }}
|
|
|
|
{{ if or ($page.Param "paige.math") (and ($page.Param "paige.list.content.show") (where $page.Pages "Params.paige.math" "eq" true)) }}
|
|
{{ partial "paige/link.html" (dict "href" "paige/katex/katex.min.css") }}
|
|
{{ end }}
|
|
|
|
{{ if .AlternativeOutputFormats }}
|
|
{{ $title := partial "paige/func-title.html" $page }}
|
|
{{ range .AlternativeOutputFormats }}
|
|
<link href="{{ .Permalink | safeURL }}" rel="{{ .Rel }}" title="{{ $title }}" type="{{ .MediaType.Type }}">
|
|
{{ end }}
|
|
{{ end }}
|