henry-jekyll 0.2.1 → 0.2.3
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/_layouts/categories.html +2 -3
- data/_layouts/index.html +1 -1
- data/_layouts/page.html +1 -2
- data/_layouts/raw.html +12 -0
- data/_sass/main.scss +29 -13
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ba3870b2d6056c72e94e4053ea95b4edd71a5f72c4ad224927e6ad5c0c372f4
|
|
4
|
+
data.tar.gz: 9d43ad20aca619f97b196e24ddf31dbef68ccd97cb9dc3ba562c45ddbcae0d8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 616744a5c8b1b232fa2486dcc0f26cfbec6e770b4bb714765d043aa8d6a065662431d79be8938f7c2b9e0d463be9d987119aee3d6a51002b7790a928cdb459ff
|
|
7
|
+
data.tar.gz: 13c84a56312c5fcb3b62126f4b27201456d548d37e0c765116742c73b1f850db97ace28ff4de269faed88091c401b68de0638a2f67674efdd99454025caa0c56
|
data/_layouts/categories.html
CHANGED
|
@@ -4,7 +4,7 @@ permalink: /categories/
|
|
|
4
4
|
title: Categories
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
<section class="post-index">
|
|
7
|
+
<section class="post-index categories">
|
|
8
8
|
{% for category in site.categories %}
|
|
9
9
|
{% capture category_name %}{{ category | first }}{% endcapture %}
|
|
10
10
|
|
|
@@ -20,5 +20,4 @@ title: Categories
|
|
|
20
20
|
{% endfor %}
|
|
21
21
|
</ul>
|
|
22
22
|
{% endfor %}
|
|
23
|
-
</section>
|
|
24
|
-
</div>
|
|
23
|
+
</section>
|
data/_layouts/index.html
CHANGED
|
@@ -3,7 +3,7 @@ layout: default
|
|
|
3
3
|
title: All Posts
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<section class="post-index">
|
|
6
|
+
<section class="post-index index">
|
|
7
7
|
{% for post in site.posts %}
|
|
8
8
|
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
|
9
9
|
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
|
data/_layouts/page.html
CHANGED
data/_layouts/raw.html
ADDED
data/_sass/main.scss
CHANGED
|
@@ -448,7 +448,6 @@ article.post-content {
|
|
|
448
448
|
|
|
449
449
|
|
|
450
450
|
.site-footer {
|
|
451
|
-
|
|
452
451
|
padding: $spacing-unit 0;
|
|
453
452
|
|
|
454
453
|
@include media-query-laptop() {
|
|
@@ -498,23 +497,40 @@ article.post-content {
|
|
|
498
497
|
}
|
|
499
498
|
}
|
|
500
499
|
}
|
|
500
|
+
}
|
|
501
501
|
|
|
502
|
-
|
|
503
|
-
grid-column: 2;
|
|
504
|
-
grid-row: 2;
|
|
502
|
+
.site-nav {
|
|
505
503
|
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
504
|
+
ul {
|
|
505
|
+
display: grid;
|
|
506
|
+
row-gap: $spacing-unit / 2;
|
|
507
|
+
grid-template-columns: repeat(auto-fit, minmax((7 * $font-size-regular), 1fr));
|
|
508
|
+
@include media-query-small-screen() {
|
|
509
|
+
grid-template-columns: repeat(auto-fit, minmax((4 * $font-size-regular), 1fr));
|
|
510
|
+
}
|
|
509
511
|
|
|
510
|
-
|
|
512
|
+
list-style-type: none;
|
|
513
|
+
margin-left: 0;
|
|
514
|
+
text-align: center;
|
|
511
515
|
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
text-align: center;
|
|
516
|
+
.nav-link {
|
|
517
|
+
display: block;
|
|
515
518
|
|
|
516
|
-
|
|
517
|
-
|
|
519
|
+
padding-top: $spacing-micro-unit;
|
|
520
|
+
padding-bottom: $spacing-micro-unit;
|
|
521
|
+
text-decoration: none;
|
|
522
|
+
|
|
523
|
+
@include media-query-small-screen() {
|
|
524
|
+
font-size: $font-size-small;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
border-top: 2px solid transparent;
|
|
529
|
+
border-bottom: 2px solid transparent;
|
|
530
|
+
|
|
531
|
+
&:hover {
|
|
532
|
+
border-top: 2px solid $color-textunderline;
|
|
533
|
+
border-bottom: 2px solid $color-textunderline;
|
|
518
534
|
}
|
|
519
535
|
}
|
|
520
536
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: henry-jekyll
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kaushik Gopal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -144,6 +144,7 @@ files:
|
|
|
144
144
|
- _layouts/index.html
|
|
145
145
|
- _layouts/page.html
|
|
146
146
|
- _layouts/post.html
|
|
147
|
+
- _layouts/raw.html
|
|
147
148
|
- _sass/_initialize.scss
|
|
148
149
|
- _sass/base.scss
|
|
149
150
|
- _sass/code.css
|