jekyll-oedipus-theme 1.0.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc0780ba8e8bf872e38e50ccbc6a0a63d06bc51a1354aaa7b46a2f49ba93fc0f
4
- data.tar.gz: 219abeaa45562318b7fa0c57005da5d8f83197fd87b642e3a0410fd36c75c699
3
+ metadata.gz: 410e5ab938ea0d052d74478b2d608c7334b507e8ce43d11475d9616806ec4e8b
4
+ data.tar.gz: 6440dd67fce5e267389ba77b8f363aa101b948bcfeca4ab486d98a1c50e12e9b
5
5
  SHA512:
6
- metadata.gz: 66cf6caec4e95deb4c4083df8851d89e3fdcf50ad69ccec4c6d835b34e419a54021b048e5acb5c9fc57f0723ec5adde321b61012a8aa3377345a84a0286aa686
7
- data.tar.gz: 5bc54dfaaf231fd4d4aa907e4997dcfe0ce52582a539bf9a4df786d79fcd0a97676d16a3e3eae1216b70c809cb6f12d28051a120df5684a9b271abe96e029296
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 fucking with me.
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)
@@ -1,5 +1,5 @@
1
1
  {% if include.source %}
2
- <nav id="{{ include.id }}" aria-label=" {{include.label }}">
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
- </nav>
10
+ </section>
11
11
  {% endif %}
@@ -1,7 +1,9 @@
1
- {% for post in site.posts %}
2
- <article>
3
- <h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
4
- <p><em>{{ post.description }}</em></p>
5
- <p>posted on {{ post.date | date: "%Y-%m-%d" }}</p>
6
- </article>
7
- {% endfor %}
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
- {% for post in site.posts | limit: include.limit %}
2
- <article>
3
- <h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
4
- <p><em>{{ post.description }}</em></p>
5
- <p>posted on {{ post.date | date: "%Y-%m-%d" }}</p>
6
- </article>
7
- {% endfor %}
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: 6px;
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: 1rem;
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
- p {
64
- a {
65
- margin-right: 1rem;
66
- border: $border-thickness solid $link-color;
67
- border-radius: .5rem;
68
- padding: .5rem;
69
- text-decoration: none;
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
- a:last-child {
73
- margin-right: 0;
74
- }
76
+ a:last-child {
77
+ margin-right: 0;
78
+ }
75
79
 
76
- a:hover {
77
- border: $border-thickness solid $link-hover-color;
78
- }
79
-
80
- a:active {
81
- border: $border-thickness solid $link-active-color;
82
- }
83
-
84
- a:visited {
85
- border: $border-thickness solid $link-visited-color;
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
@@ -19,3 +19,4 @@ $content-margin: 2rem auto;
19
19
  $content-padding: 0 .62rem;
20
20
  $blockquote-font-size: 1.1rem;
21
21
  $figure-font-size: 1.1rem;
22
+ $underline-offset: 5px;
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.0.0
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-06-29 00:00:00.000000000 Z
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: '2.7'
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.5
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: []