jekyll-oedipus-theme 0.3.0 → 0.4.2
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/_config.yml +5 -2
- data/_includes/footer.html +1 -1
- data/_includes/home-footer.html +1 -1
- data/_includes/license.html +3 -0
- data/_includes/posts-table.html +2 -2
- data/_includes/recent-posts-list.html +1 -1
- data/_includes/recent-posts-table.html +3 -3
- data/_includes/skip.html +3 -0
- data/_layouts/base.html +2 -0
- data/_layouts/default.html +0 -2
- data/_layouts/home.html +0 -2
- data/_layouts/page.html +1 -0
- data/_layouts/post.html +0 -1
- data/_sass/dark.scss +20 -0
- data/_sass/main.scss +44 -4
- data/_sass/paper.scss +66 -0
- data/_sass/skip.scss +16 -0
- data/_sass/variables.scss +1 -0
- data/assets/print.scss +5 -0
- data/assets/style.scss +1 -0
- metadata +7 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea601fb0f18d07768452f6dd45afa0411ac9c8b369ebce6325abc920b6d125b4
|
|
4
|
+
data.tar.gz: bf3cc12c0c60707c81f4fb54b22b0643cd5d638eb226d8e5b6c341d390bde4a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c39f297c1b7c69f40bb3030a638881770dd1ff446531a0108649a65e78db6f6f5acc0e7628814daebe820a22c266e4a0eb2e1899daf8eedadd8fa2911abcbba
|
|
7
|
+
data.tar.gz: 24857324332bb82efbe14d46c140fe089a6ced5ae6c5e125cafc3ea1b95b1a450539bf6fb52319dc46587751823b685cb3098c794300b41a17731acb4f4ae2ea
|
data/_config.yml
CHANGED
|
@@ -10,7 +10,10 @@ lang: en
|
|
|
10
10
|
encoding: utf-8
|
|
11
11
|
locale: en_US
|
|
12
12
|
rights: most rights reserved
|
|
13
|
-
license: "
|
|
13
|
+
license-text-name: "CC BY-NC-SA 4.0"
|
|
14
|
+
license-text-url: "https://creativecommons.org/licenses/by-nc-sa/4.0/"
|
|
15
|
+
license-code-name: "GNU GPL-3.0"
|
|
16
|
+
license-code-url: "https://opensource.org/licenses/GPL-3.0/"
|
|
14
17
|
madeWith: "♥ in Pennsylvania"
|
|
15
18
|
|
|
16
19
|
# Build settings
|
|
@@ -22,6 +25,6 @@ plugins:
|
|
|
22
25
|
- jekyll-seo-tag
|
|
23
26
|
|
|
24
27
|
sass:
|
|
25
|
-
style:
|
|
28
|
+
style: expanded
|
|
26
29
|
|
|
27
30
|
permalink: /blog/:year/:month/:day/:title/
|
data/_includes/footer.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<footer>
|
|
2
2
|
<p>
|
|
3
3
|
© {{ site.time | date: "%Y" }} {{ site.author }}, {{ site.rights }}<br />
|
|
4
|
-
{
|
|
4
|
+
{% include license.html %}
|
|
5
5
|
made with {{ site.madeWith }}
|
|
6
6
|
</p>
|
|
7
7
|
{% include navbar.html id="footer-nav" label="bottom navigation" source=site.data.footer-nav %}
|
data/_includes/home-footer.html
CHANGED
data/_includes/posts-table.html
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
<table>
|
|
2
2
|
<thead>
|
|
3
3
|
<tr>
|
|
4
|
-
<th>Date</th>
|
|
5
4
|
<th>Title</th>
|
|
5
|
+
<th>Date</th>
|
|
6
6
|
</tr>
|
|
7
7
|
</thead>
|
|
8
8
|
<tbody>
|
|
9
9
|
{% for post in site.posts %}
|
|
10
10
|
<tr>
|
|
11
|
-
<td>{{ post.date | date: "%Y-%m-%d" }}</td>
|
|
12
11
|
<td><a href="{{ post.url }}">{{ post.title }}</a></td>
|
|
12
|
+
<td>{{ post.date | date: "%Y-%m-%d" }}</td>
|
|
13
13
|
</tr>
|
|
14
14
|
{% endfor %}
|
|
15
15
|
</tbody>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
<table>
|
|
2
2
|
<thead>
|
|
3
3
|
<tr>
|
|
4
|
-
<th>Date</th>
|
|
5
4
|
<th>Title</th>
|
|
5
|
+
<th>Date</th>
|
|
6
6
|
</tr>
|
|
7
7
|
</thead>
|
|
8
8
|
<tbody>
|
|
9
|
-
{% for post in site.posts | limit:
|
|
9
|
+
{% for post in site.posts | limit: include.limit %}
|
|
10
10
|
<tr>
|
|
11
|
-
<td>{{ post.date | date: "%Y-%m-%d" }}</td>
|
|
12
11
|
<td><a href="{{ post.url }}">{{ post.title }}</a></td>
|
|
12
|
+
<td>{{ post.date | date: "%Y-%m-%d" }}</td>
|
|
13
13
|
</tr>
|
|
14
14
|
{% endfor %}
|
|
15
15
|
</tbody>
|
data/_includes/skip.html
ADDED
data/_layouts/base.html
CHANGED
data/_layouts/default.html
CHANGED
data/_layouts/home.html
CHANGED
data/_layouts/page.html
CHANGED
data/_layouts/post.html
CHANGED
data/_sass/dark.scss
CHANGED
|
@@ -43,6 +43,26 @@
|
|
|
43
43
|
border: $border-thickness solid invert($fg-color);
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
|
+
|
|
47
|
+
nav {
|
|
48
|
+
p {
|
|
49
|
+
a {
|
|
50
|
+
border: $border-thickness solid invert($link-color);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
a:hover {
|
|
54
|
+
border: $border-thickness solid invert($link-hover-color);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
a:active {
|
|
58
|
+
border: $border-thickness solid invert($link-active-color);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
a:visited {
|
|
62
|
+
border: $border-thickness solid invert($link-visited-color);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
46
66
|
}
|
|
47
67
|
}
|
|
48
68
|
}
|
data/_sass/main.scss
CHANGED
|
@@ -11,6 +11,7 @@ html {
|
|
|
11
11
|
|
|
12
12
|
a {
|
|
13
13
|
color: $link-color;
|
|
14
|
+
text-underline-offset: $border-thickness * 1.5;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
17
|
a:hover {
|
|
@@ -39,24 +40,45 @@ html {
|
|
|
39
40
|
|
|
40
41
|
header {
|
|
41
42
|
margin-bottom: 2rem;
|
|
43
|
+
padding-bottom: 1rem;
|
|
44
|
+
border-bottom: $border-thickness solid $fg-color;
|
|
42
45
|
}
|
|
43
46
|
|
|
44
47
|
footer {
|
|
45
48
|
margin-top: 2rem;
|
|
49
|
+
padding-top: 1rem;
|
|
50
|
+
border-top: $border-thickness solid $fg-color;
|
|
46
51
|
}
|
|
47
52
|
|
|
48
53
|
nav {
|
|
54
|
+
margin-top: 1.5rem;
|
|
49
55
|
p {
|
|
50
56
|
a {
|
|
51
57
|
margin-left: .5rem;
|
|
52
58
|
margin-right: .5rem;
|
|
59
|
+
border: $border-thickness solid $link-color;
|
|
60
|
+
border-radius: .5rem;
|
|
61
|
+
padding: .5rem;
|
|
62
|
+
text-decoration: none;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
a:hover {
|
|
66
|
+
border: $border-thickness solid $link-hover-color;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
a:active {
|
|
70
|
+
border: $border-thickness solid $link-active-color;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
a:visited {
|
|
74
|
+
border: $border-thickness solid $link-visited-color;
|
|
53
75
|
}
|
|
54
76
|
}
|
|
55
77
|
}
|
|
56
78
|
|
|
57
79
|
main {
|
|
58
80
|
margin: 2rem auto;
|
|
59
|
-
max-width:
|
|
81
|
+
max-width: $content-width;
|
|
60
82
|
padding: 0 .62rem;
|
|
61
83
|
|
|
62
84
|
article {
|
|
@@ -70,7 +92,7 @@ html {
|
|
|
70
92
|
|
|
71
93
|
article {
|
|
72
94
|
margin: 2rem auto;
|
|
73
|
-
max-width:
|
|
95
|
+
max-width: $content-width;
|
|
74
96
|
padding: 0 .62rem;
|
|
75
97
|
|
|
76
98
|
header, footer {
|
|
@@ -82,12 +104,19 @@ html {
|
|
|
82
104
|
margin: 2rem auto;
|
|
83
105
|
}
|
|
84
106
|
|
|
85
|
-
|
|
86
|
-
|
|
107
|
+
header {
|
|
108
|
+
margin-bottom: 1rem;
|
|
109
|
+
padding-bottom: 0;
|
|
110
|
+
border: none;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
footer {
|
|
114
|
+
border-top: $hr-border-thickness dashed $fg-color;
|
|
87
115
|
}
|
|
88
116
|
}
|
|
89
117
|
|
|
90
118
|
blockquote {
|
|
119
|
+
font-size: 1.2rem;
|
|
91
120
|
margin: 2rem 4rem;
|
|
92
121
|
padding: 0 1rem;
|
|
93
122
|
border-left: $border-thickness solid $fg-color;
|
|
@@ -98,6 +127,17 @@ html {
|
|
|
98
127
|
}
|
|
99
128
|
}
|
|
100
129
|
|
|
130
|
+
dl {
|
|
131
|
+
dt {
|
|
132
|
+
font-size: 1.1rem;
|
|
133
|
+
font-weight: bold;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
dd {
|
|
137
|
+
margin-bottom: 1.1rem;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
101
141
|
hr {
|
|
102
142
|
border: $hr-border-thickness solid $fg-color;
|
|
103
143
|
}
|
data/_sass/paper.scss
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
@media print {
|
|
2
|
+
html, body {
|
|
3
|
+
font: 12pt/1.3 serif !important;
|
|
4
|
+
background: $bg-color !important;
|
|
5
|
+
color: $fg-color !important;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
body {
|
|
9
|
+
header {
|
|
10
|
+
display: none;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
footer {
|
|
14
|
+
nav {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
a, a:hover, a:active, a:visited {
|
|
20
|
+
color: $fg-color !important;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
main, article {
|
|
26
|
+
width: 100%;
|
|
27
|
+
max-width: 100%;
|
|
28
|
+
margin: 0;
|
|
29
|
+
float: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
h1 {
|
|
33
|
+
font-size: 2rem;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
h2, h3, h4 {
|
|
37
|
+
font-size: 1.2rem;
|
|
38
|
+
margin-top: 2rem;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
a {
|
|
42
|
+
page-break-inside: avoid
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
blockquote {
|
|
46
|
+
page-break-inside: avoid;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
h1, h2, h3, h4, h5, h6 {
|
|
50
|
+
page-break-after: avoid;
|
|
51
|
+
page-break-inside: avoid
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
img {
|
|
55
|
+
page-break-inside: avoid;
|
|
56
|
+
page-break-after: avoid;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
table, pre {
|
|
60
|
+
page-break-inside: avoid
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
ul, ol, dl {
|
|
64
|
+
page-break-before: avoid
|
|
65
|
+
}
|
|
66
|
+
}
|
data/_sass/skip.scss
ADDED
data/_sass/variables.scss
CHANGED
data/assets/print.scss
ADDED
data/assets/style.scss
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-oedipus-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Graybosch
|
|
@@ -106,12 +106,14 @@ files:
|
|
|
106
106
|
- _includes/header.html
|
|
107
107
|
- _includes/home-footer.html
|
|
108
108
|
- _includes/home-header.html
|
|
109
|
+
- _includes/license.html
|
|
109
110
|
- _includes/navbar.html
|
|
110
111
|
- _includes/navlist.html
|
|
111
112
|
- _includes/posts-list.html
|
|
112
113
|
- _includes/posts-table.html
|
|
113
114
|
- _includes/recent-posts-list.html
|
|
114
115
|
- _includes/recent-posts-table.html
|
|
116
|
+
- _includes/skip.html
|
|
115
117
|
- _layouts/base.html
|
|
116
118
|
- _layouts/default.html
|
|
117
119
|
- _layouts/home.html
|
|
@@ -119,9 +121,12 @@ files:
|
|
|
119
121
|
- _layouts/post.html
|
|
120
122
|
- _sass/dark.scss
|
|
121
123
|
- _sass/main.scss
|
|
124
|
+
- _sass/paper.scss
|
|
125
|
+
- _sass/skip.scss
|
|
122
126
|
- _sass/variables.scss
|
|
123
127
|
- assets/favicon.ico
|
|
124
128
|
- assets/favicon.svg
|
|
129
|
+
- assets/print.scss
|
|
125
130
|
- assets/style.scss
|
|
126
131
|
homepage: https://github.com/matthewgraybosch/jekyll-oedipus-theme
|
|
127
132
|
licenses:
|
|
@@ -135,7 +140,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
135
140
|
requirements:
|
|
136
141
|
- - ">="
|
|
137
142
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: '
|
|
143
|
+
version: '2.7'
|
|
139
144
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
145
|
requirements:
|
|
141
146
|
- - ">="
|