askclass-news-theme 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_config.yml +12 -0
- data/_includes/head/common.html +1 -0
- data/_includes/head/meta.html +1 -0
- 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: 5d84ba2df51dcca5fd3261cbdf3517049bc7324c1ca9a559dc12994f7c3f5d34
|
|
4
|
+
data.tar.gz: c2b4de5d00d11d05634ead0c4bd602e7cbbdf5eb33b1e9384b86ee61a2801d6b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc781878dc8b8188d92ea3886b25cdd1e87c29a376f5f28909eeaff4c285cbe37cb9de38b48130ba79924c3a854e635b01d416ce9ed570b41da471a42f50d64d
|
|
7
|
+
data.tar.gz: 47617a0860695b97557beaee1f0fb05a8849911a333a71f8a56b2d4854761f02aad86eeeabb0d082be14133e3fed426b30597f1a8989028ffe14639bebc0542a
|
data/_config.yml
CHANGED
|
@@ -29,6 +29,18 @@ acn:
|
|
|
29
29
|
favicon: "favicon.ico"
|
|
30
30
|
type: "image/png"
|
|
31
31
|
image: "logo-96.png"
|
|
32
|
+
keywords: >
|
|
33
|
+
edtech,
|
|
34
|
+
education,
|
|
35
|
+
technology,
|
|
36
|
+
learning,
|
|
37
|
+
teaching,
|
|
38
|
+
student,
|
|
39
|
+
educator,
|
|
40
|
+
university,
|
|
41
|
+
icebreaker,
|
|
42
|
+
student engagement,
|
|
43
|
+
participation
|
|
32
44
|
footer:
|
|
33
45
|
- icon: "copyright"
|
|
34
46
|
href: "https://askclass.com"
|
data/_includes/head/common.html
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
<meta name="theme-color" content="{{ acn.color.theme }}" />
|
|
16
16
|
<meta name="apple-mobile-web-app-status-bar-style" content="{{ acn.color.theme }}" />
|
|
17
17
|
<meta name="description" content="{{ desc }}" />
|
|
18
|
+
<meta name="keywords" content="{{ acn.meta.keywords | strip_newlines }}" />
|
|
18
19
|
|
|
19
20
|
<meta property="og:site_name" content="{{ site.title }}" />
|
|
20
21
|
<meta property="og:description" content="{{ desc }}" />
|
data/_includes/head/meta.html
CHANGED