slow-steps 0.4.14 → 1.0.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/README.md +2 -2
- data/_includes/forms/mc-register.html +2 -2
- data/_includes/head/README.md +1 -1
- data/_includes/navigation/global.html +1 -1
- data/_layouts/env/landing.html +6 -6
- data/_layouts/env/{pwp.html → walk.html} +7 -7
- data/_sass/_colors/README.md +2 -2
- data/_sass/_colors/{_pwp.sass → _walk.sass} +1 -1
- data/_sass/env/landing.sass +3 -3
- data/_sass/env/{pwp.sass → walk.sass} +1 -1
- data/_sass/navigation/README.md +2 -2
- data/_sass/navigation/breakpoints/1024.sass +1 -1
- data/_sass/navigation/clinician.sass +1 -1
- data/_sass/navigation/{pwp.sass → walk.sass} +1 -1
- data/assets/css/env/{gaitq_pwp.sass → gaitq_walk.sass} +3 -3
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e123b0e7f6c8b7ebcc34ab9306a321a294243fc3f7befc8bbd49965d4d7a0505
|
4
|
+
data.tar.gz: b6c2057ed0bcc61e007659a50636296da602b3aa79e9320aba7fb646b70e315d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 447856377e6afe564ab4bc46df84f56d2cc9df1d85b283dd2fbc991f478baf9693443f5978003ab2a9f8bc66589c7b267c64cae6d424d1e50e438abb38e81d46
|
7
|
+
data.tar.gz: c34a1c156a0830aec0b1ff6f074ed7e52f2e3c4f71426a2a1d0b2c98c58837fd43a48c59ca673f106d6a5762627e20d1b4966fd872a0d312f8dea589dc38f4b3
|
data/README.md
CHANGED
@@ -70,7 +70,7 @@ https://github.com/madeslowly/slow-steps/
|
|
70
70
|
| ├─ env/ # Environmental specific layouts
|
71
71
|
| | |
|
72
72
|
| | ├─ clinician.html # Professionals and press
|
73
|
-
| | ├─
|
73
|
+
| | ├─ walk.html # Patients and carers
|
74
74
|
| | ├─ landing.html # Landing page only
|
75
75
|
| |
|
76
76
|
| ├─ compress.html # Final step for all pages. Strips html comments, carriage returns and white space.
|
@@ -89,7 +89,7 @@ https://github.com/madeslowly/slow-steps/
|
|
89
89
|
| | |
|
90
90
|
| | ├─ env/ # Environmental specific colors
|
91
91
|
| | | |
|
92
|
-
| | | ├─
|
92
|
+
| | | ├─ walk.sass # walk environmental colors
|
93
93
|
| | |
|
94
94
|
| | ├─ _variable.sass # <nav> settings
|
95
95
|
| | ├─ burger.sass # Mobile burger
|
@@ -117,12 +117,12 @@
|
|
117
117
|
|
118
118
|
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
|
119
119
|
<div style="position: absolute; left: -5000px;" aria-hidden="true">
|
120
|
-
<input type="text" name="{{ site.data.forms.
|
120
|
+
<input type="text" name="{{ site.data.forms.walk.botspot-name }}" tabindex="-1" value="">
|
121
121
|
</div>
|
122
122
|
|
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
|
-
{% if page.env == '
|
125
|
+
{% if page.env == 'walk' %}
|
126
126
|
<option value="PwP" selected></option>
|
127
127
|
{% else %}
|
128
128
|
<option value="Clinician" selected></option>
|
data/_includes/head/README.md
CHANGED
@@ -28,4 +28,4 @@ This is how we control the indexing of our pages with search engines, in particu
|
|
28
28
|
|
29
29
|
### conditional.html
|
30
30
|
|
31
|
-
Conditional `<link rel="stylesheet"` to style each environment. We do this so that we only load the css needed for a given page. All pages get gaitq_global.css. With front matter we include environmental stylesheet with `env:
|
31
|
+
Conditional `<link rel="stylesheet"` to style each environment. We do this so that we only load the css needed for a given page. All pages get gaitq_global.css. With front matter we include environmental stylesheet with `env: walk | clinician`. The existence of `page.env` triggers conditional.html.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
<!-- No navigation on landing, we split the diplay with <a's pointing to
|
2
|
+
<!-- No navigation on landing, we split the diplay with <a's pointing to walk or clinician. This is done in the landing.html layout. -->
|
3
3
|
|
4
4
|
<nav class="navbar">
|
5
5
|
|
data/_layouts/env/landing.html
CHANGED
@@ -14,7 +14,7 @@ Last full read through 27/12/2020
|
|
14
14
|
|
15
15
|
<div class="landing__page">
|
16
16
|
<!-- setup liquid variables -->
|
17
|
-
{%- assign env = site.data.menu.navigation | where: 'env', '
|
17
|
+
{%- assign env = site.data.menu.navigation | where: 'env', 'walk' -%}
|
18
18
|
{%- assign env = env[0] -%}
|
19
19
|
|
20
20
|
{%- assign cta = env.submenu | where: 'cta', 'true' -%}
|
@@ -25,14 +25,14 @@ Last full read through 27/12/2020
|
|
25
25
|
|
26
26
|
<div class="page__half">
|
27
27
|
|
28
|
-
<div class="env__text env--
|
28
|
+
<div class="env__text env--walk">
|
29
29
|
|
30
30
|
<a class="landing__link" aria-label="{{ env.aria }}" href="{{ env.url | relative_url }}">
|
31
31
|
|
32
32
|
<h3 class="landing__title">{{ env.name | upcase }}</h3></a>
|
33
33
|
|
34
34
|
<div class="landing__strap">
|
35
|
-
<p>{{ site.data.copy.landing.landing.
|
35
|
+
<p>{{ site.data.copy.landing.landing.walk }}</p>
|
36
36
|
<div class="landing__cta">
|
37
37
|
<a class="primary__cta" aria-label="{{ cta.aria }}" href="{{ cta.url | relative_url }}">{{ cta.name }}</a>
|
38
38
|
<a class="secondary__cta" aria-label="{{ cta_2.aria }}" href="{{ cta_2.url | relative_url }}">More Info</a>
|
@@ -41,10 +41,10 @@ Last full read through 27/12/2020
|
|
41
41
|
|
42
42
|
</div>
|
43
43
|
|
44
|
-
<div class="hero__overlay env--
|
45
|
-
{%- picture {{ page.
|
44
|
+
<div class="hero__overlay env--walk">
|
45
|
+
{%- picture {{ page.walk.image | prepend: 'content/' }}
|
46
46
|
--img class="hero__image hero__filter pwp__hero h-100"
|
47
|
-
--alt {{ page.
|
47
|
+
--alt {{ page.walk.alt }} -%}</div>
|
48
48
|
|
49
49
|
</div>
|
50
50
|
|
@@ -7,7 +7,7 @@ layout: default
|
|
7
7
|
Last full read through 27/12/2020
|
8
8
|
|
9
9
|
##############################################
|
10
|
-
# PWP Layout /_layouts/env/
|
10
|
+
# PWP Layout /_layouts/env/walk.html
|
11
11
|
##############################################
|
12
12
|
|
13
13
|
-->
|
@@ -15,8 +15,8 @@ Last full read through 27/12/2020
|
|
15
15
|
|
16
16
|
<!-- assign description with site decsription as fallback -->
|
17
17
|
|
18
|
-
{% if site.data.copy.landing.
|
19
|
-
{% assign description = site.data.copy.landing.
|
18
|
+
{% if site.data.copy.landing.walk.description %}
|
19
|
+
{% assign description = site.data.copy.landing.walk.description %}
|
20
20
|
{% else %}
|
21
21
|
{% assign description = site.description %}
|
22
22
|
{% endif %}
|
@@ -31,7 +31,7 @@ Last full read through 27/12/2020
|
|
31
31
|
<div class="hero__strap hero__strap--center hero__strap--env">
|
32
32
|
<h1>
|
33
33
|
<span class="hero__strap--start">
|
34
|
-
{% assign header = site.data.copy.landing.
|
34
|
+
{% assign header = site.data.copy.landing.walk %}
|
35
35
|
{% assign title = header.title | split: " " %}
|
36
36
|
{% assign n = header.split %}
|
37
37
|
{% for word in (1..title.size) %}
|
@@ -79,8 +79,8 @@ Last full read through 27/12/2020
|
|
79
79
|
</div>
|
80
80
|
|
81
81
|
<div class="center-text strap__100 strap--opd-trust" id="content">
|
82
|
-
<h2>{{ site.data.copy.landing.
|
83
|
-
<p data-aos="fade-in">{{ site.data.copy.landing.
|
82
|
+
<h2>{{ site.data.copy.landing.walk.subtitle }}</h2>
|
83
|
+
<p data-aos="fade-in">{{ site.data.copy.landing.walk.strap }}</p>
|
84
84
|
</div>
|
85
85
|
|
86
86
|
<div class="segment__wrap">
|
@@ -93,7 +93,7 @@ Last full read through 27/12/2020
|
|
93
93
|
{{ description }}</p></div>
|
94
94
|
|
95
95
|
<div class="center-text segment__keywords strap--opd-trust">
|
96
|
-
{% assign keyword = site.data.copy.landing.
|
96
|
+
{% assign keyword = site.data.copy.landing.walk.keywords | split: ", " %}
|
97
97
|
{% for word in (1..keyword.size) %}
|
98
98
|
<h3 data-aos="fade-in">{{ keyword[forloop.index0] }}</h3>
|
99
99
|
{% endfor %}</div>
|
data/_sass/_colors/README.md
CHANGED
@@ -22,6 +22,6 @@ Collection of the above definitions.
|
|
22
22
|
|
23
23
|
Theme colouring for clinician environments. We import collection.sass and define `$env-primary` and `$env-secondary`.
|
24
24
|
|
25
|
-
##
|
25
|
+
## walk.sass
|
26
26
|
|
27
|
-
Theme colouring for
|
27
|
+
Theme colouring for walk environments. We import collection.sass and define `$env-primary` and `$env-secondary`.
|
data/_sass/env/landing.sass
CHANGED
@@ -59,7 +59,7 @@ body
|
|
59
59
|
.hero__filter
|
60
60
|
@include image-filter--mix
|
61
61
|
|
62
|
-
.env--
|
62
|
+
.env--walk
|
63
63
|
background-color: $opd-coral
|
64
64
|
|
65
65
|
.env--clinician
|
@@ -135,7 +135,7 @@ body
|
|
135
135
|
&:hover
|
136
136
|
box-shadow: 0 10px 15px -5px rgba($pure-black, .5)
|
137
137
|
|
138
|
-
.env__text.env--
|
138
|
+
.env__text.env--walk
|
139
139
|
@include build-in(slide-from-left)
|
140
140
|
border-radius: 6px 0 0 6px
|
141
141
|
box-shadow: -12px 10px 10px -10px $grey
|
@@ -162,7 +162,7 @@ body
|
|
162
162
|
height: 100%
|
163
163
|
top: 0
|
164
164
|
|
165
|
-
.env--
|
165
|
+
.env--walk
|
166
166
|
.landing__title
|
167
167
|
text-align: right
|
168
168
|
|
data/_sass/navigation/README.md
CHANGED
@@ -18,20 +18,20 @@ $baseurl: '{{ site.baseurl }}/'
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
-
@import '_colors/
|
21
|
+
@import '_colors/walk'
|
22
22
|
|
23
23
|
|
24
24
|
|
25
25
|
|
26
26
|
|
27
|
-
@import 'navigation/
|
27
|
+
@import 'navigation/walk'
|
28
28
|
|
29
29
|
|
30
30
|
|
31
31
|
|
32
32
|
|
33
33
|
|
34
|
-
@import 'env/
|
34
|
+
@import 'env/walk'
|
35
35
|
|
36
36
|
@import 'env/breakpoints/768'
|
37
37
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slow-steps
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Made Slowly
|
@@ -216,7 +216,7 @@ files:
|
|
216
216
|
- _layouts/default.html
|
217
217
|
- _layouts/env/clinician.html
|
218
218
|
- _layouts/env/landing.html
|
219
|
-
- _layouts/env/
|
219
|
+
- _layouts/env/walk.html
|
220
220
|
- _layouts/error-page.html
|
221
221
|
- _layouts/faq.html
|
222
222
|
- _layouts/feed.html
|
@@ -227,8 +227,8 @@ files:
|
|
227
227
|
- _sass/_colors/README.md
|
228
228
|
- _sass/_colors/_clinician.sass
|
229
229
|
- _sass/_colors/_mixins.sass
|
230
|
-
- _sass/_colors/_pwp.sass
|
231
230
|
- _sass/_colors/_variables.sass
|
231
|
+
- _sass/_colors/_walk.sass
|
232
232
|
- _sass/_colors/collection.sass
|
233
233
|
- _sass/_colors/global.sass
|
234
234
|
- _sass/_functions.sass
|
@@ -242,7 +242,7 @@ files:
|
|
242
242
|
- _sass/env/breakpoints/768.sass
|
243
243
|
- _sass/env/clinician.sass
|
244
244
|
- _sass/env/landing.sass
|
245
|
-
- _sass/env/
|
245
|
+
- _sass/env/walk.sass
|
246
246
|
- _sass/error-page.sass
|
247
247
|
- _sass/faq.sass
|
248
248
|
- _sass/feed.sass
|
@@ -259,7 +259,7 @@ files:
|
|
259
259
|
- _sass/navigation/collection.sass
|
260
260
|
- _sass/navigation/colors.sass
|
261
261
|
- _sass/navigation/no-nav.sass
|
262
|
-
- _sass/navigation/
|
262
|
+
- _sass/navigation/walk.sass
|
263
263
|
- _sass/post.sass
|
264
264
|
- _sass/product.sass
|
265
265
|
- _sass/typography/_variables.sass
|
@@ -267,7 +267,7 @@ files:
|
|
267
267
|
- _sass/typography/resets.sass
|
268
268
|
- assets/css/env/gaitq_clinician.sass
|
269
269
|
- assets/css/env/gaitq_landing.sass
|
270
|
-
- assets/css/env/
|
270
|
+
- assets/css/env/gaitq_walk.sass
|
271
271
|
- assets/css/gaitq_errors.sass
|
272
272
|
- assets/css/gaitq_post.sass
|
273
273
|
- assets/fonts/fontawesome-free-5.11.2-web/css/all.min.css
|