slow-steps 1.0.1 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa93642a92cd8b7b7275ca1385f45e6021ad1b76753ffe57c9dbcfa7f99fa05c
4
- data.tar.gz: 8deeca705a7bcb3be9a810e44d670e79f424f5f8b3cf658d3b2d978b73f0a43b
3
+ metadata.gz: 8a9ce0e686c9e7d7bd4afdb0e766648ec38e70d6030dc71960549f0b4e5f60ef
4
+ data.tar.gz: 877baf060f0ecce43c6a61d8601d5dea0108bda9bc7644f423a2dc79a45955e7
5
5
  SHA512:
6
- metadata.gz: fd0d882125b419df0b6cf8cb9b99fe87201e14d9b57cd5b955b312f145a904d7173483563b6de60e81bac6532f8802825d1f5fd6a28ec96f5c719dab122b8945
7
- data.tar.gz: aa0eff6cad2b4fb6d5d692c5f1172e8f95546a9dd5a2b0dea16a5e38baecdbda4bba7a72a374d59c8fb73e42e5e00ce1a1b489797be887387700fb4a1c8a856c
6
+ metadata.gz: cd2bdc37ebbdcd786a5535335c20079e67dd31a8bb2c8a8defd3795b663fdc6eaf514d9331f0a20db57585f044ec1926e707b293b6170ad7e104b0951b8d69db
7
+ data.tar.gz: 4bfcdee88fc3238db57bb2bc18e62dffa54c3b4e3840c57dcad7ce17343867534814205b75f1357d7a62dd5c63dd4cb570073dc4a93d87137bf39e30f7461ee2
data/README.md CHANGED
@@ -117,8 +117,8 @@ https://github.com/madeslowly/slow-steps/
117
117
  | | |
118
118
  | | ├─ gaitq_global.sass # Global CSS, included on ALL pages
119
119
  | | ├─ gaitq_gaitq.sass # GaitQ env CSS
120
- | | ├─ gaitq_patients.sass # Patient env CSS
121
- | | ├─ gaitq_clinician.sass # Clinician env CSS
120
+ | | ├─ gaitq_walk.sass # walk env CSS
121
+ | | ├─ gaitq_data.sass # data env CSS
122
122
  | | ├─ gaitq_landing.sass # Landing page CSS
123
123
  | |
124
124
  | ├─ img/ # All our imagery
data/_config.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ################################################################################
2
2
  #
3
- # Configuration for Slow Steps theme with /gaitq-content/
3
+ # Configuration for Slow Steps theme
4
4
  #
5
5
  #################################################################################
6
6
 
@@ -34,7 +34,6 @@ plugins:
34
34
  - jekyll-image-size # https://github.com/generalui/jekyll-image-size
35
35
  - jekyll_picture_tag
36
36
 
37
-
38
37
  sass:
39
38
  style: compressed
40
39
  load_paths:
@@ -54,3 +53,5 @@ picture:
54
53
  source: 'assets/images'
55
54
  output: 'assets/images'
56
55
  strip_metadata: true
56
+ suppress_warnings: true
57
+ #disabled: true
@@ -2,7 +2,7 @@
2
2
  <!-- trying to figure out how to generate a feColorMatrix based on an input rgba -->
3
3
  <svg id="env_filter">
4
4
  <defs>
5
- <filter id="pwp_filter">
5
+ <filter id="walk_filter">
6
6
  <feComponentTransfer>
7
7
  <feFuncG type="table" tableValues="0.0 0.15 0.8 1.0" />
8
8
  </feComponentTransfer>
@@ -7,7 +7,7 @@ layout: default
7
7
  Last full read through 27/12/2020
8
8
 
9
9
  ##############################################
10
- # Clinician Layout/_layouts/env/data.html
10
+ # Data Layout/_layouts/env/data.html
11
11
  ##############################################
12
12
 
13
13
  -->
@@ -43,7 +43,7 @@ Last full read through 27/12/2020
43
43
 
44
44
  <div class="hero__overlay env--walk">
45
45
  {%- picture {{ page.walk.image | prepend: 'content/' }}
46
- --img class="hero__image hero__filter pwp__hero h-100"
46
+ --img class="hero__image hero__filter walk__hero h-100"
47
47
  --alt {{ page.walk.alt }} -%}</div>
48
48
 
49
49
  </div>
@@ -77,7 +77,7 @@ Last full read through 27/12/2020
77
77
 
78
78
  <div class="hero__overlay env--data">
79
79
  {%- picture {{ page.data.image | prepend: 'content/' }}
80
- --img class="hero__image hero__filter clinician__hero h-100"
80
+ --img class="hero__image hero__filter data__hero h-100"
81
81
  --alt {{ page.data.alt }} -%}</div>
82
82
 
83
83
  </div>
@@ -0,0 +1,64 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <!--
6
+
7
+ Last full read through 27/05/2021
8
+
9
+ ##############################################
10
+ # Temp Landing Layout /_layouts/env/tmp-wal-only-landing.html
11
+ ##############################################
12
+
13
+ Temp layout during the walk only period
14
+
15
+ -->
16
+
17
+ <div class="landing__page" style="justify-content: center">
18
+ <!-- setup liquid variables -->
19
+ {%- assign env = site.data.menu.navigation | where: 'env', 'walk' -%}
20
+ {%- assign env = env[0] -%}
21
+
22
+ {%- assign cta = env.submenu | where: 'cta', 'true' -%}
23
+ {%- assign cta = cta[0] -%}
24
+
25
+ {%- assign cta_2 = env.submenu | where: 'cta', 'landing' -%}
26
+ {%- assign cta_2 = cta_2[0] -%}
27
+
28
+ <div class="" style="justify-content: center;">
29
+
30
+ <div class="env__text env--walk" style="border-radius: 6px; position: inherit; margin-top: 45vh;">
31
+
32
+ <a class="landing__link" aria-label="{{ env.aria }}" href="{{ env.url | relative_url }}">
33
+
34
+ <h3 class="landing__title" style="text-align: center; ">{{ env.name | upcase }}</h3></a>
35
+
36
+ <div class="landing__strap" style="animation: cubic-bezier(0.42, 0, 0.32, 1) openUp 1s forwards; animation-delay: .8s;" >
37
+ <p>{{ site.data.copy.landing.landing.walk }}</p>
38
+ <div class="landing__cta">
39
+ <a class="primary__cta" aria-label="{{ cta.aria }}" href="{{ cta.url | relative_url }}">{{ cta.name }}</a>
40
+ <a class="secondary__cta" aria-label="{{ cta_2.aria }}" href="{{ cta_2.url | relative_url }}">More Info</a>
41
+ </div>
42
+ </div>
43
+
44
+ </div>
45
+
46
+ <div class="hero__overlay env--walk" style="width: 100%; left: 0">
47
+ {%- picture {{ page.walk.image | prepend: 'content/' }}
48
+ --img class="hero__image hero__filter walk__hero h-100"
49
+ --alt {{ page.walk.alt }} -%}</div>
50
+
51
+ </div>
52
+
53
+ </div>
54
+
55
+ <style>
56
+ @keyframes openUp {
57
+ from {
58
+ max-height: 0;
59
+ }
60
+ to {
61
+ max-height: 400px;
62
+ }
63
+ }
64
+ </style>
@@ -7,7 +7,7 @@ layout: default
7
7
  Last full read through 27/12/2020
8
8
 
9
9
  ##############################################
10
- # PWP Layout /_layouts/env/walk.html
10
+ # walk Layout /_layouts/env/walk.html
11
11
  ##############################################
12
12
 
13
13
  -->
@@ -47,7 +47,7 @@
47
47
  & > *
48
48
  padding: 0
49
49
 
50
- .clinician__strap
50
+ .data__strap
51
51
  h1
52
52
  display: block
53
53
 
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: 1.0.1
4
+ version: 1.0.6
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-05-27 00:00:00.000000000 Z
11
+ date: 2021-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -216,6 +216,7 @@ files:
216
216
  - _layouts/default.html
217
217
  - _layouts/env/data.html
218
218
  - _layouts/env/landing.html
219
+ - _layouts/env/tmp-walk-only-landing.html
219
220
  - _layouts/env/walk.html
220
221
  - _layouts/error-page.html
221
222
  - _layouts/faq.html
@@ -316,7 +317,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
316
317
  - !ruby/object:Gem::Version
317
318
  version: '0'
318
319
  requirements: []
319
- rubygems_version: 3.1.2
320
+ rubygems_version: 3.0.8
320
321
  signing_key:
321
322
  specification_version: 4
322
323
  summary: A bold jekyll theme