minimaless 0.0.11 → 0.0.12
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.
- checksums.yaml +4 -4
- data/_includes/contact-icons.html +12 -0
- data/_layouts/blog.html +12 -4
- data/_sass/minimaless/_layout.scss +13 -8
- 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: 2fb14c3cc8a1e56aed2d5d070c0285fb6775af34
|
|
4
|
+
data.tar.gz: 3c5bd83233e6b81b261eb81a01bbc22a495b2a4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f0c08a6c825fbbd2f0152406f2fcfe42ad0a91e3d6b88d0388b650e4aa53ba9895ef22a08e09c9323657b6f3a3d4d7cee7299d56c2daa8a3210fda4df682ed1
|
|
7
|
+
data.tar.gz: 105c15caacaea47b617684cd7b318e71da95eb0f045ee67dcf8fef558e26f17afa8b4042ac13363a86b513c8742d0501363508e78d013967efb901f89e2b93a1
|
|
@@ -18,6 +18,12 @@
|
|
|
18
18
|
</li>
|
|
19
19
|
{% endif %}
|
|
20
20
|
|
|
21
|
+
{% if site.stackoverflow_username %}
|
|
22
|
+
<li>
|
|
23
|
+
<a href="https://stackoverflow.com/story/{{ site.stackoverflow_username }}" target="_blank"><i class="icon fa fa-stack-overflow"></i></a>
|
|
24
|
+
</li>
|
|
25
|
+
{% endif %}
|
|
26
|
+
|
|
21
27
|
{% if site.codepen_username %}
|
|
22
28
|
<li>
|
|
23
29
|
<a href="https://codepen.io/{{ site.codepen_username }}" target="_blank"><i class="icon fa fa-codepen"></i></a>
|
|
@@ -60,6 +66,12 @@
|
|
|
60
66
|
</li>
|
|
61
67
|
{% endif %}
|
|
62
68
|
|
|
69
|
+
{% if site.paypal_username %}
|
|
70
|
+
<li>
|
|
71
|
+
<a href="https://www.paypal.me/{{ site.paypal_username }}/10" target="_blank"><i class="icon fa fa-paypal"></i></a>
|
|
72
|
+
</li>
|
|
73
|
+
{% endif %}
|
|
74
|
+
|
|
63
75
|
{% for file in site.static_files %}
|
|
64
76
|
{% if file.ext == 'asc' %}
|
|
65
77
|
<li>
|
data/_layouts/blog.html
CHANGED
|
@@ -27,15 +27,23 @@ layout: default
|
|
|
27
27
|
{% if paginator.total_pages != 1 %}
|
|
28
28
|
<div class="pagination">
|
|
29
29
|
{% if paginator.previous_page %}
|
|
30
|
-
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="previous"
|
|
30
|
+
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="previous">
|
|
31
|
+
<div><i class="fa fa-caret-left"></i></div>
|
|
32
|
+
</a>
|
|
31
33
|
{% else %}
|
|
32
|
-
<span class="previous disabled"
|
|
34
|
+
<span class="previous disabled">
|
|
35
|
+
<div><i class="fa fa-caret-left"></i></div>
|
|
36
|
+
</span>
|
|
33
37
|
{% endif %}
|
|
34
38
|
<span class="page-number ">{{ paginator.page }} / {{ paginator.total_pages }}</span>
|
|
35
39
|
{% if paginator.next_page %}
|
|
36
|
-
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="next"
|
|
40
|
+
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="next">
|
|
41
|
+
<div><i class="fa fa-caret-right"></i></div>
|
|
42
|
+
</a>
|
|
37
43
|
{% else %}
|
|
38
|
-
<span class="next disabled"
|
|
44
|
+
<span class="next disabled">
|
|
45
|
+
<div><i class="fa fa-caret-right"></i></div>
|
|
46
|
+
</span>
|
|
39
47
|
{% endif %}
|
|
40
48
|
</div>
|
|
41
49
|
{% endif %}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
&,
|
|
21
21
|
&:visited {
|
|
22
|
-
color: $
|
|
22
|
+
color: $text-color;
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
|
|
@@ -106,12 +106,20 @@
|
|
|
106
106
|
|
|
107
107
|
.pagination {
|
|
108
108
|
text-align: center;
|
|
109
|
-
margin: $spacing-unit
|
|
110
|
-
|
|
109
|
+
margin: $spacing-unit 0;
|
|
110
|
+
|
|
111
|
+
div {
|
|
112
|
+
display: inline-block;
|
|
113
|
+
width: 6px;
|
|
114
|
+
height: 100%;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
a:hover { text-decoration: none; }
|
|
111
118
|
|
|
112
119
|
& > a { color: $grey-color-dark; }
|
|
120
|
+
.disabled { color: $grey-color-light; }
|
|
113
121
|
|
|
114
|
-
.fa-
|
|
122
|
+
.fa-caret-left, .fa-caret-right { transform: translateY(2px); }
|
|
115
123
|
|
|
116
124
|
.page-number {
|
|
117
125
|
color: $grey-color !important;
|
|
@@ -126,8 +134,6 @@
|
|
|
126
134
|
.next {
|
|
127
135
|
margin-left: $spacing-unit;
|
|
128
136
|
}
|
|
129
|
-
|
|
130
|
-
.disabled > i { color: $grey-color-light; }
|
|
131
137
|
}
|
|
132
138
|
|
|
133
139
|
|
|
@@ -144,7 +150,7 @@
|
|
|
144
150
|
|
|
145
151
|
.contact-icons {
|
|
146
152
|
list-style: none;
|
|
147
|
-
margin:
|
|
153
|
+
margin: 0;
|
|
148
154
|
text-align: center;
|
|
149
155
|
|
|
150
156
|
li > a { border: 0; height: 100%; width: 100%; }
|
|
@@ -391,7 +397,6 @@
|
|
|
391
397
|
}
|
|
392
398
|
display: block;
|
|
393
399
|
border-bottom: 1px solid #eaecef;
|
|
394
|
-
padding-bottom: 0.3em;
|
|
395
400
|
}
|
|
396
401
|
|
|
397
402
|
h2 {
|
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.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- brettinternet
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|