jekyll-bland 0.1.0 → 1.0.0

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
  SHA1:
3
- metadata.gz: bb9e7d2457d9fe51776ba08c495b9d55897a46d3
4
- data.tar.gz: 44d026ca8c88831d47df487c92829987771fd0aa
3
+ metadata.gz: a5c88664f50c858662ae0205765c282090190bb0
4
+ data.tar.gz: 3e016b41ed121306cdea32de971a2eda24739c4c
5
5
  SHA512:
6
- metadata.gz: 329ba6d386d45ad4ae7d83567726e4268592514267147fbb0cb1ddfee87ef56cbd4093a7c9b315f7440b41b4cacca31850892ee7310b68ac6f28c157752c99e8
7
- data.tar.gz: a49af8a61ebcf036404d72c1484d116c9341c8b2a34a40fafb834da892c0d2be05745a4ce77d94066b28b89f32d88144b642363f6f6fc9ecf5f3a120947ca7c3
6
+ metadata.gz: 94b5c936a55f7b23dbcbbba7551cc1bfa168a0119dace1eb48b4860d55358c565a4bc3cd7bb2dc97055d241e1a5e3c1c55deebcf7dd22dd8a849d8d933a9f714
7
+ data.tar.gz: d7323c580e89659d7d02b1d57cb8c5bc1a2e87d038af11827c97fc6986293455d19e3d7a76046ba8c52a66bac87db1afd7a4fa577d724acc2c2876ce437136f9
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # jekyll-bland
2
2
 
3
3
  [![Build Status](https://travis-ci.org/daviesjamie/jekyll-bland.svg?branch=master)](https://travis-ci.org/daviesjamie/jekyll-bland)
4
+ [![Gem Version](https://badge.fury.io/rb/jekyll-bland.svg)](https://badge.fury.io/rb/jekyll-bland)
4
5
 
5
6
  *bland* is yet another "minimal" theme for Jekyll: it is very plain-looking by design, with no frills, embellishment or fancy fandangles to be found.
6
7
 
@@ -0,0 +1 @@
1
+ <a href="{{ "/feed.xml" | relative_url }}">Subscribe</a>
@@ -7,6 +7,6 @@
7
7
  {% endif %}
8
8
  &middot; {{ site.time | date: '%Y' }}
9
9
  <br>
10
- <a href="{{ "/feed.xml" | relative_url }}">Subscribe</a>
10
+ {% include footer-links.html %}
11
11
  </p>
12
12
  </footer>
@@ -3,14 +3,6 @@
3
3
  <a href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
4
4
  </h3>
5
5
  <nav class="masthead-nav">
6
- <ul>
7
- {% for page in site.pages %}
8
- {% if page.title %}
9
- {% unless page.nav_exclude %}
10
- <li><a href="{{ page.url | relative_url }}">{{ page.title | escape }}</a></li>
11
- {% endunless %}
12
- {% endif %}
13
- {% endfor %}
14
- </ul>
6
+ {% include navbar-links.html %}
15
7
  </nav>
16
8
  </header>
@@ -0,0 +1,13 @@
1
+ <ul>
2
+ {% for page in site.pages %}
3
+ {% if page.title %}
4
+ {% unless page.nav_exclude %}
5
+ <li>
6
+ <a href="{{ page.url | relative_url }}">
7
+ {{ page.title | escape }}
8
+ </a>
9
+ </li>
10
+ {% endunless %}
11
+ {% endif %}
12
+ {% endfor %}
13
+ </ul>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-bland
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jamie Davies
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-11 00:00:00.000000000 Z
11
+ date: 2017-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -61,9 +61,11 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - LICENSE.txt
63
63
  - README.md
64
+ - _includes/footer-links.html
64
65
  - _includes/footer.html
65
66
  - _includes/head.html
66
67
  - _includes/header.html
68
+ - _includes/navbar-links.html
67
69
  - _layouts/default.html
68
70
  - _layouts/listing.html
69
71
  - _layouts/page.html