gravid 1.1.3 → 1.3.0
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/_includes/google-analytics.html +7 -8
- data/_includes/head.html +1 -1
- data/_layouts/default.html +0 -1
- data/_sass/gravid/_layout.scss +3 -3
- metadata +25 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3207ee1fa5ce777cfdec371659741a1e03f2e19d3e10e81bb360c5595687d77e
|
|
4
|
+
data.tar.gz: 7229b306e8c47f9d1d9eba3b1ca28fec7f1e324849559d37fa6ffa73b966c48f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34533886e128bc880ce1141f2740b17586b29daedc5d066a00739a57906bfa2b743621251d6ba45bad51297a628595cc84c3de55150dc7e470be78313357b4b1
|
|
7
|
+
data.tar.gz: d8221cca7f803ecb6d44b1541c9bfbfb0b3f45312a528f223096617b602c2bd993b2d15dcada6924e94c04f003a22c3fe58b894b0991d5b836fe1f7d9e4572b6
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
2
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id='{{ site.google_analytics.tracking_id }}'"></script>
|
|
1
3
|
<script>
|
|
2
|
-
|
|
3
|
-
(
|
|
4
|
-
|
|
5
|
-
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
4
|
+
window.dataLayer = window.dataLayer || [];
|
|
5
|
+
function gtag(){dataLayer.push(arguments);}
|
|
6
|
+
gtag('js', new Date());
|
|
6
7
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
</script>
|
|
8
|
+
gtag('config', '{{ site.google_analytics.tracking_id }}');
|
|
9
|
+
</script>
|
data/_includes/head.html
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<head>
|
|
2
|
+
{% if site.google_analytics.enable %} {% include google-analytics.html %} {% endif %}
|
|
2
3
|
<meta charset="utf-8">
|
|
3
4
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
4
5
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
@@ -39,6 +40,5 @@
|
|
|
39
40
|
|
|
40
41
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
|
|
41
42
|
|
|
42
|
-
<script async src="//www.google-analytics.com/analytics.js"></script>
|
|
43
43
|
<script data-ad-client="ca-pub-1326478359331739" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
|
|
44
44
|
</head>
|
data/_layouts/default.html
CHANGED
data/_sass/gravid/_layout.scss
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
.site-header {
|
|
6
6
|
position: fixed;
|
|
7
|
-
height:
|
|
7
|
+
height: 64px;
|
|
8
8
|
width: 100%;
|
|
9
9
|
top: 0;
|
|
10
10
|
left: 0;
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
border-bottom: 1px solid #eee;
|
|
13
13
|
background: #fff;
|
|
14
14
|
z-index: 1;
|
|
15
|
-
line-height:
|
|
15
|
+
line-height: 64px;
|
|
16
16
|
font-size: 20px;
|
|
17
17
|
box-sizing: border-box;
|
|
18
18
|
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
|
|
40
40
|
.site-nav {
|
|
41
41
|
float: right;
|
|
42
|
-
display: inline-block;
|
|
43
42
|
font-size: 16px;
|
|
44
43
|
font-weight: 400;
|
|
45
44
|
}
|
|
46
45
|
|
|
47
46
|
.sidebar-nav-item {
|
|
48
47
|
color: black;
|
|
48
|
+
display: inline-block;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.sidebar-nav-item {
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gravid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- zddhub
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-05-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -16,28 +16,42 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 4.
|
|
19
|
+
version: '4.1'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 4.
|
|
26
|
+
version: '4.1'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: webrick
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '1.7'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '1.7'
|
|
27
41
|
- !ruby/object:Gem::Dependency
|
|
28
42
|
name: bundler
|
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
|
30
44
|
requirements:
|
|
31
45
|
- - "~>"
|
|
32
46
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.
|
|
47
|
+
version: '2.2'
|
|
34
48
|
type: :development
|
|
35
49
|
prerelease: false
|
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
51
|
requirements:
|
|
38
52
|
- - "~>"
|
|
39
53
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.
|
|
54
|
+
version: '2.2'
|
|
41
55
|
- !ruby/object:Gem::Dependency
|
|
42
56
|
name: rake
|
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -52,7 +66,7 @@ dependencies:
|
|
|
52
66
|
- - "~>"
|
|
53
67
|
- !ruby/object:Gem::Version
|
|
54
68
|
version: 13.0.1
|
|
55
|
-
description:
|
|
69
|
+
description:
|
|
56
70
|
email:
|
|
57
71
|
- zddhub@gmail.com
|
|
58
72
|
executables: []
|
|
@@ -117,7 +131,7 @@ licenses:
|
|
|
117
131
|
- MIT
|
|
118
132
|
metadata:
|
|
119
133
|
plugin_type: theme
|
|
120
|
-
post_install_message:
|
|
134
|
+
post_install_message:
|
|
121
135
|
rdoc_options: []
|
|
122
136
|
require_paths:
|
|
123
137
|
- lib
|
|
@@ -132,8 +146,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
132
146
|
- !ruby/object:Gem::Version
|
|
133
147
|
version: '0'
|
|
134
148
|
requirements: []
|
|
135
|
-
rubygems_version: 3.
|
|
136
|
-
signing_key:
|
|
149
|
+
rubygems_version: 3.2.3
|
|
150
|
+
signing_key:
|
|
137
151
|
specification_version: 4
|
|
138
152
|
summary: A simple and beautiful jekyll theme.
|
|
139
153
|
test_files: []
|