jekyll-oedipus-theme 0.2.0 → 0.3.0

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: e7aa620504354fdfe705b8302a74f78be5a8599878299856c9489b0c69b3a8e7
4
- data.tar.gz: 634ef930492a8929462cb88f79c04b020f222fb2b4d29c0cbb8e83ca2c5f6616
3
+ metadata.gz: 106d1e7e92fa86c8b7750bfddd6e75c2c91fb263636cd898bdd60972b4180ef9
4
+ data.tar.gz: 76fe06c21d90753be4a76baf84a6faae0e186ac11610aa7846102419cdc92964
5
5
  SHA512:
6
- metadata.gz: dcae0ce543bfc7637d1f8a9472d05d3b87c40b77836188eb4d5edb3ba3d54e02d5c8dfeb86984d3812e1d98d8ce4bcd5d7b52715632e896bfeeb174afd04694f
7
- data.tar.gz: 8c9fbeb100ecb59ea2329af71b7d19a5abd529d90f88b88ea0d764145f72baeee1a5fa075a1d6b22c4f0a008d759a014365c66b2115225201f84e3b918d20e97
6
+ metadata.gz: cb0f410f1085476e0cc848647b2a0b8e5f62dce0ff06968650461adbd1e0340b0b299a6a223c5103571d304c8acf0b7d64067e33a886dce4bd22e06c8d316dfa
7
+ data.tar.gz: e967d721f0b84aeffc9314d38c23c0c4a171a7076e56bacdc8edfddcc97f1c2c5d49bb4f91b51d2254c69f297e6783bbc55615a9629ae69cf024cfdaf6bbba4f
@@ -4,4 +4,5 @@
4
4
  {{ site.license }}<br />
5
5
  made with {{ site.madeWith }}
6
6
  </p>
7
+ {% include navbar.html id="footer-nav" label="bottom navigation" source=site.data.footer-nav %}
7
8
  </footer>
@@ -1,4 +1,5 @@
1
1
  <header>
2
2
  <h1>{{ site.title }}</h1>
3
3
  <p>{{ site.description }}</p>
4
+ {% include navbar.html id="header-nav" label="main navigation" source=site.data.header-nav %}
4
5
  </header>
@@ -0,0 +1,7 @@
1
+ <footer>
2
+ <p>
3
+ &copy; {{ site.time | date: "%Y" }} {{ site.author }}, {{ site.rights }}<br />
4
+ {{ site.license }}<br />
5
+ made with {{ site.madeWith }}
6
+ </p>
7
+ </footer>
@@ -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><a href="{{ post.url }}">» Read More</a> (posted on {{ post.date | date: "%Y-%m-%d" }})
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><a href="{{ post.url }}">» Read More</a> (posted on {{ post.date | date: "%Y-%m-%d" }})
5
+ <p>posted on {{ post.date | date: "%Y-%m-%d" }}</p>
6
6
  </article>
7
7
  {% endfor %}
@@ -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
@@ -8,4 +8,4 @@ layout: base
8
8
  {{ content }}
9
9
  </main>
10
10
  <hr />
11
- {% include footer.html %}
11
+ {% include home-footer.html %}
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: email <a href="mailto:{{ site.email }}" title="please allow up to 7 days for a reply">{{ site.email }}</a></p>
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: 4px solid invert($fg-color);
27
+ border-left: $border-thickness solid invert($fg-color);
28
28
  }
29
29
 
30
30
  hr {
31
- border: 2px solid invert($fg-color);
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: 1rem auto;
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: 1rem auto;
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: 4px solid $fg-color;
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: 2px solid $fg-color;
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
@@ -4,3 +4,5 @@ $link-color: #0000B5;
4
4
  $link-hover-color: #3A539B;
5
5
  $link-active-color: #20603C;
6
6
  $link-visited-color: #550000;
7
+ $border-thickness: 2px;
8
+ $hr-border-thickness: 1px;
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.2.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-23 00:00:00.000000000 Z
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