best-blogging-theme 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/custom-head.html +24 -10
- data/_layouts/post.html +7 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aa0523a601a297ad083d9cf17565e18077d0b10c936c30cd9caf10a79e250b83
|
4
|
+
data.tar.gz: 2b3999b4a3b4ab9682a8c010e363dcc004ac2bf0a84985181a3757f0f699d9c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b298ef546ed3fac0075d9ec74bf65a89591d36917ba83377e7696265c28c3c99cb643a31b34f6188363143eee39e034139debbb9a7c50a085dcbb67fbaedf255
|
7
|
+
data.tar.gz: '09823e6959a6a110aa109565ac420ebf8d698ecba2a5f7992477c6e8b7078891c32c4a7705daf3f97508e4ee6ddf88847163af7183ba71c7c023f4ee34b79f64'
|
data/_includes/custom-head.html
CHANGED
@@ -9,22 +9,36 @@
|
|
9
9
|
{%- else -%}
|
10
10
|
{%- assign og_type = "website" -%}
|
11
11
|
{%- endif -%}
|
12
|
+
<title data-rh="true">{{page.title}}</title>
|
13
|
+
|
12
14
|
<meta charset="UTF-8">
|
13
|
-
<
|
14
|
-
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
15
|
+
<meta data-rh="true" name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
15
16
|
<meta name="keywords" content="{{site.keyboard}}">
|
16
17
|
<meta name="description" content="{{ seo_description}}">
|
17
|
-
<meta
|
18
|
-
<meta property="og:
|
19
|
-
<meta property="og:
|
20
|
-
<meta property="og:
|
21
|
-
<meta property="og:
|
22
|
-
<meta property="og:
|
18
|
+
<meta data-rh="true" property="description" content="{{ seo_description}}">
|
19
|
+
<meta data-rh="true" property="og:description" content="{{ seo_description}}">
|
20
|
+
<meta data-rh="true" property="og:title" content="{{ page.title | default: site.title }}">
|
21
|
+
<meta data-rh="true" property="og:type" content="{{og_type}}">
|
22
|
+
<meta data-rh="true" property="og:locale" content="en_US">
|
23
|
+
<meta data-rh="true" property="og:site_name" content="{{site.name}}">
|
24
|
+
<meta data-rh="true" property="og:url" content="{{site.url | append: page.url}}">
|
25
|
+
|
26
|
+
|
27
|
+
<meta data-rh="true" property="twitter:domain" content="{{site.url | append: page.url}}">
|
28
|
+
<meta data-rh="true" property="twitter:url" content="{{site.url | append: page.url}}">
|
29
|
+
<meta data-rh="true" name="twitter:title" content="{{ page.title | default: site.title }}">
|
30
|
+
<meta data-rh="true" name="twitter:description" content="{{ seo_description}}">
|
31
|
+
<meta data-rh="true" name="twitter:image:src" content="{{site.url | append: favicon}}">
|
32
|
+
|
33
|
+
<meta name="subject" content="Education">
|
34
|
+
<meta name="copyright" content="{{site.url}}">
|
35
|
+
<meta name="identifier-URL" content="{{site.url}}">
|
36
|
+
<meta name="designer" content="{{site.designer}}">
|
23
37
|
<meta name="author" content="{{ site.author_name }}">
|
24
|
-
|
38
|
+
|
25
39
|
|
26
40
|
<!-- Favicon-->
|
27
|
-
<link rel="shortcut icon" href="{{
|
41
|
+
<link rel="shortcut icon" href="{{ favicon | relative_url }}">
|
28
42
|
|
29
43
|
<!-- fonts -->
|
30
44
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet">
|
data/_layouts/post.html
CHANGED