forest-time-jekyll 0.1.5 → 0.1.6
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/comments.html +3 -0
- data/_includes/oldPostNotice.html +3 -0
- data/_layouts/post.html +9 -2
- data/_sass/main.scss +16 -1
- metadata +3 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57d11e4862b8d5b5ff018f41f268ccfc35da07b3092ac3c1968ae96031cb3730
|
4
|
+
data.tar.gz: 164f127f81d12bb1cce3afc2ed259911b4bdcba60a36ff5c00d39b9263d5e791
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41be45de710dadf5367237744f94a6bcbc3c75669ca2f99bc5441bf2edcd5a5844b118c3a242aa72809c2dfc97235ee0ee311744b7fa5faee6ec8483da540758
|
7
|
+
data.tar.gz: a75c94d80cda4a2094eab3859a22b3e0ca85794a725c412a400bebd2b93a8d3b46b1616c3ddb4b6643e4b5dfe373e5bfbf3cee09109bb4f2b430ebede3e75daf
|
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.
|
14
|
-
<time>
|
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.
|
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
|