test-GET-theme 0.1.0 → 0.1.1

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: 9ebb4ef23628f3c7bcc5d0e5903433df64c49cf9e23d98165271034a36cb841a
4
- data.tar.gz: c86872a4f068edb1d282ba875a18b82a0e2751b30174d20acec2c8e731cae79d
3
+ metadata.gz: 8264c6073e04655a980767db425b69af198bf83fa1565c372e8413599c88fea7
4
+ data.tar.gz: e3812353aed883d641d1d1988e57ffa5c8309e626c586df446cfc3e8dc72f978
5
5
  SHA512:
6
- metadata.gz: ef6b45efc6423072fb22e214e3fef4b4a117d7784e96c479da208df3bf22883a89469a7bc6616722bd69ec04cc0e1435ac9294a28caf04ae734b6b7cbe64f613
7
- data.tar.gz: bd8ba5be20851f1c628102cd2d9a253d541e072a04bd36d88b8a04430e38292e0f423af97c796beb7e56488097b02d5a5ba7f1deab49a736f2c37c4b987ca11e
6
+ metadata.gz: bed76bfabbebb154e41a01b8ecab71786911f5196e26b199a486c4c819b0d211875f3e52df77032f902613eb525a7e0f2c8a7bdea55a0a5c928c0bdb7c20eccd
7
+ data.tar.gz: 5c36828b5309083398e6d0a28d7e282eff7298734e77d01a2762793caeefa58003e708cbc14aff31b441fba156f92ff08756ff8aba970566c9907f317218a6a4
@@ -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>
data/_layouts/page.html CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  layout: default
3
3
  ---
4
-
4
+ <h1>wat</h1>
5
5
  {{ content }}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-GET-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ''
@@ -62,6 +62,7 @@ files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
64
  - _layouts/default.html
65
+ - _layouts/home.html
65
66
  - _layouts/page.html
66
67
  - _layouts/post.html
67
68
  homepage: ''