mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-08-06 07:51:36 -05:00
Also move the Isso script tag from comments.html to the <head>, since it essentially needs to load on all pages. Fixes #94
101 lines
4.3 KiB
HTML
101 lines
4.3 KiB
HTML
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{{ hugo.Generator }}
|
|
|
|
{{ with resources.Get "css/bobastyle.css" | fingerprint "sha512" }}
|
|
<link rel="stylesheet" type="text/css" href="{{ .Permalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
{{ end }}
|
|
{{ with resources.Get "css/syntax.css" | fingerprint "sha512" }}
|
|
<link rel="stylesheet" type="text/css" href="{{ .Permalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous" media="print" onload="this.media='all'">
|
|
{{ end }}
|
|
{{ with resources.Get "css/syntax-light.css" | fingerprint "sha512" }}
|
|
<link rel="stylesheet" type="text/css" href="{{ .Permalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous" media="print" onload="this.media='all'">
|
|
{{ end }}
|
|
|
|
{{ with resources.Get "js/bobatheme.js" | fingerprint "sha512" }}
|
|
<script defer src="{{ .Permalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script>
|
|
{{ end }}
|
|
{{ if not hugo.IsServer }}
|
|
<script defer data-domain="bbaovanc.com" src="https://plausible.bbaovanc.com/js/bobalytics.outbound-links.js"></script>
|
|
<script>window.plausible = window.plausible || function() { (window.plausible.q = window.plausible.q || []).push(arguments) }</script>
|
|
{{ with resources.Get "js/share-event.js" | fingerprint "sha512" }}
|
|
<script defer src="{{ .Permalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"></script>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ $isso_url := .Permalink }}
|
|
{{ if .IsTranslated }}
|
|
{{ with index .AllTranslations 0 }}
|
|
{{ $isso_url = .Permalink }}
|
|
{{ end }}
|
|
{{ end }}
|
|
<script defer src="https://isso.bbaovanc.com/js/embed.min.js"
|
|
data-isso-id="{{ $isso_url }}"
|
|
data-isso-default-lang="{{ .Language.Lang }}"
|
|
data-isso-css="true"
|
|
data-isso-max-comments-top="inf"
|
|
data-isso-max-comments-nested="inf"
|
|
data-isso-reveal-on-click="5"
|
|
{{/*
|
|
data-isso-avatar-bg="#111"
|
|
data-isso-avatar-fg="#9abf88 #5698c4 #e279a3 #9163b6 ..."
|
|
*/}}
|
|
data-isso-vote="true"
|
|
{{/*
|
|
data-isso-vote-levels=""
|
|
*/}}
|
|
data-isso-feed="true"
|
|
data-isso-require-email="false"
|
|
data-isso-reply-notifications="true"
|
|
data-isso-reply-notifications-default-enabled="true"
|
|
|
|
{{ with (.GetTerms "authors") }}
|
|
{{ $authorHashes := slice }}
|
|
{{ range . }}
|
|
{{ with .Params.issoUserID }}
|
|
{{ $authorHashes = $authorHashes | append . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
data-isso-page-author-hashes="{{ delimit $authorHashes "," }}"
|
|
{{ end }}
|
|
>
|
|
</script>
|
|
|
|
{{ if eq .Layout "search" }}
|
|
{{ with resources.Get "css/search.css" | fingerprint "sha512" }}
|
|
<link rel="stylesheet" type="text/css" href="{{ .Permalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
|
{{ end }}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ absURL "pagefind/pagefind-ui.css" }}" crossorigin="anonymous">
|
|
<script src="{{ absURL "pagefind/pagefind-ui.js" }}" crossorigin="anonymous"></script>
|
|
<script>
|
|
window.addEventListener('DOMContentLoaded', (event) => {
|
|
new PagefindUI({ element: "#search-box", showSubResults: true });
|
|
});
|
|
</script>
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.faviconSVG }}
|
|
<link rel="icon" href="{{ . | absURL }}" />
|
|
{{ end }}
|
|
{{ with .Site.Params.appleTouchPNG }}
|
|
<link rel="apple-touch-icon" href="{{ . | absURL }}" />
|
|
{{ end }}
|
|
|
|
<title>{{ .Render "head_title" }}</title>
|
|
|
|
{{ range .Site.Params.rel_me }}
|
|
<link rel="me" href="{{ . }}" />
|
|
{{ end }}
|
|
|
|
{{ partial "seo-tags/opengraph.html" . }}
|
|
{{ partial "seo-tags/twitter-cards.html" . }}
|
|
{{ partial "seo-tags/schema.html" . }}
|
|
{{ partial "seo-tags/link.html" . }}
|
|
{{ partial "seo-tags/author.html" . }}
|
|
|
|
<meta name="language" content="{{ .Language.Lang }}">
|
|
<meta name="description" content="{{ (partial "seo-description.html" .) | plainify }}">
|
|
</head>
|