eleven-theme 0.1.4 → 0.1.5
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 +4 -0
- data/_layouts/home.html +13 -0
- data/_sass/eleven.scss +5 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: be546f5eece825a4f3edb0b63ce370c78edb8b65c5778b1498e2d113023e5081
|
4
|
+
data.tar.gz: b098ce4e7c55807efb17df6f96916a9f43994ff238eb4e0a5e1f9252af15578e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a859d341b51faa98e13a3397273b7e1350478d502e5a9ed97a4df58808f79438f148029a3eb1849ae1bf34c2a4694344f940c59fbea6c9218312c0824ad25e7
|
7
|
+
data.tar.gz: 0e8d55a05a8f60c5aa582b008685d09b6063b53f727ef0042fdef43b7cdb3ee5301adfc7ed4099f6f4889da36811425a63bf72834da5ca3d897229794268c98c
|
data/_config.yml
CHANGED
data/_layouts/home.html
CHANGED
@@ -28,6 +28,19 @@ layout: default
|
|
28
28
|
{% endif %}
|
29
29
|
{% endfor %}
|
30
30
|
|
31
|
+
{% for collection in site.collections %}
|
32
|
+
{% unless collection.label == 'posts' %}
|
33
|
+
<div class="box">
|
34
|
+
<h2>{{ collection.label }}</h2>
|
35
|
+
<ul>
|
36
|
+
{% for entry in site[collection.label] %}
|
37
|
+
<li><a href="{{ entry.url | relative_url }}">{{ entry.title }}</a></li>
|
38
|
+
{% endfor %}
|
39
|
+
</ul>
|
40
|
+
</div>
|
41
|
+
{% endunless %}
|
42
|
+
{% endfor %}
|
43
|
+
|
31
44
|
{%- assign date_format = site.eleven.date_format | default: "%b %d, %Y" -%}
|
32
45
|
<div class="box">
|
33
46
|
<h2>Posts</h2>
|
data/_sass/eleven.scss
CHANGED
@@ -40,7 +40,6 @@ li { margin: 0.15rem 0; }
|
|
40
40
|
}
|
41
41
|
|
42
42
|
code {
|
43
|
-
color: black;
|
44
43
|
background: lightgray;
|
45
44
|
}
|
46
45
|
|
@@ -56,16 +55,17 @@ img {
|
|
56
55
|
height: auto;
|
57
56
|
max-width: 512px * 0.5;
|
58
57
|
display: block;
|
59
|
-
margin
|
60
|
-
margin-right: auto;
|
58
|
+
margin: 0 auto;
|
61
59
|
}
|
62
60
|
|
63
61
|
em > img {
|
64
|
-
max-width: 512px;
|
62
|
+
max-width: 512px * 0.40;
|
63
|
+
display: inline;
|
64
|
+
margin: 0 512px*0.046;
|
65
65
|
}
|
66
66
|
|
67
67
|
strong > img {
|
68
|
-
|
68
|
+
max-width: 512px;
|
69
69
|
}
|
70
70
|
|
71
71
|
img.logo {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eleven-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Paul
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-04-
|
11
|
+
date: 2022-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|