slow-steps 0.4.9 → 0.4.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/forms/formspree-contact.html +16 -0
- data/_includes/forms/kwes-contact.html +15 -0
- data/_includes/scripts.html +12 -3
- data/_layouts/contact.html +4 -1
- data/_layouts/faq.html +4 -2
- data/_sass/_colors/collection.sass +2 -0
- data/_sass/_colors/global.sass +5 -0
- data/_sass/contact.sass +0 -6
- data/_sass/faq.sass +1 -0
- data/assets/js/checkALL.js +14 -0
- metadata +6 -5
- data/_includes/contact-form-faq.html +0 -24
- data/_includes/contact-form.html +0 -18
- data/assets/fonts/fontawesome-free-5.11.2-web/css/.DS_Store +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73ea6fa26ac7676f7f512677fefc503708779f5ae37eca28941e1cd6e67a05a5
|
4
|
+
data.tar.gz: 9b8f6597cbe6fc4eb8acf79ebd869c43509f9cbffe34d532ec6b579e2c596994
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fa4e69b45cfb5cd1290b0f9bd56363542ca2a7734c9cd091a7c2ad7dfc07b2131f003ca790e10eecd5c48474a890420cd2344963d37992e0de36a31f2bea279
|
7
|
+
data.tar.gz: 6da22d679860be373f8aaf04133ff2e50800fa26898eb46a3872069b1858cad98c36b003684557876302f35ecfa2f87858b4230bd3096a4d292b0db9ef1c7f88
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<!-- formspree contact form only, header and styling in laytout -->
|
2
|
+
|
3
|
+
<form action="https://formspree.io/f/{{ site.formspree }}" method="post" >
|
4
|
+
|
5
|
+
<label for="name">Enter your full name</label>
|
6
|
+
<input type="text" class="form-element" name="name" id="name" placeholder="Your Name" required>
|
7
|
+
|
8
|
+
<label for="email">Enter your email</label>
|
9
|
+
<input type="text" class="form-element" name="email" id="email" placeholder="Your email" required>
|
10
|
+
|
11
|
+
<label for="message">Enter your message</label>
|
12
|
+
<textarea class="form-element" rows="5" name="message" id="message" placeholder="Your Message" required></textarea>
|
13
|
+
|
14
|
+
<button class="btn btn-pop btn-outline btn-contact" type="submit">SEND</button>
|
15
|
+
|
16
|
+
</form>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<!-- kwes contact form only, header and styling in laytout -->
|
2
|
+
<form class="kwes-form" action="https://kwes.io/api/foreign/forms/{{ site.kwes }}">
|
3
|
+
|
4
|
+
<label for="name">Enter your full name</label>
|
5
|
+
<input type="text" class="form-element" name="name" id="name" placeholder="Your Name" required>
|
6
|
+
|
7
|
+
<label for="email">Enter your email</label>
|
8
|
+
<input type="text" class="form-element" name="email" id="email" placeholder="Your email" required>
|
9
|
+
|
10
|
+
<label for="message">Enter your message</label>
|
11
|
+
<textarea class="form-element" rows="5" name="message" id="message" placeholder="Your Message" required></textarea>
|
12
|
+
|
13
|
+
<button class="btn btn-pop btn-outline btn-contact" type="submit">SEND</button>
|
14
|
+
|
15
|
+
</form>
|
data/_includes/scripts.html
CHANGED
@@ -12,6 +12,18 @@
|
|
12
12
|
|
13
13
|
{% endif %}
|
14
14
|
|
15
|
+
{% if scripts contains 'kwes' %}
|
16
|
+
|
17
|
+
<script src="https://kwes.io/v2/kwes-script.js" async></script>
|
18
|
+
|
19
|
+
{% endif %}
|
20
|
+
|
21
|
+
{% if scripts contains 'checkAll' %}
|
22
|
+
|
23
|
+
<script type="text/javascript" src="{{ '/assets/js/checkAll.js' | relative_url }}" async></script>
|
24
|
+
|
25
|
+
{% endif %}
|
26
|
+
|
15
27
|
<script type="text/javascript" src="{{ '/assets/js/animate_after_load.js' | relative_url }}" async></script>
|
16
28
|
|
17
29
|
<script type="text/javascript" src="{{ '/assets/js/calc-mobile-viewport.js' | relative_url}}" async></script>
|
@@ -26,9 +38,6 @@
|
|
26
38
|
|
27
39
|
<script type="text/javascript" src="{{ '/assets/vendor/aos/aos.js' | relative_url }}" ></script>
|
28
40
|
|
29
|
-
<!-- need to conditional load this. will sort that out after tyding up content repo 25 May 2021 Arran -->
|
30
|
-
<script src="https://kwes.io/v2/kwes-script.js" async></script>
|
31
|
-
|
32
41
|
{% include cookie-consent.html %}
|
33
42
|
|
34
43
|
<script>
|
data/_layouts/contact.html
CHANGED
@@ -31,7 +31,10 @@ layout: default
|
|
31
31
|
<div class="contact__wrapper" id="content">
|
32
32
|
|
33
33
|
<div class="contact--left">
|
34
|
-
|
34
|
+
<div class="contact-form">
|
35
|
+
<h4 class="form-instruction blue">Get in touch using the form below</h4>
|
36
|
+
{% include forms/kwes-contact.html %}
|
37
|
+
</div>
|
35
38
|
</div>
|
36
39
|
|
37
40
|
<div class="contact--right">
|
data/_layouts/faq.html
CHANGED
@@ -69,7 +69,9 @@ document.querySelectorAll('.faq__question').forEach(function(el){
|
|
69
69
|
|
70
70
|
|
71
71
|
<div class="faq__contact">
|
72
|
+
<div class="contact-form">
|
72
73
|
<h2 class="faq__contact--strap">Not found the answer?</h2>
|
73
|
-
|
74
|
-
|
74
|
+
<h4 class="form-instruction white">Get in touch using the form below</h4>
|
75
|
+
{% include forms/kwes-contact.html %}
|
76
|
+
</div>
|
75
77
|
</div>
|
data/_sass/contact.sass
CHANGED
data/_sass/faq.sass
CHANGED
@@ -0,0 +1,14 @@
|
|
1
|
+
// Check other options if all is checked
|
2
|
+
// This needs to be made more generic
|
3
|
+
function checkAll() {
|
4
|
+
var videoCall = document.getElementById("Video-call");
|
5
|
+
var phone = document.getElementById("phone");
|
6
|
+
var any = document.getElementById("Any");
|
7
|
+
if (any.checked == true ) {
|
8
|
+
videoCall.checked = true;
|
9
|
+
phone.checked = true;
|
10
|
+
} else {
|
11
|
+
videoCall.checked = false;
|
12
|
+
phone.checked = false;
|
13
|
+
}
|
14
|
+
}
|
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.14
|
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-
|
11
|
+
date: 2021-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -183,8 +183,6 @@ files:
|
|
183
183
|
- _includes/branding/site-logo.svg
|
184
184
|
- _includes/build-version.html
|
185
185
|
- _includes/contact-details.html
|
186
|
-
- _includes/contact-form-faq.html
|
187
|
-
- _includes/contact-form.html
|
188
186
|
- _includes/cookie-consent.html
|
189
187
|
- _includes/env_filter.html
|
190
188
|
- _includes/errors/robot-403.svg
|
@@ -192,6 +190,8 @@ files:
|
|
192
190
|
- _includes/errors/robot-405.svg
|
193
191
|
- _includes/footer/footer.html
|
194
192
|
- _includes/footer/footer_redesign.html
|
193
|
+
- _includes/forms/formspree-contact.html
|
194
|
+
- _includes/forms/kwes-contact.html
|
195
195
|
- _includes/forms/mc-register.html
|
196
196
|
- _includes/functions/calc-svg-coord.html
|
197
197
|
- _includes/functions/reposition-svg-labels.html
|
@@ -230,6 +230,7 @@ files:
|
|
230
230
|
- _sass/_colors/_pwp.sass
|
231
231
|
- _sass/_colors/_variables.sass
|
232
232
|
- _sass/_colors/collection.sass
|
233
|
+
- _sass/_colors/global.sass
|
233
234
|
- _sass/_functions.sass
|
234
235
|
- _sass/_mixins.sass
|
235
236
|
- _sass/_variables.sass
|
@@ -269,7 +270,6 @@ files:
|
|
269
270
|
- assets/css/env/gaitq_pwp.sass
|
270
271
|
- assets/css/gaitq_errors.sass
|
271
272
|
- assets/css/gaitq_post.sass
|
272
|
-
- assets/fonts/fontawesome-free-5.11.2-web/css/.DS_Store
|
273
273
|
- assets/fonts/fontawesome-free-5.11.2-web/css/all.min.css
|
274
274
|
- assets/fonts/fontawesome-free-5.11.2-web/webfonts/fa-brands-400.eot
|
275
275
|
- assets/fonts/fontawesome-free-5.11.2-web/webfonts/fa-brands-400.svg
|
@@ -289,6 +289,7 @@ files:
|
|
289
289
|
- assets/images/augmented_image.png
|
290
290
|
- assets/js/animate_after_load.js
|
291
291
|
- assets/js/calc-mobile-viewport.js
|
292
|
+
- assets/js/checkALL.js
|
292
293
|
- assets/js/mobile-nav-slider.js
|
293
294
|
- assets/js/nav-scroll.js
|
294
295
|
- assets/js/svg_aos.js
|
@@ -1,24 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
changed from formspree to kwes 25 May 2021 Arran
|
3
|
-
-->
|
4
|
-
|
5
|
-
<!-- script has been moved to slow-steps/_includes/scripts.html -->
|
6
|
-
<!--<script src="https://kwes.io/v2/kwes-script.js" defer></script>-->
|
7
|
-
<div class="contact-form">
|
8
|
-
<h4 class="form-instruction-FAQ">Get in touch using the form below</h4>
|
9
|
-
|
10
|
-
<form class="kwes-form" action="https://kwes.io/api/foreign/forms/{{ site.kwes }}">
|
11
|
-
|
12
|
-
<label for="name">Enter your full name</label>
|
13
|
-
<input type="text" class="form-element" name="name" id="name" placeholder="Your Name" required>
|
14
|
-
|
15
|
-
<label for="email">Enter your email</label>
|
16
|
-
<input type="text" class="form-element" name="email" id="email" placeholder="Your email" required>
|
17
|
-
|
18
|
-
<label for="message">Enter your message</label>
|
19
|
-
<textarea class="form-element" rows="5" name="message" id="message" placeholder="Your Message" required></textarea>
|
20
|
-
|
21
|
-
<button class="btn btn-pop btn-outline btn-contact" type="submit">SEND</button>
|
22
|
-
|
23
|
-
</form>
|
24
|
-
</div>
|
data/_includes/contact-form.html
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
<div class="contact-form">
|
2
|
-
<h4 class="form-instruction">Get in touch using the form below</h4>
|
3
|
-
|
4
|
-
<form action="https://formspree.io/f/{{ site.formspree }}" method="post" >
|
5
|
-
|
6
|
-
<label for="name">Enter your full name</label>
|
7
|
-
<input type="text" class="form-element" name="name" id="name" placeholder="Your Name" required>
|
8
|
-
|
9
|
-
<label for="email">Enter your email</label>
|
10
|
-
<input type="text" class="form-element" name="email" id="email" placeholder="Your email" required>
|
11
|
-
|
12
|
-
<label for="message">Enter your message</label>
|
13
|
-
<textarea class="form-element" rows="5" name="message" id="message" placeholder="Your Message" required></textarea>
|
14
|
-
|
15
|
-
<button class="btn btn-pop btn-outline btn-contact" type="submit">SEND</button>
|
16
|
-
|
17
|
-
</form>
|
18
|
-
</div>
|
Binary file
|