instructional-blog 0.1.2 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c57d0094220f2c4b332a491ad67cdb4f049136a7d0f19ba7d0b03f99506576e2
4
- data.tar.gz: f3c5da38e9291e957ef1d90e356f51961010a731af07b5d25eae60c3f4a32f48
3
+ metadata.gz: 696de6e2031af4da247e092029b32721e240c2404cdfc316201d7529694f5bd1
4
+ data.tar.gz: 77222b45519ceaa0bce240ccee87fddf007373d83c4e786773440eee8343a064
5
5
  SHA512:
6
- metadata.gz: ade821c903ca62ab378e179ec22839e61304bab0fcf96c1115844704a70e5b2d4acb689bee1751b46e7f29b278f9457956011a33061ed5c95a3304ea7a75104d
7
- data.tar.gz: de66448dd776f7b7449203fd8b2da0787dea935b07887a42b51acbcf096f41a9b2c56dd4965cfd9c81064ecfc54cdaf05c07cf8dbf260faac2f9dc34328f1c30
6
+ metadata.gz: 2f7b4c19257313ee19c01a76c7cd61368011090514798eae6e16bfcf1630aac42533d4407bf6ac78a9ecead9095c51daf0d7d389cfba332cdea960cf6e930b95
7
+ data.tar.gz: 963bfef48e507962b201d8cf5ba09bf990a9ce50524da060cd00e4042f2572b550bf4805cffdcf0ce96e8440d684e36694a2ff079a8815d7f8e26121ff1b0f91
File without changes
File without changes
@@ -0,0 +1,34 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="home">
6
+ {%- if page.title -%}
7
+ <h1 class="page-heading">{{ page.title }}</h1>
8
+ {%- endif -%}
9
+
10
+ {{ content }}
11
+
12
+ {%- if site.posts.size > 0 -%}
13
+ <h2 class="post-list-heading">{{ page.list_title | default: "Posts" }}</h2>
14
+ <ul class="post-list">
15
+ {%- for post in site.posts -%}
16
+ <li>
17
+ {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
18
+ <span class="post-meta">{{ post.date | date: date_format }}</span>
19
+ <h3>
20
+ <a class="post-link" href="{{ post.url | relative_url }}">
21
+ {{ post.title | escape }}
22
+ </a>
23
+ </h3>
24
+ {%- if site.show_excerpts -%}
25
+ {{ post.excerpt }}
26
+ {%- endif -%}
27
+ </li>
28
+ {%- endfor -%}
29
+ </ul>
30
+
31
+ <!-- <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p> -->
32
+ {%- endif -%}
33
+
34
+ </div>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: instructional-blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - scshafe
@@ -34,7 +34,10 @@ files:
34
34
  - LICENSE.txt
35
35
  - README.md
36
36
  - _config.yml
37
+ - _layouts/about.html
37
38
  - _layouts/default.html
39
+ - _layouts/hidden.html
40
+ - _layouts/home.html
38
41
  - _layouts/post.html
39
42
  - _layouts/series.html
40
43
  - _layouts/toc.html