minimaless 0.0.9 → 0.0.10

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: 44a169ab5d09b6585d68cc61853bab7dac65b6a1
4
- data.tar.gz: 0cdd98d3aaec5970232913a130ec4fe29ead4223
3
+ metadata.gz: ad5e1b94d0b4d3995f58ec37f982cf6f6b34bd82
4
+ data.tar.gz: 874cca495141bfdc7f8e13a215dada66a4687c85
5
5
  SHA512:
6
- metadata.gz: 7c4bf82330e6ee55c3c5a8300007bd40c0afac00a1bca09d8387721302658a4f679228922fc9e8755ec9a79fefae9d6591c079c3906df7262326a85dd22bceae
7
- data.tar.gz: ecd0761ab646be4b4a798c4616b89963f31b7a5539edc55a8251439851cf6247629458bb4db64ec015a6edcd2242d800604f2dde1a86b8725aa8be1e81e0ba78
6
+ metadata.gz: e34075783ff37525d8dd7e5e816db0cd20205031ca884fb5d9cc8a4e8e734e8011493570a17cdcd8afb604ff82cb39b2044e702d005eb4264d325f5a099a33f8
7
+ data.tar.gz: f5edeec1ce664210dea887d49b88a3f65a33ac9b7acf73950592f33c113927a529f5fb69cbffbdf7eaacd501b17ec03ea586fed9c90f98912611950bea6c3d56
data/README.md CHANGED
@@ -2,11 +2,9 @@
2
2
 
3
3
  It's like [minima](https://jekyll.github.io/minima/), but less. ✨
4
4
 
5
- ![minimaless screenshot preview](/screenshot.png)
6
-
7
- See the [demo site](https://brettinternet.github.io/minimaless/). Follow these steps to [setup](/setup.md) your own Jekyll site with this theme.
5
+ See the [demo site](https://brettinternet.github.io/minimaless/). Follow these steps to [setup](/_pages/setup.md) your own Jekyll site with this theme.
8
6
 
9
- The gem is found [here](https://rubygems.org/gems/minimaless).
7
+ ![minimaless screenshot preview](/screenshot.png)
10
8
 
11
9
  ## Installation
12
10
 
@@ -16,6 +14,8 @@ Add this line to your Jekyll site's Gemfile:
16
14
  gem "minimaless"
17
15
  ```
18
16
 
17
+ If you're interested, the gem is found [here](https://rubygems.org/gems/minimaless).
18
+
19
19
  And add this line to your Jekyll site:
20
20
 
21
21
  ```yaml
data/_layouts/blog.html CHANGED
@@ -24,19 +24,21 @@ layout: default
24
24
  {% endfor %}
25
25
  </ul>
26
26
 
27
- <div class="pagination">
28
- {% if paginator.previous_page %}
29
- <a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="previous"><i class="fa fa-arrow-circle-left"></i></a>
30
- {% else %}
31
- <span class="previous disabled"><i class="fa fa-arrow-circle-o-left"></i></span>
32
- {% endif %}
33
- <span class="page-number ">{{ paginator.page }} / {{ paginator.total_pages }}</span>
34
- {% if paginator.next_page %}
35
- <a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="next"><i class="fa fa-arrow-circle-right"></i></a>
36
- {% else %}
37
- <span class="next disabled"><i class="fa fa-arrow-circle-o-right"></i></span>
38
- {% endif %}
39
- </div>
27
+ {% if paginator.total_pages != 1 %}
28
+ <div class="pagination">
29
+ {% if paginator.previous_page %}
30
+ <a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="previous"><i class="fa fa-long-arrow-left"></i></a>
31
+ {% else %}
32
+ <span class="previous disabled"><i class="fa fa-long-arrow-left"></i></span>
33
+ {% endif %}
34
+ <span class="page-number ">{{ paginator.page }} / {{ paginator.total_pages }}</span>
35
+ {% if paginator.next_page %}
36
+ <a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="next"><i class="fa fa-long-arrow-right"></i></a>
37
+ {% else %}
38
+ <span class="next disabled"><i class="fa fa-long-arrow-right"></i></span>
39
+ {% endif %}
40
+ </div>
41
+ {% endif %}
40
42
 
41
43
 
42
44
  </div>
data/_layouts/post.html CHANGED
@@ -21,9 +21,11 @@ layout: default
21
21
 
22
22
  {% if page.tags != '' %}
23
23
  <div class="tags">
24
+ <i class="fa fa-tags"></i>
24
25
  {% for tag in page.tags %}
25
26
  {% assign count = site.tags[tag].size %}
26
- <a href="#{{ tag }}"><span class="tag">{{ tag | escape }}{% if count != 1 %}<span class="tag-count">({{ count }})</span>{% endif %}</span></a>
27
+ <a href="#{{ tag }}">
28
+ <span class="tag">{{ tag | escape }}{% if count != 1 %}<span class="tag-count">({{ count }})</span>{% endif %}</span></a>
27
29
  {% endfor %}
28
30
  </div>
29
31
  {% endif %}
@@ -107,9 +107,16 @@
107
107
  .pagination {
108
108
  text-align: center;
109
109
  margin: $spacing-unit * 2 0;
110
- color: $grey-color;
110
+ // color: $grey-color-light;
111
+
112
+ & > a { color: $grey-color-dark; }
111
113
 
112
- // .page_number
114
+ .fa-long-arrow-left, .fa-long-arrow-right { transform: translateY(3px); }
115
+
116
+ .page-number {
117
+ color: $grey-color !important;
118
+ @include relative-font-size(.8);
119
+ }
113
120
 
114
121
  .previous, .next { @include relative-font-size(1.25); }
115
122
  .previous {
@@ -226,7 +233,7 @@
226
233
 
227
234
  .made-by {
228
235
  font-size: .85em;
229
- color: #FFF;
236
+ color: #AAA;
230
237
  vertical-align: middle;
231
238
  -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
232
239
  -moz-animation: fadein 3s; /* Firefox < 16 */
@@ -234,7 +241,7 @@
234
241
  -o-animation: fadein 3s; /* Opera < 12.1 */
235
242
  animation: fadein 3s;
236
243
 
237
- a { color: #CCC; }
244
+ a { color: #EEE; }
238
245
 
239
246
  .heart {
240
247
  color: red;
@@ -323,8 +330,6 @@
323
330
 
324
331
 
325
332
 
326
-
327
-
328
333
  /**
329
334
  * Links page
330
335
  */
@@ -401,13 +406,16 @@
401
406
  color: lighten($grey-color-dark, 10%);
402
407
  }
403
408
 
409
+ .tags .fa-tags { color: $grey-color; }
410
+
404
411
  .tag {
405
412
  @include relative-font-size(.8);
406
- color: #FFF;
407
- background-color: $grey-color;
413
+ color: $text-color;
414
+ background-color: $grey-color-light;
408
415
  font-weight: normal;
409
- padding: 4px 7px;
416
+ padding: 2px 5px;
410
417
  &:hover {
418
+ color: $grey-color-light;
411
419
  background-color: $grey-color-dark;
412
420
  text-decoration: underline;
413
421
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimaless
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - brettinternet
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-20 00:00:00.000000000 Z
11
+ date: 2017-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll