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

github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2020-02-13 20:30:33 +0300
committerDillon <dillonzq@outlook.com>2020-02-13 20:30:33 +0300
commit12bd1e1935584ab2fd77d47332e75931f0d71ed9 (patch)
tree0b8611db42c4b847c3694be58cf976c2cd0ab10f /layouts/_default/baseof.html
parent917cf4a42754372aa8b1a9b10d12d07be6307e94 (diff)
chore: refactor code style
Diffstat (limited to 'layouts/_default/baseof.html')
-rw-r--r--layouts/_default/baseof.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 9cd2b89..0333550 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -7,11 +7,17 @@
<html lang="{{ .Site.LanguageCode }}">
<head>
<meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="robots" content="noodp" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<title>
{{- block "title" . }}{{ .Site.Title }}{{ end -}}
</title>
- {{- partial "head.html" . -}}
+ <meta name="Description" content="{{ .Params.description | default .Site.Params.description }}">
+
+ {{- partial "head/meta.html" . -}}
+ {{- partial "head/link.html" . -}}
+ {{- partial "head/seo.html" . -}}
</head>
<body>
{{- /* Check theme isDark before body rendering */ -}}