jekyll-oedipus-theme 1.0.0 → 2.1.1
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/README.md +1 -1
- data/_includes/navlist.html +2 -2
- data/_includes/posts-list.html +9 -7
- data/_includes/recent-posts-list.html +9 -7
- data/_sass/dark.scss +8 -0
- data/_sass/main.scss +27 -24
- data/_sass/variables.scss +1 -0
- metadata +22 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 410e5ab938ea0d052d74478b2d608c7334b507e8ce43d11475d9616806ec4e8b
|
|
4
|
+
data.tar.gz: 6440dd67fce5e267389ba77b8f363aa101b948bcfeca4ab486d98a1c50e12e9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcee57380f2afba38faeb5781fa97190374c6dbb14e6cb8740c1318bad90e37c2529acf882d8b2f52a41040a68de0df7a60756dfe8539d23f7941cd8ec069a78
|
|
7
|
+
data.tar.gz: 94473916cee5dacc2b89e172348e3248896a68dc5eb500cdee3b17ff507ac4dec0388003e930fc9e27cd4ad62827659a292fcc1f1ee97414879764fe06ddeb78
|
data/README.md
CHANGED
|
@@ -129,7 +129,7 @@ I built this theme for my own use. If you find this theme useful, you are welcom
|
|
|
129
129
|
This is not a professional project, and I am not interested in collaborating with others here. I am most certainly *not* interested in fostering "community", let alone providing an "open and welcoming environment". Nevertheless, I suppose a rudimentary and informal code of conduct is necessary.
|
|
130
130
|
|
|
131
131
|
1. If you mess with me, you're banned.
|
|
132
|
-
2. If you mess with other contributors on this project, you're
|
|
132
|
+
2. If you mess with other contributors on this project, you're messing with me.
|
|
133
133
|
3. When in doubt, refer to rule 1.
|
|
134
134
|
|
|
135
135
|
(with apologies to Matthew Woodring Stover)
|
data/_includes/navlist.html
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{% if include.source %}
|
|
2
|
-
<
|
|
2
|
+
<section id="{{ include.id }}" aria-label=" {{include.label }}">
|
|
3
3
|
<ul>
|
|
4
4
|
{% for item in include.source %}
|
|
5
5
|
<li>
|
|
@@ -7,5 +7,5 @@
|
|
|
7
7
|
</li>
|
|
8
8
|
{% endfor %}
|
|
9
9
|
</ul>
|
|
10
|
-
</
|
|
10
|
+
</section>
|
|
11
11
|
{% endif %}
|
data/_includes/posts-list.html
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
</
|
|
7
|
-
{
|
|
1
|
+
<dl>
|
|
2
|
+
{% for post in site.posts %}
|
|
3
|
+
<dt>
|
|
4
|
+
[{{ post.date | date: "%Y-%m-%d" }}]
|
|
5
|
+
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
6
|
+
</dt>
|
|
7
|
+
<dd>{{ post.description }}</dd>
|
|
8
|
+
{% endfor %}
|
|
9
|
+
</dl>
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
</
|
|
7
|
-
{
|
|
1
|
+
<dl>
|
|
2
|
+
{% for post in site.posts | limit: include.limit %}
|
|
3
|
+
<dt>
|
|
4
|
+
[{{ post.date | date: "%Y-%m-%d" }}]
|
|
5
|
+
<a href="{{ post.url }}">{{ post.title }}</a>
|
|
6
|
+
</dt>
|
|
7
|
+
<dd>{{ post.description }}</dd>
|
|
8
|
+
{% endfor %}
|
|
9
|
+
</dl>
|
data/_sass/dark.scss
CHANGED
|
@@ -7,6 +7,14 @@
|
|
|
7
7
|
background: invert($bg-color);
|
|
8
8
|
color: invert($fg-color);
|
|
9
9
|
|
|
10
|
+
header {
|
|
11
|
+
border-bottom: $border-thickness solid invert($fg-color);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
footer {
|
|
15
|
+
border-top: $border-thickness solid invert($fg-color);
|
|
16
|
+
}
|
|
17
|
+
|
|
10
18
|
a {
|
|
11
19
|
color: invert($link-color);
|
|
12
20
|
}
|
data/_sass/main.scss
CHANGED
|
@@ -13,7 +13,11 @@ html {
|
|
|
13
13
|
|
|
14
14
|
a {
|
|
15
15
|
color: $link-color;
|
|
16
|
-
text-underline-offset:
|
|
16
|
+
text-underline-offset: $underline-offset;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
abbr {
|
|
20
|
+
text-underline-offset: $underline-offset;
|
|
17
21
|
}
|
|
18
22
|
|
|
19
23
|
a:hover {
|
|
@@ -40,7 +44,7 @@ html {
|
|
|
40
44
|
margin-bottom: 1rem;
|
|
41
45
|
|
|
42
46
|
em {
|
|
43
|
-
margin-left:
|
|
47
|
+
margin-left: .5rem;
|
|
44
48
|
font-weight: normal;
|
|
45
49
|
}
|
|
46
50
|
}
|
|
@@ -60,30 +64,29 @@ html {
|
|
|
60
64
|
|
|
61
65
|
nav {
|
|
62
66
|
margin-top: 1.5rem;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
67
|
+
a {
|
|
68
|
+
margin-right: .5rem;
|
|
69
|
+
border: $border-thickness solid $link-color;
|
|
70
|
+
border-radius: .5rem;
|
|
71
|
+
padding: .5rem;
|
|
72
|
+
text-decoration: none;
|
|
73
|
+
display: inline-block;
|
|
74
|
+
}
|
|
71
75
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
76
|
+
a:last-child {
|
|
77
|
+
margin-right: 0;
|
|
78
|
+
}
|
|
75
79
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
}
|
|
80
|
+
a:hover {
|
|
81
|
+
border: $border-thickness solid $link-hover-color;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
a:active {
|
|
85
|
+
border: $border-thickness solid $link-active-color;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
a:visited {
|
|
89
|
+
border: $border-thickness solid $link-visited-color;
|
|
87
90
|
}
|
|
88
91
|
}
|
|
89
92
|
|
data/_sass/variables.scss
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-oedipus-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Graybosch
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-08-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: webrick
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.7'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.7'
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: jekyll
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -92,7 +106,7 @@ dependencies:
|
|
|
92
106
|
- - ">="
|
|
93
107
|
- !ruby/object:Gem::Version
|
|
94
108
|
version: 2.7.1
|
|
95
|
-
description:
|
|
109
|
+
description:
|
|
96
110
|
email:
|
|
97
111
|
- contact@matthewgraybosch.com
|
|
98
112
|
executables: []
|
|
@@ -136,7 +150,7 @@ homepage: https://github.com/matthewgraybosch/jekyll-oedipus-theme
|
|
|
136
150
|
licenses:
|
|
137
151
|
- GPL-3.0
|
|
138
152
|
metadata: {}
|
|
139
|
-
post_install_message:
|
|
153
|
+
post_install_message:
|
|
140
154
|
rdoc_options: []
|
|
141
155
|
require_paths:
|
|
142
156
|
- lib
|
|
@@ -144,15 +158,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
144
158
|
requirements:
|
|
145
159
|
- - ">="
|
|
146
160
|
- !ruby/object:Gem::Version
|
|
147
|
-
version: '
|
|
161
|
+
version: '3.0'
|
|
148
162
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
149
163
|
requirements:
|
|
150
164
|
- - ">="
|
|
151
165
|
- !ruby/object:Gem::Version
|
|
152
166
|
version: '0'
|
|
153
167
|
requirements: []
|
|
154
|
-
rubygems_version: 3.2.
|
|
155
|
-
signing_key:
|
|
168
|
+
rubygems_version: 3.2.22
|
|
169
|
+
signing_key:
|
|
156
170
|
specification_version: 4
|
|
157
171
|
summary: Build a motherfucking website with Jekyll (patricide optional)
|
|
158
172
|
test_files: []
|