slow-steps 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/footer/footer_redesign.html +2 -2
- data/_includes/forms/mc-register.html +2 -2
- data/_includes/head/descriptors/og-meta.html +1 -1
- data/_includes/image-post.html +3 -1
- data/_includes/image.html +1 -1
- data/_layouts/feed.html +1 -1
- data/_layouts/post.html +1 -1
- data/_sass/navigation/breakpoints/1024.sass +1 -1
- data/_sass/post.sass +7 -1
- 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: de4aec4029acee851f11e843f091d8ef192d5e38dd202a4a3aa491395b9b62b0
|
4
|
+
data.tar.gz: d275914c61214b5bfaeb0a980a9feb96870a186f6445a187b1f2c594451866bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f89dd589150ce88b414b6eb8c67dc1fa7dcfe906fa0eb9c2187cc3c10dc7d30fe6e31a39e9d5a38c5050635d1ce2a5dfa8dc8b67f67f8b44f9d2abedfaa1bc9e
|
7
|
+
data.tar.gz: d2f66ebda5452465eaede008cb0372e175c97f2763c6e5458e102951e2b032c20bd90f498ba8b333357a81e3c4ab29b31c3c9a3815cc30b369527d524aa17e38
|
@@ -31,7 +31,7 @@
|
|
31
31
|
|
32
32
|
{% if page.url != "/" %}
|
33
33
|
|
34
|
-
<h2 class="ft__sitemap--header">
|
34
|
+
<h2 class="ft__sitemap--header">COMPANY INFORMATION</h2>
|
35
35
|
|
36
36
|
<div class="ft__sitemap--env-wrap">
|
37
37
|
|
@@ -97,7 +97,7 @@
|
|
97
97
|
<ul>
|
98
98
|
<li class="ft__contact--link"><a href="mailto:{{ site.email }}"><i class="fas fa-envelope"></i>{{ site.email }}</a></li>
|
99
99
|
|
100
|
-
|
100
|
+
<!--- <li class="ft__contact--link"><a href="tel:{{ site.phone }}"><i class="fas fa-phone-square"></i>{{ site.phone }}</a></li> -->
|
101
101
|
|
102
102
|
</ul>
|
103
103
|
|
@@ -123,9 +123,9 @@
|
|
123
123
|
<div class="mc-field-group input-group" style="position: absolute; left: -5000px;" aria-hidden="true">
|
124
124
|
<select name="USERTYPE" class="required" id="mce-USERTYPE" >
|
125
125
|
{% if page.env == 'pwp' %}
|
126
|
-
<option value="
|
126
|
+
<option value="PwP" selected></option>
|
127
127
|
{% else %}
|
128
|
-
<option value="
|
128
|
+
<option value="Clinician" selected></option>
|
129
129
|
{% endif %}
|
130
130
|
</select>
|
131
131
|
</div>
|
@@ -37,7 +37,7 @@
|
|
37
37
|
<!-- use local image if it exist but only for posts -->
|
38
38
|
|
39
39
|
{% if page.id %}
|
40
|
-
{% assign image = '/posts/' | append: page.
|
40
|
+
{% assign image = '/posts/' | append: page.hero %}
|
41
41
|
{% else %}
|
42
42
|
{% assign image = site.fallback_path | append: site.brand %}
|
43
43
|
{% endif %}
|
data/_includes/image-post.html
CHANGED
@@ -1,9 +1,11 @@
|
|
1
|
+
|
2
|
+
|
1
3
|
<!--
|
2
4
|
insert an image located in assets/images/posts/ and wrap with .post__image div.
|
3
5
|
-->
|
4
6
|
<div class="post__image">
|
5
7
|
|
6
|
-
{% picture post {{ include.link | prepend: 'posts/' }} --alt {{include.alt}} --img class="post__content--image" %}
|
8
|
+
{% picture post {{ include.link | prepend: 'posts/' }} --alt {{include.alt}} --img class="post__content--image image--{{ include.focus }}" %}
|
7
9
|
|
8
10
|
{% if include.caption %}
|
9
11
|
<p class="image--caption">{{ include.caption }}</p>
|
data/_includes/image.html
CHANGED
data/_layouts/feed.html
CHANGED
@@ -21,7 +21,7 @@ layout: default
|
|
21
21
|
<div class="feed__card" data-aos="fade-up">
|
22
22
|
|
23
23
|
<div class="feed__card__image">
|
24
|
-
{% picture thumb {{ post.
|
24
|
+
{% picture thumb {{ post.hero | prepend: 'posts/' }} --alt {{ post.hero_alt }} --img class="feed__card--image image--{{ page.hero_focus }}" %}
|
25
25
|
</div>
|
26
26
|
<div class="feed__card--text">
|
27
27
|
<p class="feed__card--meta">Published <span>{{ post.date | date: "%b %d, %Y" }}</span></p>
|
data/_layouts/post.html
CHANGED
@@ -4,7 +4,7 @@ layout: default
|
|
4
4
|
|
5
5
|
<section class="post_head">
|
6
6
|
|
7
|
-
{% picture {{ page.
|
7
|
+
{% picture {{ page.hero | prepend: 'posts/' }} --alt {{ page.hero_alt }} --img class="post__hero image--{{ page.hero_focus }}" %}
|
8
8
|
|
9
9
|
<div class="post__title">
|
10
10
|
<h1 >{{ page.title }}</h1>
|
data/_sass/post.sass
CHANGED
@@ -53,10 +53,16 @@
|
|
53
53
|
.post__content--image
|
54
54
|
display: block
|
55
55
|
object-fit: cover
|
56
|
-
object-position:
|
56
|
+
object-position: center
|
57
57
|
width: 100%
|
58
58
|
height: 50vh
|
59
59
|
|
60
|
+
.image--north
|
61
|
+
object-position: top
|
62
|
+
|
63
|
+
.image--south
|
64
|
+
object-position: bottom
|
65
|
+
|
60
66
|
.post__link
|
61
67
|
color: $opd-blue
|
62
68
|
text-decoration: none
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slow-steps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Made Slowly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|