-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd3b464
commit 0f3ba05
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>{{- .Site.Title }}</title> | ||
{{- if not hugo.IsProduction }} | ||
<meta name="robots" content="noindex"> | ||
{{- end }} | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content="{{ site.Params.description }}" /> | ||
<meta name="keywords" content="Documentation, Hugo, Hugo Theme, Bootstrap" /> | ||
<meta name="author" content="Colin Wilson - Lotus Labs" /> | ||
<meta name="email" content="[email protected]" /> | ||
<meta name="website" content="https://lotusdocs.dev" /> | ||
<meta name="Version" content="v0.1.0" /> | ||
<!-- favicon --> | ||
{{ block "head/favicon" . }}{{ partialCached "head/favicon.html" . }}{{ end }} | ||
<!-- Google Fonts --> | ||
{{- partial "google-fonts" . }} | ||
<!-- Open Graph --> | ||
{{ template "_internal/opengraph.html" . }} | ||
<!-- Custom CSS --> | ||
{{- $options := dict "enableSourceMap" true }} | ||
{{- if hugo.IsProduction}} | ||
{{- $options := dict "enableSourceMap" false "outputStyle" "compressed" }} | ||
{{- end }} | ||
{{- $style := resources.Get "/scss/style.scss" }} | ||
{{- $style = $style | resources.ExecuteAsTemplate "/scss/style.scss" . | resources.ToCSS $options }} | ||
{{- if hugo.IsProduction }} | ||
{{- $style = $style | minify | fingerprint "sha384" }} | ||
{{- end -}} | ||
<link rel="stylesheet" href="{{ $style.RelPermalink }}" {{ if hugo.IsProduction }}integrity="{{ $style.Data.Integrity }}"{{ end -}}/> | ||
<!-- Bootstrap JS --> | ||
{{ $js := resources.Get "js/bootstrap.js" }} | ||
{{ $params := dict }} | ||
{{ $sourceMap := cond hugo.IsProduction "" "inline" }} | ||
{{ $opts := dict "sourceMap" $sourceMap "minify" hugo.IsProduction "target" "es2018" "params" $params }} | ||
{{ $js = $js | js.Build $opts }} | ||
{{ if hugo.IsProduction }} | ||
{{ $js = $js | fingerprint "sha384" }} | ||
{{ end }} | ||
<script src="{{ $js.RelPermalink }}" {{ if hugo.IsProduction }}integrity="{{ $js.Data.Integrity }}"{{ end -}} defer></script> | ||
<!-- Image Compare Viewer --> | ||
{{ if .Site.Data.landing.image_compare.enable }} | ||
{{ $imagecompare := resources.Get "js/image-compare-viewer.min.js" }} | ||
{{- if not .Site.IsServer }} | ||
{{- $js := (slice $imagecompare) | resources.Concat "/js/image-compare.js" | minify | fingerprint "sha384" }} | ||
<script type="text/javascript" src="{{ $js.Permalink }}" integrity="{{ $js.Data.Integrity }}"></script> | ||
{{- else }} | ||
{{- $js := (slice $imagecompare) | resources.Concat "/js/image-compare.js" }} | ||
<script type="text/javascript" src="{{ $js.Permalink }}" {{ if hugo.IsProduction }}integrity="{{ $js.Data.Integrity }}"{{ end }}></script> | ||
{{- end }} | ||
{{- end }} | ||
<!-- Plausible Analytics Config --> | ||
{{- if not .Site.IsServer }} | ||
{{ if and (.Site.Params.plausible.scriptURL) (.Site.Params.plausible.dataDomain) -}} | ||
{{- partialCached "head/plausible" . }} | ||
{{- end -}} | ||
{{- end -}} | ||
<!-- Google Analytics v4 Config --> | ||
{{- if not .Site.IsServer }} | ||
{{- if .Site.GoogleAnalytics }} | ||
{{- template "_internal/google_analytics.html" . -}} | ||
{{- end -}} | ||
{{- end -}} | ||
</head> |