Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/queensferryme/hugo-theme-texify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 687c478..ef3f2a7 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -33,6 +33,9 @@
{{ partial "math.html" . }}
{{ end }}
+ <!-- opengraph -->
+ {{ template "_internal/opengraph.html" . }}
+
<!-- permalink -->
<link rel="canonical" href="{{ .Permalink }}">
@@ -42,6 +45,9 @@
<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
{{ end -}}
+ <!-- schema -->
+ {{ template "_internal/schema.html" . }}
+
<!-- style -->
<link media="screen" rel="stylesheet" href='{{ "css/common.css" | absURL }}'>
<link media="screen" rel="stylesheet" href='{{ "css/content.css" | absURL }}'>
@@ -54,9 +60,7 @@
{{ end }}
<!-- twitter -->
- <meta name="twitter:card" content="summary" />
- <meta name="twitter:title" content="{{ .Title }}" />
- <meta name="twitter:description" content="{{ .Summary }}" />
+ {{ template "_internal/twitter_cards.html" . }}
{{ block "head" . }}{{ end }}
</head>