slow-steps 0.3.0 → 0.3.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/footer/footer_full.html +1 -1
- data/_layouts/env/landing.html +4 -4
- data/_sass/collage.sass +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c57c7f758e1528b2e7d76d0f5df919405de77926eee111a884954209cb2d457e
|
4
|
+
data.tar.gz: c20981bb357053f058125f4f2bbb7d48b84375c1e540b8e37b4e2fb0653bd27d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c20c20645f43fe7723801ae686c277450e2ba5779844ab646c2c7e69be88d4d637ab60cd7aba4d92a3b615125ff15ce5d6ad3db79072a0fd2de2d82d4c7f63d
|
7
|
+
data.tar.gz: 1a5861a0fcc5e2f1b2f3f1a8acc8b710a07786cdd02cfba8bdaa4eb7d4f5dbef44ae4ace4f17a9116997c5d728a443860f148b36af725b90e2dbd423dcdd2974
|
@@ -47,7 +47,7 @@
|
|
47
47
|
<h4 class="ft__sitemap--env-header">{{ item.name }}</h4>
|
48
48
|
<ul class="ft__sitemap--submenu">
|
49
49
|
{% for sub in item.submenu %}
|
50
|
-
<li><a class="ft--link" href="{{ sub.url }}">{{ sub.alt }}</a></li>
|
50
|
+
<li><a class="ft--link" href="{{ sub.url | relative_url }}">{{ sub.alt }}</a></li>
|
51
51
|
{% endfor %}
|
52
52
|
</ul>
|
53
53
|
</div>
|
data/_layouts/env/landing.html
CHANGED
@@ -34,8 +34,8 @@ Last full read through 27/12/2020
|
|
34
34
|
<div class="landing__strap">
|
35
35
|
<p>{{ site.data.copy.landing.landing.pwp }}</p>
|
36
36
|
<div class="landing__cta">
|
37
|
-
<a class="primary__cta" aria-label="{{ cta.aria }}" href="{{ cta.url }}">Sign up</a>
|
38
|
-
<a class="secondary__cta" aria-label="{{ cta_2.aria }}" href="{{ cta_2.url }}">More Info</a>
|
37
|
+
<a class="primary__cta" aria-label="{{ cta.aria }}" href="{{ cta.url | relative_url }}">Sign up</a>
|
38
|
+
<a class="secondary__cta" aria-label="{{ cta_2.aria }}" href="{{ cta_2.url | relative_url }}">More Info</a>
|
39
39
|
</div>
|
40
40
|
</div>
|
41
41
|
|
@@ -68,8 +68,8 @@ Last full read through 27/12/2020
|
|
68
68
|
<div class="landing__strap">
|
69
69
|
<p>{{ site.data.copy.landing.landing.clinician }}</p>
|
70
70
|
<div class="landing__cta">
|
71
|
-
<a class="primary__cta" aria-label="{{ cta.aria }}" href="{{ cta.url }}">Register interest</a>
|
72
|
-
<a class="secondary__cta" aria-label="{{ cta_2.aria }}" href="{{ cta_2.url }}">More Info</a>
|
71
|
+
<a class="primary__cta" aria-label="{{ cta.aria }}" href="{{ cta.url | relative_url }}">Register interest</a>
|
72
|
+
<a class="secondary__cta" aria-label="{{ cta_2.aria }}" href="{{ cta_2.url | relative_url }}">More Info</a>
|
73
73
|
</div>
|
74
74
|
</div>
|
75
75
|
|
data/_sass/collage.sass
CHANGED