frogmore 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/_layouts/post.html +7 -3
- data/_sass/_main.scss +13 -25
- 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: ad6b20aaa40c85b50dc13ca7a163a2d221bf991a91e06687e9fa38a9a1cdd927
|
|
4
|
+
data.tar.gz: a2458e7b38148200058a7afe99771120a7771928faa29fbbac9e5d6abdad1155
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5100cd61b27a52f74ce8e54fff8e83b006e9aaca7c2d9117b50d85967a1c5b52c6280f3649c45e1d2d8c1e66b606f44baf45b396d361846a3a9353c43a3a18fb
|
|
7
|
+
data.tar.gz: 49730c2bad81cc99f0b20768709e8011efd8c988b721f571295543249276e16754dec485d038d3b6fb4bdf2042c58dbe39ca4d59c10c54457daf0253c46c9c90
|
data/_layouts/post.html
CHANGED
|
@@ -3,10 +3,14 @@ layout: default
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
5
|
<article class="post">
|
|
6
|
-
<
|
|
6
|
+
<h1>{{ page.title }}</h1>
|
|
7
7
|
{{ content }}
|
|
8
8
|
<span class="meta">
|
|
9
|
-
<time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %-d, %Y" }}</time>
|
|
9
|
+
<time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %-d, %Y" }}</time> {% if site.signature %} | {{site.signature}} {% endif %}
|
|
10
10
|
· {% for tag in page.tags %}
|
|
11
|
-
<a href="/tag/{{tag}}">
|
|
11
|
+
<a href="/tag/{{tag}}">
|
|
12
|
+
{{tag}}
|
|
13
|
+
</a>
|
|
14
|
+
{% unless forloop.last %}, {% endunless %}{% endfor %}
|
|
15
|
+
</span>
|
|
12
16
|
</article>
|
data/_sass/_main.scss
CHANGED
|
@@ -23,30 +23,9 @@ a {
|
|
|
23
23
|
text-decoration: underline;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
pre {
|
|
27
|
-
margin: 0.5rem 0;
|
|
28
|
-
padding: 0.5rem;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.post p {
|
|
32
|
-
margin: 0.5rem 0;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.post h1,
|
|
36
|
-
.post h2,
|
|
37
|
-
.post h3,
|
|
38
|
-
.post h4 {
|
|
39
|
-
margin: 1rem 0;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.post h2:first-child,
|
|
43
|
-
.project h2:first-child,
|
|
44
|
-
.photo h2:first-child {
|
|
45
|
-
margin-top: 0;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
26
|
.meta {
|
|
49
|
-
margin:
|
|
27
|
+
margin: 1rem 0;
|
|
28
|
+
font-style: italic;
|
|
50
29
|
}
|
|
51
30
|
|
|
52
31
|
code,
|
|
@@ -63,6 +42,7 @@ pre code {
|
|
|
63
42
|
}
|
|
64
43
|
|
|
65
44
|
pre {
|
|
45
|
+
margin: 0.5rem 0;
|
|
66
46
|
padding: 1rem;
|
|
67
47
|
overflow-x: auto;
|
|
68
48
|
}
|
|
@@ -94,11 +74,11 @@ header ul,
|
|
|
94
74
|
.listing,
|
|
95
75
|
.post {
|
|
96
76
|
max-width: 43rem;
|
|
77
|
+
display: flex;
|
|
78
|
+
flex-direction: column;
|
|
97
79
|
}
|
|
98
80
|
|
|
99
81
|
header ul {
|
|
100
|
-
display: flex;
|
|
101
|
-
flex-direction: column;
|
|
102
82
|
margin: 0 auto;
|
|
103
83
|
list-style: none;
|
|
104
84
|
padding: 0 2rem 2rem 2rem;
|
|
@@ -138,6 +118,10 @@ h5 {
|
|
|
138
118
|
font-weight: 600;
|
|
139
119
|
}
|
|
140
120
|
|
|
121
|
+
h1 {
|
|
122
|
+
font-size: 2rem;
|
|
123
|
+
}
|
|
124
|
+
|
|
141
125
|
strong,
|
|
142
126
|
b {
|
|
143
127
|
font-weight: bold;
|
|
@@ -161,6 +145,10 @@ article h1:first-child {
|
|
|
161
145
|
margin-top: 0;
|
|
162
146
|
}
|
|
163
147
|
|
|
148
|
+
p {
|
|
149
|
+
margin: 0.5rem 0;
|
|
150
|
+
}
|
|
151
|
+
|
|
164
152
|
@media screen and (min-width: 64rem) {
|
|
165
153
|
main {
|
|
166
154
|
flex-direction: row;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: frogmore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Huw Diprose
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-09-
|
|
11
|
+
date: 2020-09-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|