fundamental 0.2.1 → 0.2.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/_layouts/site-archive.html +11 -7
- data/_sass/_globals.scss +1 -0
- data/_sass/_post.scss +1 -1
- data/_sass/_typography.scss +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96d151c7a4cd842824891cdbbbacc577b24ca155
|
|
4
|
+
data.tar.gz: c5f2569c107c7fb57b32f21d5e7bfa4057c54837
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d6612f1e21f29dccc236bb282ac9787f1615e1138481dbe6550a5f3816117865df3340f4c16af925ee8c82ca6f96b1c7f39ef8a597b8137861e7fe66678932b
|
|
7
|
+
data.tar.gz: ed6d6744b55f22d82f167b2f596fbaf5d23c0a1c0825b9cc29293391ef966d8e2ab99f774d9ef6d0025718f9c2fa8632da864917d3c48b8f1d4fbd813f7cb8d8
|
data/_layouts/site-archive.html
CHANGED
|
@@ -3,10 +3,14 @@ layout: default
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
5
|
<h1>All Posts</h1>
|
|
6
|
-
|
|
7
|
-
{%
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
</
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
{% for post in site.posts %}
|
|
7
|
+
{% assign currentdate = post.date | date: "%Y" %}
|
|
8
|
+
{% if currentdate != date %}
|
|
9
|
+
{% unless forloop.first %}</ul>{% endunless %}
|
|
10
|
+
<h3 id="y{{post.date | date: "%Y"}}">{{ currentdate }}</h3>
|
|
11
|
+
<ul>
|
|
12
|
+
{% assign date = currentdate %}
|
|
13
|
+
{% endif %}
|
|
14
|
+
<li><a href="{{ post.url }}">{{ post.title }}</a><span class="post-date"> - {{ post.date | date: "%b %-d, %Y" }}</span></li>
|
|
15
|
+
{% if forloop.last %}</ul>{% endif %}
|
|
16
|
+
{% endfor %}
|
data/_sass/_globals.scss
CHANGED
data/_sass/_post.scss
CHANGED
data/_sass/_typography.scss
CHANGED
|
@@ -69,6 +69,10 @@ figure {
|
|
|
69
69
|
background: lighten($accent, 35%);
|
|
70
70
|
padding: 10px 10px 0 10px;
|
|
71
71
|
border-radius: 3px;
|
|
72
|
+
code {
|
|
73
|
+
display: block;
|
|
74
|
+
background: none;
|
|
75
|
+
}
|
|
72
76
|
}
|
|
73
77
|
|
|
74
78
|
|
|
@@ -96,6 +100,6 @@ ul {
|
|
|
96
100
|
}
|
|
97
101
|
|
|
98
102
|
code {
|
|
99
|
-
background:
|
|
103
|
+
background: rgba($accent, .2);
|
|
100
104
|
padding: 0;
|
|
101
105
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fundamental
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Theo M Jones
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|