editorial-autogestiva-jekyll-theme 0.5.0rc5 → 0.5.0rc7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/about.html +25 -0
- data/assets/css/styles.scss +0 -1
- metadata +1 -2
- data/_sass/typography.scss +0 -33
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bde489725f2b94f66c12b6c3b440247f3da32f291c70665d0fc11d763462dabb
|
4
|
+
data.tar.gz: de01e6b6f9bee03347a40cfe610c3775b0bf8a38f247ce11167dc701d3aa92ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25d5e66403d1823d7ff12e043e7e923d4cdc62014b4ffcb251ab0bfc7950021168dc64675bd4ca06441f8098089c45943e219901394c14074f140f661ad45f88
|
7
|
+
data.tar.gz: e7c075a357e77024da3c45f0efb57cb4140dfd62a1a53160b096b0dc11c0b70374c15d63369ec0f5523165803b9b8fdc0c2387302f24e747e9f2676fb769fdb9
|
data/_layouts/about.html
CHANGED
@@ -3,4 +3,29 @@ layout: default
|
|
3
3
|
footer: false
|
4
4
|
---
|
5
5
|
|
6
|
+
{% assign posts = site.posts | where: "layout", "post" | order %}
|
7
|
+
|
6
8
|
{% include editorial.html editorial=page content=true %}
|
9
|
+
|
10
|
+
<section class="row row-cols-1 row-cols-md-3 row-cols-lg-4 mt-5">
|
11
|
+
{%- for post in posts -%}
|
12
|
+
<article
|
13
|
+
class="col d-flex flex-column justify-content-between mb-3">
|
14
|
+
<header class="position-relative">
|
15
|
+
<div class="text-center">
|
16
|
+
<img
|
17
|
+
class="img-fluid h-300"
|
18
|
+
src="{{ post.image.path | default: page.logo.path | thumbnail: nil, 300 | component_escape }}"
|
19
|
+
alt="{{ post.image.description | default: page.logo.description | default: post.title | escape_once }}"
|
20
|
+
loading="lazy" />
|
21
|
+
</div>
|
22
|
+
|
23
|
+
<h1 class="f-4 mt-3">{{ post.title }}</h1>
|
24
|
+
|
25
|
+
<a class="stretched-link" href="{{ post.url | component_escape }}"></a>
|
26
|
+
</header>
|
27
|
+
|
28
|
+
<p>{{ post.author | join: ', ' }}</p>
|
29
|
+
</article>
|
30
|
+
{%- endfor %}
|
31
|
+
</section>
|
data/assets/css/styles.scss
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: editorial-autogestiva-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.0rc7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- f
|
@@ -550,7 +550,6 @@ files:
|
|
550
550
|
- _sass/share_box.scss
|
551
551
|
- _sass/snap.scss
|
552
552
|
- _sass/toggler.scss
|
553
|
-
- _sass/typography.scss
|
554
553
|
- _sass/utilities.scss
|
555
554
|
- assets/css/styles.scss
|
556
555
|
- assets/data/site.json
|
data/_sass/typography.scss
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
@font-face {
|
2
|
-
font-family: 'Inter';
|
3
|
-
font-style: normal;
|
4
|
-
font-weight: 400;
|
5
|
-
font-display: swap;
|
6
|
-
src: url("../fonts/Inter-Regular-subset.woff2?v=3.12") format("woff2");
|
7
|
-
}
|
8
|
-
|
9
|
-
@font-face {
|
10
|
-
font-family: 'Inter';
|
11
|
-
font-style: italic;
|
12
|
-
font-weight: 400;
|
13
|
-
font-display: swap;
|
14
|
-
src: url("../fonts/Inter-Italic-subset.woff2?v=3.12") format("woff2");
|
15
|
-
}
|
16
|
-
|
17
|
-
@font-face {
|
18
|
-
font-family: 'Inter';
|
19
|
-
font-style: normal;
|
20
|
-
font-weight: 700;
|
21
|
-
font-display: swap;
|
22
|
-
src: url("../fonts/Inter-Bold-subset.woff2?v=3.12") format("woff2");
|
23
|
-
}
|
24
|
-
|
25
|
-
@font-face {
|
26
|
-
font-family: 'Inter';
|
27
|
-
font-style: italic;
|
28
|
-
font-weight: 700;
|
29
|
-
font-display: swap;
|
30
|
-
src: url("../fonts/Inter-BoldItalic-subset.woff2?v=3.12") format("woff2");
|
31
|
-
}
|
32
|
-
|
33
|
-
html, body { font-family: 'Inter', sans-serif; }
|