jekyll-theme-isotc211 0.4.7 → 0.4.8
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/README.md +2 -0
- data/_config.yml +2 -0
- data/_includes/head.html +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2cdac92bdbcc467dfee554b35c120895ddd942e1
|
|
4
|
+
data.tar.gz: cc35123c14ee6ccec1c042365ea826e9da4bc1da
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b23d82e1cf35ae43fc664688164dd0089dabb6f737a69b2229fbc9d059fa4e256e172de33e91595f144fea8013fbc84ea49cc83e4cdfdf751055d97330cb5242
|
|
7
|
+
data.tar.gz: 3b3d487f8c5cb55717e728ac1f764a678c9b6274d5f2e16afe05d5a238586bd0607e8ebc31a7724aa848092fb091fd2302d5c68f578d9571e525d34bc5bc5dd2
|
data/README.md
CHANGED
|
@@ -22,6 +22,8 @@ Configuration keys:
|
|
|
22
22
|
title: <site title to be used in meta and in body>
|
|
23
23
|
title_html: <if specified, is used in body instead of title>
|
|
24
24
|
|
|
25
|
+
font_awesome_kit_url: <url to your FA kit, free kits are OK with stock theme version>
|
|
26
|
+
|
|
25
27
|
google_analytics:
|
|
26
28
|
id: UA-XXXXXX-X
|
|
27
29
|
|
data/_config.yml
CHANGED
data/_includes/head.html
CHANGED
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
<meta name="msapplication-config" content="/browserconfig.xml" />
|
|
17
17
|
<meta name="theme-color" content="#ffffff" />
|
|
18
18
|
|
|
19
|
+
<script src="{{ site.font_awesome_kit_url }}"></script>
|
|
20
|
+
|
|
19
21
|
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-LRlmVvLKVApDVGuspQFnRQJjkv0P7/YFrw84YYQtmYG4nK8c+M+NlmYDCv0rKWpG" crossorigin="anonymous">
|
|
20
22
|
<link rel="stylesheet" type="text/css" href="{{ "/assets/style.css" | relative_url }}" />
|
|
21
23
|
|