names_are_hard 0.2.12 → 0.2.13
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 -0
- data/_includes/post_list.html +10 -19
- 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 +36 -25
- data/_sass/reset.scss +0 -0
- data/_sass/syntax.scss +0 -0
- data/assets/main.scss +0 -0
- metadata +10 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5a7a099a8556d1fa427e4a45b9d6fe79c42af6edb5400f4240297d80e5a136d
|
|
4
|
+
data.tar.gz: eeb28d744155e276db648d349adadc72b0d2103007d62f9c91c66582bd450ea2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab76be37801f477eb0ebc4fb8fa78315f01c311dca04c4e84abf2fa55941c77fbacd56df3336684bc5b47836591007757c4337ff17aa09a7cb093ed08fed6ff7
|
|
7
|
+
data.tar.gz: 67628470a3e5710c89e94e7484f9adf274a53d99c81438b3c8e95873c256e41f652ef45aeba12c31d93b4bece5c28271944eba56bf30eb7e2ade3f36d802aac8
|
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
|
File without changes
|
data/_includes/post_list.html
CHANGED
|
@@ -1,23 +1,14 @@
|
|
|
1
|
-
<
|
|
1
|
+
<ul class="post-list">
|
|
2
2
|
{% for post in site.posts %}
|
|
3
|
-
<
|
|
3
|
+
<li>
|
|
4
4
|
<a href="{{ post.url }}">
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
<span class="post-date">{{ post.date | date: "%b %d %Y" }}</span>
|
|
6
|
+
<span class="post-title">{{ post.title }}</span>
|
|
7
|
+
<br/>
|
|
8
|
+
<span class="post-description">
|
|
9
|
+
{{ post.description | strip_html | truncatewords:50 }}
|
|
10
|
+
</span>
|
|
9
11
|
</a>
|
|
10
|
-
|
|
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 %}
|
|
21
|
-
</div>
|
|
12
|
+
</li>
|
|
22
13
|
{% endfor %}
|
|
23
|
-
</
|
|
14
|
+
</ul>
|
|
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
|
@@ -10,12 +10,12 @@ $font-main: 'Roboto Condensed', sans-serif !important;
|
|
|
10
10
|
$font-mono: 'Roboto Mono', monospace;
|
|
11
11
|
|
|
12
12
|
// colors
|
|
13
|
-
$background-color: #
|
|
14
|
-
$text-background-color: #
|
|
13
|
+
$background-color: #b7d3bb !default;
|
|
14
|
+
$text-background-color: #c2d8ce;
|
|
15
15
|
$code-background-color: #D9D9D9;
|
|
16
16
|
$code-foreground-color: black;
|
|
17
|
-
$foreground-color: #
|
|
18
|
-
$highlight-color: #
|
|
17
|
+
$foreground-color: #1d2a24 !default;
|
|
18
|
+
$highlight-color: #58806e;
|
|
19
19
|
|
|
20
20
|
// fonts, only the body
|
|
21
21
|
$body-font-size: 12pt !default;
|
|
@@ -179,25 +179,35 @@ a {
|
|
|
179
179
|
color: darken($foreground-color, 30%);
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
.post-list
|
|
183
|
-
|
|
182
|
+
.post-list li {
|
|
183
|
+
a {
|
|
184
|
+
text-decoration: none;
|
|
185
|
+
}
|
|
184
186
|
|
|
185
|
-
|
|
187
|
+
.post-title {
|
|
188
|
+
font-size: 14pt;
|
|
189
|
+
font-weight: bold;
|
|
190
|
+
}
|
|
186
191
|
|
|
187
|
-
.
|
|
188
|
-
|
|
189
|
-
|
|
192
|
+
.post-date {
|
|
193
|
+
color: $highlight-color;
|
|
194
|
+
display: inline-block;
|
|
195
|
+
width: 90px;
|
|
190
196
|
}
|
|
191
197
|
|
|
192
|
-
|
|
198
|
+
.post-description {
|
|
199
|
+
// the 10px discrepancy is left-margin of post-date, and whitespace between
|
|
200
|
+
// the date and title
|
|
201
|
+
padding-left: 100px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
margin-bottom: 20pt;
|
|
205
|
+
line-height: 20px;
|
|
193
206
|
|
|
194
207
|
&:hover {
|
|
195
|
-
|
|
196
|
-
.project-title, .post-title,
|
|
197
|
-
.post-date, .project-date
|
|
208
|
+
.post-title, .post-date
|
|
198
209
|
{
|
|
199
|
-
|
|
200
|
-
color: $highlight-color;
|
|
210
|
+
color: darken($highlight-color, 30%);
|
|
201
211
|
}
|
|
202
212
|
}
|
|
203
213
|
}
|
|
@@ -224,13 +234,13 @@ a {
|
|
|
224
234
|
}
|
|
225
235
|
}
|
|
226
236
|
|
|
227
|
-
.project-description,
|
|
228
|
-
.post-description {
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
}
|
|
237
|
+
// .project-description,
|
|
238
|
+
// .post-description {
|
|
239
|
+
// display: inline-block;
|
|
240
|
+
// padding-top: 8pt;
|
|
241
|
+
// padding-bottom: 10px;
|
|
242
|
+
// border-bottom: 1px dashed darken($color: $foreground-color, $amount: 30%);
|
|
243
|
+
// }
|
|
234
244
|
|
|
235
245
|
.page-gh {
|
|
236
246
|
font-size: 15pt;
|
|
@@ -333,7 +343,8 @@ pre.highlight {
|
|
|
333
343
|
background-color: $code-background-color;
|
|
334
344
|
color: $code-foreground-color;
|
|
335
345
|
font-family: $font-mono;
|
|
336
|
-
border: 1px solid black;
|
|
346
|
+
// border: 1px solid black;
|
|
347
|
+
font-size: 14px;
|
|
337
348
|
}
|
|
338
349
|
|
|
339
350
|
// inline code
|
|
@@ -487,4 +498,4 @@ table {
|
|
|
487
498
|
}
|
|
488
499
|
}
|
|
489
500
|
|
|
490
|
-
@import "syntax";
|
|
501
|
+
@import "syntax";
|
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,57 +1,43 @@
|
|
|
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.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Johnston
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '3.5'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- - "
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '3.5'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: bundler
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: '0'
|
|
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:
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: rake
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: 12.3.3
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: 12.3.3
|
|
40
|
+
version: '0'
|
|
55
41
|
description:
|
|
56
42
|
email:
|
|
57
43
|
- chjohnston@protonmail.com
|