neeshtheme 0.1.1 → 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: 23315bce916ff99272ec9b0b89c6ffd7b938b9ee7c861bc646e26c2fcffc3cf5
4
- data.tar.gz: 0f5b6378b3a907a1a4cf1314ec06a138c2d8e2e157136f247fcb2da8cb5e979a
3
+ metadata.gz: f2b10a34951cea8cf7e858a7e3be5e725ca8c9ae74b57d221af88f82b13470d2
4
+ data.tar.gz: a7a26bc6c3d36656df2c426804af98f2a0470750110236d6bf59ca3e9faf34c9
5
5
  SHA512:
6
- metadata.gz: 6cb4c64653fc4ca4b7043e24b97872f34c214f4c7273f05288fe1c92c3f4efb0b59aaf3cf63ce09c6b8ee05b122335f280e8e610ac46a0695ae49974c41e31a1
7
- data.tar.gz: e543601b4c96781385dc56cbb4c70c493516cf9412aeac409b50c0a2c162fab449eb5d52621f68c642acef8fecd42701e6cd5286399a2bb84eadcbb25133b9bd
6
+ metadata.gz: 27bd00e271b3b33902e9087a404ff20f64674f1c5bee417cfa2b30fcb0d0e408cd45f8385f8d8d3e93577e9283554104876e1f2f71ab98184e55b8517fd75cad
7
+ data.tar.gz: aebd31664daabf010e0f090dfc1a6cbb58efc4176f9c2f33f25b4159bd0a4fe79982ef28bacac85545878b9d65b1e1171b853a7dc6e1c7da6f45937a4dac091e
@@ -1 +1,12 @@
1
- {{ content }}
1
+ <!DOCTYPE html>
2
+ <html>
3
+ {%- include head.html -%}
4
+ <body>
5
+ {%- include nav.html -%}
6
+ <main class="page-content">
7
+ <div class="wrapper">
8
+ {{ content }}
9
+ </div>
10
+ </main>
11
+ </body>
12
+ </html>
@@ -0,0 +1,32 @@
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
+ {%- endif -%}
31
+
32
+ </div>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: neeshtheme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - MisterMjir
@@ -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: https://neeshtales.github.io