forest-time-jekyll 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59aa7fe97c8e23db723300b2e424f2c47953ce039a75cac95755f6013daa3f5f
4
- data.tar.gz: 9432d07f79ff8276a6d44861ed63ef8efb4c6cb1e066e2fcad99254935e2374d
3
+ metadata.gz: 32c0e56e8090d96031f9a839767a18aadc072754081b6c76fe798343b0815526
4
+ data.tar.gz: 5b1a098a07077ce7b027c3e140781fcbd023062ea0269f918766461178d10957
5
5
  SHA512:
6
- metadata.gz: 1471ebaafd2446a8afd0f58964e4a490c9cdfe21c05b901758f71685d1ae5612c3560558f786ac1793c12b11fcbe008a8f69a99f9fbe8f96839dfb7f95186924
7
- data.tar.gz: 6cfe17a2b736f55c14000db94ee1f7b344eea9631169c84b8d5c58acfa68a81c6ac9688a892a9690a28c2b8f7ebe0410b611820966f8cb82e1538a9cdc5d35f1
6
+ metadata.gz: 7043b412a66c8b99f032853e04df5029a172ebfc5d9e4eb68eba624f4744376bd0d87dd9b5fe3c29dfd57f6cf07274a3cd148768fbcb86c1e9563fe9be2c676d
7
+ data.tar.gz: 6d7085a898990864ec8e21053b73fc2fc643563d4b0ab265683bf45a572390af7552355bd201b3e557ab9c962dd06df97c2ebb981c4c7c4d3207e0a3c91dc1fc
data/_data/ui-text.yml CHANGED
@@ -4,6 +4,7 @@ home : "Home"
4
4
  back_to_home : "Back to home"
5
5
  about : "About"
6
6
  and : "and"
7
+ Contact : "Contact"
7
8
  emailPlaceholder : "address@site.com"
8
9
  onn : "on" # for some reason "on" does not show up when used... !?
9
10
  of : "of"
@@ -1,3 +1,3 @@
1
1
  <div class="alert alert-light alert-bottom">
2
- {{ site.data.ui-text.noComments }} <a href="{{site.baseurl}}/contact">{{ site.data.ui-text.here }}</a>
2
+ {{ site.data.ui-text.noComments }} <a href="{{site.baseurl}}/{{site.author_contact}}">{{ site.data.ui-text.here }}</a>
3
3
  </div>
@@ -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 }} &copy; {{ 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"> {{ content }} </div>
40
+ <div id="content">{{ content }}</div>
41
41
 
42
42
  {% include subscribe-form.html %}
43
43
 
44
- {% include comments.html %}
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: Roboto Slab;
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: 'Roboto Slab', Roboto, sans-serif;
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: 'Roboto Slab';
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 #edf4f8;
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.1
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-01-13 00:00:00.000000000 Z
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
- rubyforge_project:
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