focus-theme 0.1.0 → 0.1.2
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/_layouts/default.html +20 -10
- data/_layouts/post.html +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e2d02ef32aef8b70d9ccb0313b3726577fa87055d643b5848ffe54335910a29
|
|
4
|
+
data.tar.gz: 576c718352e48073445f3b7d16a9d97b05406138f32b7e2bfc016190a9e9c1ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a19e1a99ceeed3eeafebf392efde948f019f3f2c34bcef1e32568353942167776a913324121f95328bb15f1316dcc921f5a09f2743ca47e65fb13eea62cde409
|
|
7
|
+
data.tar.gz: 61c90f778ad90b5a1bec59b9114c63627d946781f481a59161f710d1aec63d259367f111f11ed8d5151635bde09f161af88ece916b598871e15982359aad5910
|
data/_layouts/default.html
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
3
|
<head>
|
|
4
|
+
<!-- Google tag (gtag.js) -->
|
|
5
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id={{site.data.google.analytics}}"></script>
|
|
6
|
+
<script>
|
|
7
|
+
window.dataLayer = window.dataLayer || [];
|
|
8
|
+
function gtag(){dataLayer.push(arguments);}
|
|
9
|
+
gtag('js', new Date());
|
|
10
|
+
|
|
11
|
+
gtag('config', '{{site.data.google.analytics}}');
|
|
12
|
+
</script>
|
|
4
13
|
<meta charset="utf-8">
|
|
5
14
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
6
15
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
@@ -8,6 +17,8 @@
|
|
|
8
17
|
|
|
9
18
|
{% seo %}
|
|
10
19
|
|
|
20
|
+
<meta name="google-adsense-account" content="{{ site.data.adsense.account }}">
|
|
21
|
+
|
|
11
22
|
<link rel="shortcut icon" type="image/x-icon" href="{{ '/site.favicon' | relative_url}}">
|
|
12
23
|
|
|
13
24
|
<!-- Font Awesome Icons -->
|
|
@@ -19,7 +30,6 @@
|
|
|
19
30
|
<!-- Bootstrap Modified -->
|
|
20
31
|
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
|
21
32
|
|
|
22
|
-
|
|
23
33
|
<!-- Theme Stylesheet -->
|
|
24
34
|
<link rel="stylesheet" href="{{ '/assets/css/theme.css' | relative_url }}">
|
|
25
35
|
|
|
@@ -78,17 +88,17 @@
|
|
|
78
88
|
<!-- Footer -->
|
|
79
89
|
<footer class="bg-white border-top p-3 text-muted small">
|
|
80
90
|
<div class="container">
|
|
81
|
-
|
|
82
|
-
<div>
|
|
83
|
-
<span class="navbar-brand mr-2 mb-0"><strong>{{ site.data.footer.copyright_title }}</strong></span>
|
|
84
|
-
<span>Copyright © <script>document.write(new Date().getFullYear())</script>.</span>
|
|
85
|
-
</div>
|
|
86
|
-
{% if site.data.footer.show_credit %}
|
|
91
|
+
<div class="row align-items-center justify-content-between">
|
|
87
92
|
<div>
|
|
88
|
-
|
|
93
|
+
<span class="navbar-brand mr-2 mb-0"><strong>{{ site.data.footer.copyright_title }}</strong></span>
|
|
94
|
+
<span>Copyright © <script>document.write(new Date().getFullYear())</script>.</span>
|
|
89
95
|
</div>
|
|
90
|
-
|
|
91
|
-
|
|
96
|
+
{% if site.data.footer.show_credit %}
|
|
97
|
+
<div>
|
|
98
|
+
Made with <a target="_blank" class="text-dark font-weight-bold" href="https://www.globalnomadstudios.com/focus-jekyll-theme/"> Focus Jekyll Theme </a> by <a class="text-dark" target="_blank" href="https://www.globalnomadstudios.com">Global Nomad</a>.
|
|
99
|
+
</div>
|
|
100
|
+
{% endif %}
|
|
101
|
+
</div>
|
|
92
102
|
</div>
|
|
93
103
|
</footer>
|
|
94
104
|
</body>
|
data/_layouts/post.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
|
-
{% assign author = site.authors[page.author] %}
|
|
4
|
+
{% assign author = site.data.authors[page.author] %}
|
|
5
5
|
<div class="container">
|
|
6
6
|
<div class="jumbotron jumbotron-fluid mb-3 pl-0 pt-0 pb-0 bg-white position-relative">
|
|
7
7
|
<div class="h-100 tofront">
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: focus-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Global Nomad LLC
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2024-12-
|
|
10
|
+
date: 2024-12-24 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: jekyll
|