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 +4 -4
- data/README.md +4 -4
- data/_layouts/blog.html +15 -13
- data/_layouts/post.html +3 -1
- data/_sass/minimaless/_layout.scss +17 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad5e1b94d0b4d3995f58ec37f982cf6f6b34bd82
|
4
|
+
data.tar.gz: 874cca495141bfdc7f8e13a215dada66a4687c85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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
|
-
|
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
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
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 }}"
|
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
|
-
|
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: #
|
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: #
|
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:
|
407
|
-
background-color: $grey-color;
|
413
|
+
color: $text-color;
|
414
|
+
background-color: $grey-color-light;
|
408
415
|
font-weight: normal;
|
409
|
-
padding:
|
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.
|
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-
|
11
|
+
date: 2017-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|