jekyll-theme-miniplex 0.12.1 → 0.12.2

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -1
  3. metadata +1 -2
  4. data/_layouts/overview.html +0 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5f1ab9dc8b592c92d3965aa0fe9344c3e375c14f01f973f80b9cdf33a079e767
4
- data.tar.gz: 1723b9f2f7c59944209952462163581d941ed29b4b88e80814230fc8031b13ce
3
+ metadata.gz: fdb213fd26d77dec337fb31f96e00a35acc29eff34d83afa69b2a58c2a6278c9
4
+ data.tar.gz: bbbae40198d08388a7b44220edbaadca9204f2726830cfa999105a160f7d2050
5
5
  SHA512:
6
- metadata.gz: fd276a2608f125119bac29acbb6164875fe2562eeb8459d41bc574711c0f7b9de4fe3111011ded081c7e2f9472b5b7e617c69f5cb12cb1ae7483e99c0c26d130
7
- data.tar.gz: a7269b37cf85927bbd95ca61e3c361156d238498ebb6e1f08d48f341efcac27144dee08f58699ed1dd0a4d85f4ec30ff6d2ebb9b897c948c4c1668faa1c2ef2e
6
+ metadata.gz: 76fee67ca04777c78b8306f3b89162cf0f5c2c5f57cfe00d35cd06964cfea6fda1920871ceceacf69f56a705b880f4482c6f48427388faf783296365976c5b84
7
+ data.tar.gz: 30f023e788e2b95b30f40e61e0fc5b1f091dd9ffdbf6a96e10978dc0924999a177b1687fcc79f633ef8dd922a0e949bc49b4ac98e6c35e5a88154dd77642a35a
data/README.md CHANGED
@@ -69,7 +69,10 @@ Execute...
69
69
 
70
70
  ### Layouts
71
71
 
72
- There are two layouts: `page` and `post`. They are almost identical, except for the `post` layout that shows the post's date and author below the title.
72
+ There are 2 layouts:
73
+
74
+ - `page`: A clean layout with a larger column at the right for text, and a narrower left-hand navigation column.
75
+ - `post`: Visually identical to the `page` layout, but shows the post's date and author below the title.
73
76
 
74
77
  ### Configuration options
75
78
 
@@ -101,6 +104,7 @@ Optionally, put any of the following files into the `_includes` folder to overri
101
104
 
102
105
  Most recent at the top.
103
106
 
107
+ - [X] Removed `overview` layout because it wasn't really a layout.
104
108
  - [X] Tests & fixes for mobile navigation. Issues:
105
109
  - [X] Chrome on Android: Navigation bar position (floating or hidden)
106
110
  - [X] Missing shadow on mobile nav
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-miniplex
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Timo Würsch
@@ -53,7 +53,6 @@ files:
53
53
  - _includes/navigation_desktop.html
54
54
  - _includes/navigation_mobile.html
55
55
  - _layouts/default.html
56
- - _layouts/overview.html
57
56
  - _layouts/page.html
58
57
  - _layouts/post.html
59
58
  - _sass/jekyll-theme-miniplex.sass
@@ -1,11 +0,0 @@
1
- ---
2
- layout: default
3
- ---
4
- {{ content }}
5
- <ul>
6
- {% for p in site.posts %}
7
- <li>
8
- <a href="{{ p.url }}">{{ p.title }}</a>
9
- </li>
10
- {% endfor %}
11
- </ul>