alembic-jekyll-theme 1.2.0 → 1.2.1
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/button.html +1 -1
- data/_includes/figure.html +1 -1
- data/_includes/nav-default.html +2 -2
- data/_includes/nav-footer.html +1 -1
- data/_includes/nav-header.html +1 -1
- data/_includes/nav-social.html +1 -1
- data/_includes/post-list.html +3 -3
- data/_includes/post-related.html +2 -2
- data/_includes/site-aside.html +1 -1
- data/assets/styles.scss +24 -4
- 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: aab3d3a5d062e4da1bf7c7d41d4ab39c277e0bf4
|
|
4
|
+
data.tar.gz: 82902d8ea5f5e232f354c719985624c7c2170d4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1293b208abe2fda423251085c904220e415c028f1c1592fb3cb4527f388c495c9750eea593ffeae4b3508fce1fb501ce78ba0978b4cdd9e0d7f6eec783485e50
|
|
7
|
+
data.tar.gz: 95dfdf361d402b528eaad74eb95b2b86d6bf099e2a0e6196f4d65bad2bf01919c5c23a9a0750ae12070664d9abfb40c21ecabae6baf09af19af5d4d40ca4f73b
|
data/_includes/button.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<a class="button" href="{{ include.link }}" title="{{ include.text }}" {% if include.color %}style="background: {{ include.color }}"{% endif %}>{{ include.text }}{% if include.icon %} {% include icon.html id=include.icon %}{% endif %}</a>
|
|
1
|
+
<a class="button" href="{{ include.link }}" title="Button - {{ include.text }}" {% if include.color %}style="background: {{ include.color }}"{% endif %}>{{ include.text }}{% if include.icon %} {% include icon.html id=include.icon %}{% endif %}</a>
|
data/_includes/figure.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<figure class="figure{% if include.position %} figure--{{ include.position }}{% endif %}">
|
|
2
|
-
<img class="image" src="{{ include.image }}">
|
|
2
|
+
<img class="image" src="{{ include.image }}" {% if include.caption %}alt="Image - {{ include.caption }}"{% endif %}>
|
|
3
3
|
{% if include.caption %}<figcaption class="caption">{{ include.caption }}</figcaption>{% endif %}
|
|
4
4
|
</figure>
|
data/_includes/nav-default.html
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
<li class="item item--nav{% if item.url == page.url %} item--current{% endif %}">
|
|
6
6
|
{% if item.collectionpage %}
|
|
7
7
|
{% assign collectiondata = site.collections | where: "label", item.collectionpage | first %}
|
|
8
|
-
<a href="{{ item.url }}">{{ collectiondata.title }}</a>
|
|
8
|
+
<a href="{{ item.url }}" title="Page - {{ collectiondata.title }}">{{ collectiondata.title }}</a>
|
|
9
9
|
{% else %}
|
|
10
|
-
<a href="{{ item.url }}">{{ item.title }}</a>
|
|
10
|
+
<a href="{{ item.url }}" title="Page - {{ item.title }}">{{ item.title }}</a>
|
|
11
11
|
{% endif %}
|
|
12
12
|
</li>
|
|
13
13
|
{% endunless %}
|
data/_includes/nav-footer.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<ul class="list list--nav">
|
|
4
4
|
{% for item in site.navigation_footer %}
|
|
5
5
|
<li class="item item--nav{% if item[1] == page.url %} item--current{% endif %}">
|
|
6
|
-
<a href="{{ item[1] }}">{{ item[0] }}</a>
|
|
6
|
+
<a href="{{ item[1] }}" title="Page - {{ item[0] }}">{{ item[0] }}</a>
|
|
7
7
|
</li>
|
|
8
8
|
{% endfor %}
|
|
9
9
|
</ul>
|
data/_includes/nav-header.html
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<ul class="list list--nav">
|
|
4
4
|
{% for item in site.navigation_header %}
|
|
5
5
|
<li class="item item--nav{% if item[1] == page.url %} item--current{% endif %}">
|
|
6
|
-
<a href="{{ item[1] }}">{{ item[0] }}</a>
|
|
6
|
+
<a href="{{ item[1] }}" title="Page - {{ item[0] }}">{{ item[0] }}</a>
|
|
7
7
|
</li>
|
|
8
8
|
{% endfor %}
|
|
9
9
|
</ul>
|
data/_includes/nav-social.html
CHANGED
data/_includes/post-list.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<li class="item item--post">
|
|
6
6
|
<article class="article article--post typeset">
|
|
7
7
|
|
|
8
|
-
<h2><a href="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h2>
|
|
8
|
+
<h2><a href="{{ page.url }}" title="Post - {{ page.title }}">{{ page.title }}</a></h2>
|
|
9
9
|
{% include post-meta.html %}
|
|
10
10
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
|
11
11
|
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
{% include post-pagination.html %}
|
|
17
17
|
|
|
18
18
|
{% else %}
|
|
19
|
-
<
|
|
19
|
+
<h3>Latest blog posts</h3>
|
|
20
20
|
<ul class="list list--posts">
|
|
21
21
|
{% for page in site.posts limit: 4 %}
|
|
22
22
|
<li class="item item--post">
|
|
23
23
|
<article class="article article--post typeset">
|
|
24
24
|
|
|
25
|
-
<
|
|
25
|
+
<h4><a href="{{ page.url }}" title="Post - {{ page.title }}">{{ page.title }}</a></h4>
|
|
26
26
|
{% include post-meta.html %}
|
|
27
27
|
{{ page.excerpt | markdownify | truncatewords: 60 }}
|
|
28
28
|
|
data/_includes/post-related.html
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
<
|
|
1
|
+
<h3>Related posts</h3>
|
|
2
2
|
<ul class="list list--posts">
|
|
3
3
|
{% for page in site.related_posts limit: 3 %}
|
|
4
4
|
<li class="item item--post">
|
|
5
5
|
<article class="article article--post typeset">
|
|
6
6
|
|
|
7
|
-
<
|
|
7
|
+
<h4><a href="{{ page.url }}" title="Related post - {{ page.title }}">{{ page.title }}</a></h4>
|
|
8
8
|
{% include post-meta.html %}
|
|
9
9
|
{{ page.excerpt | markdownify | truncatewords: 20 }}
|
|
10
10
|
|
data/_includes/site-aside.html
CHANGED
data/assets/styles.scss
CHANGED
|
@@ -203,6 +203,7 @@ body {
|
|
|
203
203
|
.link {
|
|
204
204
|
display: inline-block;
|
|
205
205
|
margin: .2rem;
|
|
206
|
+
line-height: 1;
|
|
206
207
|
.icon {
|
|
207
208
|
display: inline-block;
|
|
208
209
|
transition: fill .1s;
|
|
@@ -305,9 +306,6 @@ textarea {
|
|
|
305
306
|
box-shadow: none;
|
|
306
307
|
border-radius: 0;
|
|
307
308
|
-webkit-appearance: none;
|
|
308
|
-
&:focus {
|
|
309
|
-
outline: solid .2rem invert($color__site--accent);
|
|
310
|
-
}
|
|
311
309
|
.icon {
|
|
312
310
|
margin: 0 0 .35rem;
|
|
313
311
|
}
|
|
@@ -332,6 +330,21 @@ button,
|
|
|
332
330
|
}
|
|
333
331
|
}
|
|
334
332
|
|
|
333
|
+
a,
|
|
334
|
+
button,
|
|
335
|
+
.button,
|
|
336
|
+
input,
|
|
337
|
+
textarea {
|
|
338
|
+
&:focus,
|
|
339
|
+
&:hover:focus {
|
|
340
|
+
outline: solid .12rem invert($color__site--accent);
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
a:hover:focus {
|
|
345
|
+
outline: none;
|
|
346
|
+
}
|
|
347
|
+
|
|
335
348
|
input[type="text"],
|
|
336
349
|
input[type="email"],
|
|
337
350
|
textarea {
|
|
@@ -350,6 +363,14 @@ label {
|
|
|
350
363
|
@include baseline($fontsize: zeta, $font: $bodytype, $lineheight: 2, $below: 2, $breakpoint: all);
|
|
351
364
|
}
|
|
352
365
|
|
|
366
|
+
code {
|
|
367
|
+
padding: .12rem .2rem;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
pre code {
|
|
371
|
+
padding: 0;
|
|
372
|
+
}
|
|
373
|
+
|
|
353
374
|
.required {
|
|
354
375
|
color: red;
|
|
355
376
|
}
|
|
@@ -373,7 +394,6 @@ label {
|
|
|
373
394
|
text-shadow: none;
|
|
374
395
|
}
|
|
375
396
|
|
|
376
|
-
|
|
377
397
|
// Sassline overrides
|
|
378
398
|
.typeset {
|
|
379
399
|
.button,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alembic-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Darnes
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-01-
|
|
11
|
+
date: 2017-01-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|