names_are_hard 0.1.6 → 0.1.7
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/header_posts.html +6 -20
- data/_sass/names_are_hard.scss +3 -6
- 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: 492a4547019435624239e7d64db5f5ea97be2ed4
|
|
4
|
+
data.tar.gz: 4aa2cf0461002bc6c76be1bbe6cd5db67d77a6a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 98ff2ba4485f00847092eb611a14e0479f7ce237a22f8f203293b439e9a05679dd9e3729db6b3fa7b289de5d3fecaddbdd58c0ccd9db848a4eee69fd2e932daf
|
|
7
|
+
data.tar.gz: 03370166bf1e7605cdde9f06e16033c4720f328993c44d3a7afceb3576efd638b0a2c3de62e974fcfb58b12d99034b9d0b30161caee7f0a715b9665a976919e5
|
data/_includes/header_posts.html
CHANGED
|
@@ -7,32 +7,18 @@
|
|
|
7
7
|
<!-- include some recent posts underneath -->
|
|
8
8
|
|
|
9
9
|
<div class="post-wrapper">
|
|
10
|
-
|
|
10
|
+
{% if site.posts.size > 0 %}
|
|
11
11
|
<h2 class="post-list-heading">Recent:</h2>
|
|
12
12
|
<ul class="post-list">
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<li class="post-element">
|
|
17
|
-
<a class="post-link" >
|
|
18
|
-
AAAAAAAAAAAAAAAAAAAAAAAAAAA
|
|
19
|
-
</a>
|
|
20
|
-
</li>
|
|
21
|
-
|
|
13
|
+
{% for post in site.posts limit:3 %}
|
|
22
14
|
<li class="post-element">
|
|
23
|
-
<a class="post-link" >
|
|
24
|
-
|
|
15
|
+
<a class="post-link" href="{{ post.url | relative_url }}">
|
|
16
|
+
{{ post.title }}
|
|
25
17
|
</a>
|
|
26
18
|
</li>
|
|
27
|
-
|
|
28
|
-
<li class="post-element">
|
|
29
|
-
<a class="post-link" >
|
|
30
|
-
AEIOU AEIOU AEIOU AEIOU AEIOU??!
|
|
31
|
-
</a>
|
|
32
|
-
</li>
|
|
33
|
-
|
|
19
|
+
{% endfor %}
|
|
34
20
|
</ul>
|
|
35
|
-
|
|
21
|
+
{% endif %}
|
|
36
22
|
</div>
|
|
37
23
|
|
|
38
24
|
</header>
|
data/_sass/names_are_hard.scss
CHANGED
|
@@ -22,11 +22,6 @@ $body-li-size: 12pt;
|
|
|
22
22
|
|
|
23
23
|
$line-style: 0.5px dotted $foreground-color;
|
|
24
24
|
|
|
25
|
-
html
|
|
26
|
-
{
|
|
27
|
-
overflow: hidden;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
25
|
body
|
|
31
26
|
{
|
|
32
27
|
color: $foreground-color;
|
|
@@ -166,7 +161,7 @@ body li
|
|
|
166
161
|
{
|
|
167
162
|
height: 10pt;
|
|
168
163
|
text-align: center;
|
|
169
|
-
width:
|
|
164
|
+
width: auto;
|
|
170
165
|
padding: 5pt;
|
|
171
166
|
}
|
|
172
167
|
|
|
@@ -263,6 +258,8 @@ code
|
|
|
263
258
|
|
|
264
259
|
padding-left: 3px;
|
|
265
260
|
padding-right: 3px;
|
|
261
|
+
|
|
262
|
+
overflow: scroll;
|
|
266
263
|
}
|
|
267
264
|
|
|
268
265
|
pre.highlight > code
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: names_are_hard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Johnston
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-04-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|