forest-time-jekyll 0.1.5 → 0.1.6

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: 272075b791a630e3544bacdd8e3793883af34fe4684ea0dba7b6ce1722a1a4e9
4
- data.tar.gz: 435799e879293b71da5c51aa9c50fbbb7651c888b4b6e207bb2e1e2255d77eef
3
+ metadata.gz: 57d11e4862b8d5b5ff018f41f268ccfc35da07b3092ac3c1968ae96031cb3730
4
+ data.tar.gz: 164f127f81d12bb1cce3afc2ed259911b4bdcba60a36ff5c00d39b9263d5e791
5
5
  SHA512:
6
- metadata.gz: 3f30749cd03c9ba302d0025e651899c867519d71487660cb65a44c08bc0e8f6c630517f6093e5acf07c182a6f2571775b326955a9a97abe14ffaea49c23b416e
7
- data.tar.gz: 5e464c5bd67363a8479929f6d5ab2fe5305955e33677dd326dd72b120adc6608687d145f2b299696fc3c6b3c0df4c3324bb1d9f5c683f5d9fcdded2e03b29d02
6
+ metadata.gz: 41be45de710dadf5367237744f94a6bcbc3c75669ca2f99bc5441bf2edcd5a5844b118c3a242aa72809c2dfc97235ee0ee311744b7fa5faee6ec8483da540758
7
+ data.tar.gz: a75c94d80cda4a2094eab3859a22b3e0ca85794a725c412a400bebd2b93a8d3b46b1616c3ddb4b6643e4b5dfe373e5bfbf3cee09109bb4f2b430ebede3e75daf
@@ -0,0 +1,3 @@
1
+ <div class="alert alert-light">
2
+ {{ site.data.ui-text.noComments }} <a href="{{site.baseurl}}/contact">here</a>
3
+ </div>
@@ -0,0 +1,3 @@
1
+ <div class="alert alert-light">
2
+ {{ site.data.ui-text.oldPostNotice }} <a href="{{site.baseurl}}/contact">here</a>
3
+ </div>
data/_layouts/post.html CHANGED
@@ -10,8 +10,9 @@ layout: default
10
10
  <span class="c-article__meta">
11
11
  {{ site.data.ui-text.published_by}}
12
12
  <a href="{{ site.baseurl }}{{ site.author_about }}" class="c-article__meta--link">{{ site.author_name }}</a>
13
- {{ site.data.ui-text.on }}
14
- <time>{% assign m = page.date | date: "%-m" %}
13
+ {{ site.data.ui-text.onn }}
14
+ <time>
15
+ {% assign m = page.date | date: "%-m" %}
15
16
  {{ page.date | date: "%-d" }}
16
17
  {% case m %}
17
18
  {% when '1' %} {{ site.data.ui-text.months.january }}
@@ -32,5 +33,11 @@ layout: default
32
33
  </span>
33
34
  </div>
34
35
 
36
+ {% if page.date < site.oldPostNoticeBefore %}
37
+ {% include oldPostNotice.html %}
38
+ {% endif %}
39
+
35
40
  <div id="content"> {{ content }} </div>
41
+
42
+ {% include comments.html %}
36
43
  </article>
data/_sass/main.scss CHANGED
@@ -564,4 +564,19 @@ a.phantom {
564
564
 
565
565
  .pagination {
566
566
  text-align: center;
567
- }
567
+ }
568
+
569
+ .alert {
570
+ position: relative;
571
+ padding: .75rem 1.25rem;
572
+ margin-bottom: 1rem;
573
+ border: 1px solid transparent;
574
+ border-radius: .15rem;
575
+ font-size: medium;
576
+ }
577
+
578
+ .alert-light {
579
+ color: #717171;
580
+ background-color: #f6f6f6;
581
+ border-color: #e4e4e4;
582
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forest-time-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Claudiu Constantin
@@ -61,11 +61,13 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.md
63
63
  - README.md
64
+ - _includes/comments.html
64
65
  - _includes/footer.html
65
66
  - _includes/head.html
66
67
  - _includes/header.html
67
68
  - _includes/image.html
68
69
  - _includes/navigation.html
70
+ - _includes/oldPostNotice.html
69
71
  - _layouts/default.html
70
72
  - _layouts/home.html
71
73
  - _layouts/page.html