jekyll-oedipus-theme 0.2.0 → 0.3.0
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/_includes/footer.html +1 -0
- data/_includes/header.html +1 -0
- data/_includes/home-footer.html +7 -0
- data/_includes/posts-list.html +2 -2
- data/_includes/recent-posts-list.html +2 -2
- data/_layouts/default.html +0 -2
- data/_layouts/home.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/dark.scss +15 -2
- data/_sass/main.scss +28 -4
- data/_sass/variables.scss +2 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 106d1e7e92fa86c8b7750bfddd6e75c2c91fb263636cd898bdd60972b4180ef9
|
|
4
|
+
data.tar.gz: 76fe06c21d90753be4a76baf84a6faae0e186ac11610aa7846102419cdc92964
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb0f410f1085476e0cc848647b2a0b8e5f62dce0ff06968650461adbd1e0340b0b299a6a223c5103571d304c8acf0b7d64067e33a886dce4bd22e06c8d316dfa
|
|
7
|
+
data.tar.gz: e967d721f0b84aeffc9314d38c23c0c4a171a7076e56bacdc8edfddcc97f1c2c5d49bb4f91b51d2254c69f297e6783bbc55615a9629ae69cf024cfdaf6bbba4f
|
data/_includes/footer.html
CHANGED
data/_includes/header.html
CHANGED
data/_includes/posts-list.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{% for post in site.posts %}
|
|
2
2
|
<article>
|
|
3
|
-
<h3>{{ post.title }}</h3>
|
|
3
|
+
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
4
4
|
<p><em>{{ post.description }}</em></p>
|
|
5
|
-
<p
|
|
5
|
+
<p>posted on {{ post.date | date: "%Y-%m-%d" }}</p>
|
|
6
6
|
</article>
|
|
7
7
|
{% endfor %}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{% for post in site.posts | limit: 10 %}
|
|
2
2
|
<article>
|
|
3
|
-
<h3>{{ post.title }}</h3>
|
|
3
|
+
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
4
4
|
<p><em>{{ post.description }}</em></p>
|
|
5
|
-
<p
|
|
5
|
+
<p>posted on {{ post.date | date: "%Y-%m-%d" }}</p>
|
|
6
6
|
</article>
|
|
7
7
|
{% endfor %}
|
data/_layouts/default.html
CHANGED
|
@@ -3,9 +3,7 @@ layout: base
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
5
|
{% include header.html %}
|
|
6
|
-
{% include navbar.html id="header-nav" label="main navigation" source=site.data.header-nav %}
|
|
7
6
|
<hr />
|
|
8
7
|
{{ content }}
|
|
9
8
|
<hr />
|
|
10
9
|
{% include footer.html %}
|
|
11
|
-
{% include navbar.html id="footer-nav" label="bottom navigation" source=site.data.footer-nav %}
|
data/_layouts/home.html
CHANGED
data/_layouts/post.html
CHANGED
|
@@ -17,6 +17,6 @@ layout: default
|
|
|
17
17
|
The best way to subscribe is with a feed reader:
|
|
18
18
|
<a href="/feed.xml" title="subscribe to the Atom feed">Atom</a>
|
|
19
19
|
<a href="/feed.json" title="subscribe to the JSON feed">JSON</a><br />
|
|
20
|
-
Questions or comments
|
|
20
|
+
Questions or comments? Email <a href="mailto:{{ site.email }}" title="please allow up to 7 days for a reply">{{ site.email }}</a>.</p>
|
|
21
21
|
</footer>
|
|
22
22
|
</article>
|
data/_sass/dark.scss
CHANGED
|
@@ -24,11 +24,24 @@
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
blockquote {
|
|
27
|
-
border-left:
|
|
27
|
+
border-left: $border-thickness solid invert($fg-color);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
hr {
|
|
31
|
-
border:
|
|
31
|
+
border: $hr-border-thickness solid invert($fg-color);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
article {
|
|
35
|
+
hr {
|
|
36
|
+
border: $hr-border-thickness dashed invert($fg-color);
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
table {
|
|
41
|
+
border: $border-thickness solid invert($fg-color);
|
|
42
|
+
th, td {
|
|
43
|
+
border: $border-thickness solid invert($fg-color);
|
|
44
|
+
}
|
|
32
45
|
}
|
|
33
46
|
}
|
|
34
47
|
}
|
data/_sass/main.scss
CHANGED
|
@@ -37,6 +37,14 @@ html {
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
+
header {
|
|
41
|
+
margin-bottom: 2rem;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
footer {
|
|
45
|
+
margin-top: 2rem;
|
|
46
|
+
}
|
|
47
|
+
|
|
40
48
|
nav {
|
|
41
49
|
p {
|
|
42
50
|
a {
|
|
@@ -47,7 +55,7 @@ html {
|
|
|
47
55
|
}
|
|
48
56
|
|
|
49
57
|
main {
|
|
50
|
-
margin:
|
|
58
|
+
margin: 2rem auto;
|
|
51
59
|
max-width: 40rem;
|
|
52
60
|
padding: 0 .62rem;
|
|
53
61
|
|
|
@@ -61,7 +69,7 @@ html {
|
|
|
61
69
|
}
|
|
62
70
|
|
|
63
71
|
article {
|
|
64
|
-
margin:
|
|
72
|
+
margin: 2rem auto;
|
|
65
73
|
max-width: 40rem;
|
|
66
74
|
padding: 0 .62rem;
|
|
67
75
|
|
|
@@ -73,20 +81,36 @@ html {
|
|
|
73
81
|
section {
|
|
74
82
|
margin: 2rem auto;
|
|
75
83
|
}
|
|
84
|
+
|
|
85
|
+
hr {
|
|
86
|
+
border: $hr-border-thickness dashed $fg-color;
|
|
87
|
+
}
|
|
76
88
|
}
|
|
77
89
|
|
|
78
90
|
blockquote {
|
|
79
91
|
margin: 2rem 4rem;
|
|
80
92
|
padding: 0 1rem;
|
|
81
|
-
border-left:
|
|
93
|
+
border-left: $border-thickness solid $fg-color;
|
|
82
94
|
|
|
83
95
|
cite {
|
|
84
96
|
font-style: normal;
|
|
97
|
+
font-weight: bold;
|
|
85
98
|
}
|
|
86
99
|
}
|
|
87
100
|
|
|
88
101
|
hr {
|
|
89
|
-
border:
|
|
102
|
+
border: $hr-border-thickness solid $fg-color;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
table {
|
|
106
|
+
margin: 2rem 0;
|
|
107
|
+
border-collapse: collapse;
|
|
108
|
+
border: $border-thickness solid $fg-color;
|
|
109
|
+
th, td {
|
|
110
|
+
padding: 1rem;
|
|
111
|
+
border: $border-thickness solid $fg-color;
|
|
112
|
+
text-align: left;
|
|
113
|
+
}
|
|
90
114
|
}
|
|
91
115
|
}
|
|
92
116
|
}
|
data/_sass/variables.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthew Graybosch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-06-
|
|
11
|
+
date: 2021-06-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -104,6 +104,7 @@ files:
|
|
|
104
104
|
- _config.yml
|
|
105
105
|
- _includes/footer.html
|
|
106
106
|
- _includes/header.html
|
|
107
|
+
- _includes/home-footer.html
|
|
107
108
|
- _includes/home-header.html
|
|
108
109
|
- _includes/navbar.html
|
|
109
110
|
- _includes/navlist.html
|