names_are_hard 0.2.10 → 0.2.11
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/LICENSE.txt +0 -0
- data/README.md +0 -0
- data/_includes/footer.html +0 -0
- data/_includes/head.html +0 -0
- data/_includes/header.html +0 -3
- data/_includes/post_list.html +13 -8
- data/_includes/simple_page_head.html +0 -0
- data/_layouts/boring.html +0 -0
- data/_layouts/home.html +0 -0
- data/_layouts/page.html +0 -0
- data/_layouts/post.html +0 -0
- data/_sass/names_are_hard.scss +23 -14
- data/_sass/reset.scss +0 -0
- data/_sass/syntax.scss +0 -0
- data/assets/main.scss +0 -0
- metadata +5 -7
- data/_includes/project_list.html +0 -26
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '058008645c2a0f44311992fcef0ab573d3e88a8769df25de40fa90bdaea6b49e'
|
|
4
|
+
data.tar.gz: 4545f391169b0f17d5b8c9027c6ae0752febd069fe5ae1432e7f83a603877d1a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddc6ebf1a9a8381f7df812e9624d3f1b238c2383d97e107097ab8561f0033e6f7b05cb24431cafee6a5999e04bd0824e1b65944dc519fac011297006a7d0ab4a
|
|
7
|
+
data.tar.gz: a6c77055dba14b7b3717e64c4574d2585d922e48215996905eb85813740929d87199b4cc3c8ec2cf4e83af36c6939a705faf6c762c1e85243d21cdb13ef4d238
|
data/LICENSE.txt
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
File without changes
|
data/_includes/footer.html
CHANGED
|
File without changes
|
data/_includes/head.html
CHANGED
|
File without changes
|
data/_includes/header.html
CHANGED
data/_includes/post_list.html
CHANGED
|
@@ -1,18 +1,23 @@
|
|
|
1
1
|
<div class="post-list">
|
|
2
2
|
{% for post in site.posts %}
|
|
3
|
-
{% unless post.tags contains "project" %}
|
|
4
3
|
<div class="post">
|
|
5
4
|
<a href="{{ post.url }}">
|
|
6
5
|
<h2 class="post-title">
|
|
7
6
|
{{ post.title }}
|
|
7
|
+
<div class="post-date">{{ post.date | date: "%B %Y" }}</div>
|
|
8
8
|
</h2>
|
|
9
|
-
<div class="post-date">{{ post.date | date_to_long_string }}</div>
|
|
10
|
-
<br />
|
|
11
|
-
<div class="post-description">
|
|
12
|
-
{{ post.description | strip_html | truncatewords:50 }}
|
|
13
|
-
</div>
|
|
14
9
|
</a>
|
|
10
|
+
{% if post.github_url %}
|
|
11
|
+
<a href="{{ post.github_url }}" class="project-gh">
|
|
12
|
+
{{ post.github_short }}
|
|
13
|
+
</a>
|
|
14
|
+
{% endif %}
|
|
15
|
+
<div class="post-description">
|
|
16
|
+
{{ post.description | strip_html | truncatewords:50 }}
|
|
17
|
+
</div>
|
|
18
|
+
{% if post.image %}
|
|
19
|
+
<img class="post-image" alt="Image of {{ post.title }}" src="{{ site.baseurl }}{{ post.image }}" />
|
|
20
|
+
{% endif %}
|
|
15
21
|
</div>
|
|
16
|
-
{% endunless %}
|
|
17
22
|
{% endfor %}
|
|
18
|
-
</div>
|
|
23
|
+
</div>
|
|
File without changes
|
data/_layouts/boring.html
CHANGED
|
File without changes
|
data/_layouts/home.html
CHANGED
|
File without changes
|
data/_layouts/page.html
CHANGED
|
File without changes
|
data/_layouts/post.html
CHANGED
|
File without changes
|
data/_sass/names_are_hard.scss
CHANGED
|
@@ -172,12 +172,20 @@ a {
|
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
174
|
|
|
175
|
+
.project-date,
|
|
176
|
+
.post-date {
|
|
177
|
+
font-size: medium;
|
|
178
|
+
margin-left: 5pt;
|
|
179
|
+
display: inline;
|
|
180
|
+
color: darken($foreground-color, 30%);
|
|
181
|
+
}
|
|
182
|
+
|
|
175
183
|
.post-list a,
|
|
176
184
|
.project-list a {
|
|
177
185
|
|
|
178
186
|
color: darken($foreground-color, 30%);
|
|
179
187
|
|
|
180
|
-
.project-title
|
|
188
|
+
.project-title, .post-title
|
|
181
189
|
{
|
|
182
190
|
color: $foreground-color;
|
|
183
191
|
}
|
|
@@ -186,7 +194,8 @@ a {
|
|
|
186
194
|
|
|
187
195
|
&:hover {
|
|
188
196
|
color: $highlight-color;
|
|
189
|
-
.project-title
|
|
197
|
+
.project-title, .post-title,
|
|
198
|
+
.post-date, .project-date
|
|
190
199
|
{
|
|
191
200
|
text-decoration: underline;
|
|
192
201
|
color: $highlight-color;
|
|
@@ -201,19 +210,13 @@ a {
|
|
|
201
210
|
margin-bottom: 25pt;
|
|
202
211
|
}
|
|
203
212
|
|
|
204
|
-
.project-date,
|
|
205
|
-
.post-date {
|
|
206
|
-
margin-left: 5pt;
|
|
207
|
-
display: inline;
|
|
208
|
-
color: darken($foreground-color, 30%);
|
|
209
|
-
}
|
|
210
|
-
|
|
211
213
|
.project-gh::before {
|
|
212
214
|
content: "GitHub: ";
|
|
213
215
|
}
|
|
214
216
|
|
|
215
217
|
.project-gh {
|
|
216
|
-
|
|
218
|
+
display: block;
|
|
219
|
+
padding-top: 4pt;
|
|
217
220
|
color: darken($color: $foreground-color, $amount: 30%);
|
|
218
221
|
|
|
219
222
|
&:hover
|
|
@@ -225,16 +228,20 @@ a {
|
|
|
225
228
|
.project-description,
|
|
226
229
|
.post-description {
|
|
227
230
|
display: inline-block;
|
|
228
|
-
padding-top:
|
|
231
|
+
padding-top: 8pt;
|
|
232
|
+
padding-bottom: 10px;
|
|
233
|
+
border-bottom: 1px dashed darken($color: $foreground-color, $amount: 30%);
|
|
229
234
|
}
|
|
230
235
|
|
|
231
236
|
.page-gh {
|
|
232
237
|
font-size: 15pt;
|
|
233
238
|
}
|
|
234
239
|
|
|
235
|
-
.project-image
|
|
240
|
+
.project-image,
|
|
241
|
+
.post-image
|
|
236
242
|
{
|
|
237
243
|
max-height: 300px;
|
|
244
|
+
border: 0.5px dashed darken($color: $foreground-color, $amount: 30%);
|
|
238
245
|
}
|
|
239
246
|
|
|
240
247
|
.title-wrapper {
|
|
@@ -459,12 +466,14 @@ table {
|
|
|
459
466
|
max-width: 95%;
|
|
460
467
|
}
|
|
461
468
|
|
|
462
|
-
.project
|
|
469
|
+
.project,
|
|
470
|
+
.post
|
|
463
471
|
{
|
|
464
|
-
.project-title, .page-title
|
|
472
|
+
.project-title, .page-title, .post-title
|
|
465
473
|
{
|
|
466
474
|
display: block;
|
|
467
475
|
margin-bottom: 2pt;
|
|
476
|
+
color: $foreground-color;
|
|
468
477
|
}
|
|
469
478
|
.project-date, .project-gh, .project-description
|
|
470
479
|
{
|
data/_sass/reset.scss
CHANGED
|
File without changes
|
data/_sass/syntax.scss
CHANGED
|
File without changes
|
data/assets/main.scss
CHANGED
|
File without changes
|
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.2.
|
|
4
|
+
version: 0.2.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Johnston
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 2.1.4
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: 2.1.4
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: rake
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -65,7 +65,6 @@ files:
|
|
|
65
65
|
- _includes/head.html
|
|
66
66
|
- _includes/header.html
|
|
67
67
|
- _includes/post_list.html
|
|
68
|
-
- _includes/project_list.html
|
|
69
68
|
- _includes/simple_page_head.html
|
|
70
69
|
- _layouts/boring.html
|
|
71
70
|
- _layouts/home.html
|
|
@@ -94,8 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
94
93
|
- !ruby/object:Gem::Version
|
|
95
94
|
version: '0'
|
|
96
95
|
requirements: []
|
|
97
|
-
|
|
98
|
-
rubygems_version: 2.7.6.2
|
|
96
|
+
rubygems_version: 3.1.2
|
|
99
97
|
signing_key:
|
|
100
98
|
specification_version: 4
|
|
101
99
|
summary: This is a theme used for the website of github user Chris-Johnston.
|
data/_includes/project_list.html
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
<div class="project-list">
|
|
2
|
-
{% for post in site.posts %}
|
|
3
|
-
{% if post.tags contains "project" %}
|
|
4
|
-
<div class="project">
|
|
5
|
-
<a href="{{ post.url }}">
|
|
6
|
-
<h2 class="project-title">
|
|
7
|
-
{{ post.title }}
|
|
8
|
-
</h2>
|
|
9
|
-
<div class="project-date">{{ post.date | date: "%B %Y" }}</div>
|
|
10
|
-
</a>
|
|
11
|
-
{% if post.github_url %}
|
|
12
|
-
<a href="{{ post.github_url }}" class="project-gh">
|
|
13
|
-
{{ post.github_short }}
|
|
14
|
-
</a>
|
|
15
|
-
{% endif %}
|
|
16
|
-
<br />
|
|
17
|
-
<div class="project-description">
|
|
18
|
-
{{ post.description | strip_html | truncatewords:50 }}
|
|
19
|
-
</div>
|
|
20
|
-
{% if post.image %}
|
|
21
|
-
<img class="project-image" alt="Image of {{ post.title }}" src="{{ site.baseurl }}{{ post.image }}" />
|
|
22
|
-
{% endif %}
|
|
23
|
-
</div>
|
|
24
|
-
{% endif %}
|
|
25
|
-
{% endfor %}
|
|
26
|
-
</div>
|