forest-time-jekyll 0.3.1 → 0.3.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/_data/ui-text.yml +1 -0
- data/_includes/comments.html +1 -1
- data/_includes/footer.html +1 -0
- data/_layouts/post.html +4 -2
- data/_sass/main.scss +9 -5
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 32c0e56e8090d96031f9a839767a18aadc072754081b6c76fe798343b0815526
|
|
4
|
+
data.tar.gz: 5b1a098a07077ce7b027c3e140781fcbd023062ea0269f918766461178d10957
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7043b412a66c8b99f032853e04df5029a172ebfc5d9e4eb68eba624f4744376bd0d87dd9b5fe3c29dfd57f6cf07274a3cd148768fbcb86c1e9563fe9be2c676d
|
|
7
|
+
data.tar.gz: 6d7085a898990864ec8e21053b73fc2fc643563d4b0ab265683bf45a572390af7552355bd201b3e557ab9c962dd06df97c2ebb981c4c7c4d3207e0a3c91dc1fc
|
data/_data/ui-text.yml
CHANGED
data/_includes/comments.html
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
<div class="alert alert-light alert-bottom">
|
|
2
|
-
{{ site.data.ui-text.noComments }} <a href="{{site.baseurl}}/
|
|
2
|
+
{{ site.data.ui-text.noComments }} <a href="{{site.baseurl}}/{{site.author_contact}}">{{ site.data.ui-text.here }}</a>
|
|
3
3
|
</div>
|
data/_includes/footer.html
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
<span>
|
|
5
5
|
<a href="{{ site.baseurl }}/" class="phantom">{{ site.data.ui-text.home }}</a> ・
|
|
6
6
|
<a href="{{ site.baseurl }}{{ site.author_about }}" class="phantom">{{ site.data.ui-text.about }}</a> ・
|
|
7
|
+
<a href="{{ site.baseurl }}{{ site.author_contact }}" class="phantom">{{ site.data.ui-text.Contact }}</a> ・
|
|
7
8
|
<a href="{{ site.baseurl }}/feed.xml" class="phantom">{{ site.data.ui-text.xml_feed }}</a></span>
|
|
8
9
|
<span class="block">{{ site.title }} © {{ site.time | date: '%Y' }}</span>
|
|
9
10
|
<span>
|
data/_layouts/post.html
CHANGED
|
@@ -37,9 +37,11 @@ layout: default
|
|
|
37
37
|
{% include oldPostNotice.html %}
|
|
38
38
|
{% endif %}
|
|
39
39
|
|
|
40
|
-
<div id="content">
|
|
40
|
+
<div id="content">{{ content }}</div>
|
|
41
41
|
|
|
42
42
|
{% include subscribe-form.html %}
|
|
43
43
|
|
|
44
|
-
{%
|
|
44
|
+
{% if site.showComments %}
|
|
45
|
+
{% include comments.html %}
|
|
46
|
+
{% endif %}
|
|
45
47
|
</article>
|
data/_sass/main.scss
CHANGED
|
@@ -6,7 +6,9 @@ $secondary-color: #F37C22;
|
|
|
6
6
|
$gray: #777;
|
|
7
7
|
$base-margin: 1rem;
|
|
8
8
|
|
|
9
|
-
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400|Roboto:400,500,700&subset=latin-ext');
|
|
9
|
+
// @import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400|Roboto:400,500,700&subset=latin-ext');
|
|
10
|
+
@import url('https://fonts.googleapis.com/css?family=Open+Sans:600,700|Roboto:400,500,700&subset=latin-ext');
|
|
11
|
+
|
|
10
12
|
@import 'objects.text';
|
|
11
13
|
@import 'objects.image';
|
|
12
14
|
|
|
@@ -31,7 +33,7 @@ strong {
|
|
|
31
33
|
}
|
|
32
34
|
|
|
33
35
|
h1 {
|
|
34
|
-
font-family:
|
|
36
|
+
font-family: 'Open Sans';
|
|
35
37
|
font-weight: 100;
|
|
36
38
|
line-height: 1.7rem;
|
|
37
39
|
}
|
|
@@ -45,7 +47,7 @@ h3,
|
|
|
45
47
|
h4,
|
|
46
48
|
h5 {
|
|
47
49
|
margin: 45px 0 25px;
|
|
48
|
-
font-family: '
|
|
50
|
+
font-family: 'Open Sans', Roboto, sans-serif;
|
|
49
51
|
font-weight: 400;
|
|
50
52
|
line-height: 1.7rem;
|
|
51
53
|
}
|
|
@@ -357,6 +359,7 @@ section {
|
|
|
357
359
|
}
|
|
358
360
|
.title {
|
|
359
361
|
font-size: 22px;
|
|
362
|
+
font-family: 'Open Sans';
|
|
360
363
|
max-width: 100%;
|
|
361
364
|
word-wrap: normal !important;
|
|
362
365
|
}
|
|
@@ -441,7 +444,7 @@ section {
|
|
|
441
444
|
.c-header__title {
|
|
442
445
|
font-size: 30px;
|
|
443
446
|
font-weight: 100;
|
|
444
|
-
font-family: '
|
|
447
|
+
font-family: 'Open Sans';
|
|
445
448
|
margin-bottom: 0;
|
|
446
449
|
}
|
|
447
450
|
|
|
@@ -573,6 +576,7 @@ a.phantom {
|
|
|
573
576
|
border: 1px solid transparent;
|
|
574
577
|
border-radius: .17rem;
|
|
575
578
|
margin-top: 60px;
|
|
579
|
+
text-align: center;
|
|
576
580
|
}
|
|
577
581
|
|
|
578
582
|
.alert-light {
|
|
@@ -582,6 +586,6 @@ a.phantom {
|
|
|
582
586
|
}
|
|
583
587
|
|
|
584
588
|
.alert-custom {
|
|
585
|
-
border: 1px solid #
|
|
589
|
+
border: 1px solid #e4e4e4;
|
|
586
590
|
background: #f4f8fb;
|
|
587
591
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: forest-time-jekyll
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Claudiu Constantin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-02-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -114,8 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
114
114
|
- !ruby/object:Gem::Version
|
|
115
115
|
version: '0'
|
|
116
116
|
requirements: []
|
|
117
|
-
|
|
118
|
-
rubygems_version: 2.7.6
|
|
117
|
+
rubygems_version: 3.0.1
|
|
119
118
|
signing_key:
|
|
120
119
|
specification_version: 4
|
|
121
120
|
summary: A simple theme for your static blog, fresh as a forest
|