@moreonion/foundist 3.4.0-beta → 3.4.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.
Files changed (59) hide show
  1. package/package.json +19 -17
  2. package/src/html/basic-action-page-cover-1col-with-headline.html +14 -12
  3. package/src/html/basic-action-page-cover-1col.html +9 -7
  4. package/src/html/basic-action-page-cover-2col-reversed.html +9 -7
  5. package/src/html/basic-action-page-cover-2col-with-headline.html +13 -11
  6. package/src/html/basic-action-page-cover-2col.html +9 -7
  7. package/src/html/basic-action-page-cover-banner-with-headline.html +13 -11
  8. package/src/html/basic-action-page-cover-banner.html +9 -7
  9. package/src/html/basic-action-page-reversed.html +7 -5
  10. package/src/html/basic-action-page-with-banner-and-headline.html +13 -11
  11. package/src/html/basic-action-page-with-banner-reversed.html +9 -7
  12. package/src/html/basic-action-page-with-banner.html +9 -7
  13. package/src/html/basic-action-page-with-callouts.html +7 -5
  14. package/src/html/basic-action-page.html +7 -5
  15. package/src/html/donation-action-page.html +6 -4
  16. package/src/html/e2t-action-page.html +7 -5
  17. package/src/html/includes/language-switcher.html +1 -2
  18. package/src/html/includes/letter.html +1 -1
  19. package/src/html/includes/menu-responsive.html +17 -0
  20. package/src/html/includes/menu.html +7 -5
  21. package/src/html/includes/section-1col.html +1 -1
  22. package/src/html/includes/section-2col.html +1 -1
  23. package/src/html/includes/section-quote.html +1 -1
  24. package/src/html/includes/section-slideshow.html +3 -3
  25. package/src/html/includes/teasers.html +1 -1
  26. package/src/html/index.html +58 -0
  27. package/src/html/login-page.html +4 -2
  28. package/src/html/signup-action-page.html +6 -4
  29. package/src/html/snippets-demo.html +13 -7
  30. package/src/html/teaser-page.html +5 -3
  31. package/src/html/templates/action-page-cover-banner.html +1 -1
  32. package/src/html/templates/action-page-reversed.html +1 -1
  33. package/src/html/templates/action-page.html +2 -2
  34. package/src/html/templates/page.html +3 -0
  35. package/src/html/thank-you-page-cover-1col-with-headline.html +10 -8
  36. package/src/html/thank-you-page-cover-1col.html +6 -4
  37. package/src/html/thank-you-page-cover-2col-with-headline.html +11 -9
  38. package/src/html/thank-you-page-cover-2col.html +7 -5
  39. package/src/html/thank-you-page-cover-banner-with-headline.html +10 -8
  40. package/src/html/thank-you-page-cover-banner.html +6 -4
  41. package/src/html/thank-you-page-with-banner-and-headline.html +10 -8
  42. package/src/html/thank-you-page-with-banner.html +6 -4
  43. package/src/html/thank-you-page.html +6 -4
  44. package/src/html/typography-static-page.html +6 -4
  45. package/src/scss/components/_accordion.scss +2 -1
  46. package/src/scss/components/_headline.scss +1 -0
  47. package/src/scss/components/_menu.scss +19 -3
  48. package/src/scss/components/_mobile-menu.scss +153 -0
  49. package/src/scss/components/_quote.scss +23 -20
  50. package/src/scss/components/_settings.scss +4 -2
  51. package/src/scss/components/_sticky-button.scss +2 -1
  52. package/src/scss/components/_top-bar.scss +35 -0
  53. package/src/scss/form/_paymethod-select-button.scss +18 -13
  54. package/src/scss/layout/_backgrounds.scss +9 -3
  55. package/src/scss/layout/_cover-banner.scss +6 -0
  56. package/src/scss/layout/_cover.scss +6 -0
  57. package/src/scss/main.scss +2 -1
  58. package/src/scss/typography/_elements.scss +1 -0
  59. package/src/html/dev-index.html +0 -58
@@ -1,4 +1,6 @@
1
- {% extends "src/html/templates/action-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/action-page.html" %}
2
4
 
3
5
  {% set layout = "default" %}
4
6
 
@@ -14,20 +16,20 @@
14
16
  {% endblock %}
15
17
 
16
18
  {% block progress_bar %}
17
- {% include "src/html/includes/pgbar.html" %}
19
+ {% include settings.html_path + "/includes/pgbar.html" %}
18
20
  {% endblock %}
19
21
 
20
22
  {% block form %}
21
- {% include "src/html/includes/basic-form.html" %}
23
+ {% include settings.html_path + "/includes/basic-form.html" %}
22
24
  {% endblock %}
23
25
 
24
26
  {% block recent_supporters %}
25
- {% include "src/html/includes/recent-supporters.html" %}
27
+ {% include settings.html_path + "/includes/recent-supporters.html" %}
26
28
  {% endblock %}
27
29
 
28
30
  {% block content_top %}
29
31
  <div class="media-stretch">
30
- <img src="http://placekitten.com/860/455" alt="test image with cats" crossorigin="">
32
+ <img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
31
33
  </div>
32
34
  {% endblock %}
33
35
 
@@ -1,4 +1,6 @@
1
- {% extends "src/html/templates/action-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/action-page.html" %}
2
4
 
3
5
  {% set layout = "default" %}
4
6
 
@@ -14,16 +16,16 @@
14
16
  {% endblock %}
15
17
 
16
18
  {% block progress_bar %}
17
- {% include "src/html/includes/pgbar-thermometer.html" %}
19
+ {% include settings.html_path + "/includes/pgbar-thermometer.html" %}
18
20
  {% endblock %}
19
21
 
20
22
  {% block form %}
21
- {% include "src/html/includes/donate-form.html" %}
23
+ {% include settings.html_path + "/includes/donate-form.html" %}
22
24
  {% endblock %}
23
25
 
24
26
  {% block content_top %}
25
27
  <div class="media-stretch">
26
- <img src="http://placekitten.com/860/460" alt="test image with cats" crossorigin="">
28
+ <img src="https://loremflickr.com/860/460/cat" alt="test image with cats" crossorigin="">
27
29
  </div>
28
30
  {% endblock %}
29
31
 
@@ -1,4 +1,6 @@
1
- {% extends "src/html/templates/action-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/action-page.html" %}
2
4
 
3
5
  {% set layout = "default" %}
4
6
 
@@ -14,21 +16,21 @@
14
16
  {% endblock %}
15
17
 
16
18
  {% block form %}
17
- {% include "src/html/includes/e2t-single-form.html" %}
19
+ {% include settings.html_path + "/includes/e2t-single-form.html" %}
18
20
  {% endblock %}
19
21
 
20
22
  {% block recent_supporters %}
21
- {% include "src/html/includes/recent-supporters-comments.html" %}
23
+ {% include settings.html_path + "/includes/recent-supporters-comments.html" %}
22
24
  {% endblock %}
23
25
 
24
26
  {% block content_top %}
25
27
  <div class="media-stretch">
26
- <img src="http://placekitten.com/860/460" alt="test image with cats" crossorigin="">
28
+ <img src="https://loremflickr.com/860/460/cat" alt="test image with cats" crossorigin="">
27
29
  </div>
28
30
  {% endblock %}
29
31
 
30
32
  {% block content %}
31
33
  <h2>Cougar British shorthair turkish angora</h2>
32
34
  <p>Twitch tail in permanent irritation attempt to leap between furniture but woefully miscalibrate and bellyflop onto the floor; what's your problem? Get my claw stuck in the dog's ear. Lick plastic bags ask to go outside and ask to come inside and ask to go outside and ask to come inside hell is other people, ignore the squirrels, you'll never catch them anyway or walk on car leaving trail of paw prints on hood and windshield.</p>
33
- {% include "src/html/includes/letter.html" %}
35
+ {% include settings.html_path + "/includes/letter.html" %}
34
36
  {% endblock %}
@@ -1,5 +1,4 @@
1
- <!-- linthtml-configure attr-req-value="false" -->
2
- <nav>
1
+ <nav aria-label="Switch locales">
3
2
  <ul class="dropdown menu" data-dropdown-menu="true" data-disable-hover="true" data-click-open="true">
4
3
  <li>
5
4
  <a href="#">English</a>
@@ -6,7 +6,7 @@
6
6
  <p>Yours,</p>
7
7
  <ul class="signatures">
8
8
  <li>
9
- <span class="signature-image"><img src="http://placekitten.com/100/100" alt="portrait of a cat" crossorigin=""></span>
9
+ <span class="signature-image"><img src="https://loremflickr.com/100/100/cat,portrait/all" alt="portrait of a cat" crossorigin=""></span>
10
10
  <span class="signature-name">Kitty</span>
11
11
  <span class="signature-description">the cat</span>
12
12
  </li>
@@ -0,0 +1,17 @@
1
+ <button type="button"
2
+ class="mobile-menu-toggle"
3
+ data-toggle="mobile-menu"
4
+ aria-hidden="true"
5
+ tabindex="-1"><span class="menu-icon"></span>
6
+ </button>
7
+ <div id="mobile-menu" class="mobile-menu" data-toggler="open">
8
+ {% include "./menu.html" %}
9
+ {% include "./language-switcher.html" %}
10
+ <button type="button"
11
+ class="close-button large"
12
+ data-toggle="mobile-menu"
13
+ aria-hidden="true"
14
+ tabindex="-1"
15
+ onclick="event.target.blur();">
16
+ </button>
17
+ </div>
@@ -1,5 +1,7 @@
1
- <ul class="menu">
2
- <li><a href="#">About cats</a></li>
3
- <li><a href="#">Meouw</a></li>
4
- <li><a href="#">Another link</a></li>
5
- </ul>
1
+ <nav aria-label="Main menu">
2
+ <ul class="menu">
3
+ <li class="is-active"><a href="#">About cats</a></li>
4
+ <li><a href="#">Meouw</a></li>
5
+ <li><a href="#">Another link</a></li>
6
+ </ul>
7
+ </nav>
@@ -1,6 +1,6 @@
1
1
  <section>
2
2
  <div class="background">
3
- <img src="http://placekitten.com/1600/1000" alt="test image with cats" crossorigin="">
3
+ <img src="https://loremflickr.com/1600/1000/cat" alt="test image with cats" crossorigin="">
4
4
  </div>
5
5
  <div class="grid-container narrow">
6
6
  <blockquote>
@@ -1,7 +1,7 @@
1
1
  <section>
2
2
  <div class="grid-container">
3
3
  <div class="column media-stretch">
4
- <img src="http://placekitten.com/600/400" alt="test image with cats" crossorigin="">
4
+ <img src="https://loremflickr.com/600/400/cat" alt="test image with cats" crossorigin="">
5
5
  </div>
6
6
  <div class="column">
7
7
  <h2>What's your problem?</h2>
@@ -1,7 +1,7 @@
1
1
  <section class="blockquote-section">
2
2
  <div class="grid-container">
3
3
  <div class="column blockquote-image">
4
- <img src="http://placekitten.com/500/500" alt="test image with cats" crossorigin="">
4
+ <img src="https://loremflickr.com/500/500/cat" alt="test image with cats" crossorigin="">
5
5
  </div>
6
6
  <div class="column">
7
7
  <blockquote>
@@ -1,8 +1,8 @@
1
1
  {% macro img_slide(width, height) %}
2
2
  <li>
3
3
  <img
4
- src="http://placekitten.com/{{ width|default([480, 640, 880, 1280]|random) }}/{{ height|default([480, 640, 880]|random) }}"
5
- alt="test image with cats"
4
+ src="https://loremflickr.com/{{ width|default([480, 640, 880, 1280]|random) }}/{{ height|default([480, 640, 880]|random) }}/animal"
5
+ alt="test image with random animal"
6
6
  crossorigin=""
7
7
  >
8
8
  </li>
@@ -12,7 +12,7 @@
12
12
  <li>
13
13
  <div class="card">
14
14
  <div class="card-image">
15
- <img src="http://placekitten.com/480/270" alt="test image with cats" crossorigin="">
15
+ <img src="https://loremflickr.com/480/270/cat" alt="test image with cats" crossorigin="">
16
16
  </div>
17
17
  <div class="card-section">
18
18
  <p>{{ caption }}</p>
@@ -1,7 +1,7 @@
1
1
  {% macro teaser(title) %}
2
2
  <article class="card">
3
3
  <div class="card-image">
4
- <img src="http://placekitten.com/480/270" alt="test image with cats" crossorigin="">
4
+ <img src="https://loremflickr.com/480/270/cat" alt="test image with cats" crossorigin="">
5
5
  </div>
6
6
  <div class="card-section">
7
7
  <div class="progress-wrapper" data-pgbar-current="140" data-pgbar-target="200">
@@ -0,0 +1,58 @@
1
+ {% extends "./templates/page.html" %}
2
+
3
+ {% block page_title %}{{ settings.site_name }}{% endblock %}
4
+
5
+ {% block content %}
6
+ <p>Documentation for <a href="https://get.foundation/sites/docs/">Foundation</a></p>
7
+ <h2>Example pages</h2>
8
+ <ul class="no-bullet">
9
+ <li><a href="{{ settings.html_path }}/basic-action-page.html">Basic action page</a></li>
10
+ <li><a href="{{ settings.html_path }}/e2t-action-page.html">Email to target page</a></li>
11
+ <li><a href="{{ settings.html_path }}/donation-action-page.html">Donation page</a></li>
12
+ <li><a href="{{ settings.html_path }}/signup-action-page.html">Sign up page</a></li>
13
+ <li><a href="{{ settings.html_path }}/thank-you-page.html">Thank you page</a></li>
14
+ <li><a href="{{ settings.html_path }}/thank-you-page.html#overlay">Thank you page with overlay</a></li>
15
+ <li><a href="{{ settings.html_path }}/login-page.html">Login page</a></li>
16
+ <li><a href="{{ settings.html_path }}/teaser-page.html">Teasers</a></li>
17
+ <li><a href="{{ settings.html_path }}/basic-action-page-with-callouts.html">Basic action page with callout messages</a></li>
18
+ <li><a href="{{ settings.html_path }}/typography-static-page.html">Typographic elements</a></li>
19
+ <li><a href="{{ settings.html_path }}/snippets-demo.html">Snippets demo</a></li>
20
+ </ul>
21
+ <h3>Layout variations</h3>
22
+ <h4 class="h6">A: Standard (2 columns) &ensp;<small>default</small></h4>
23
+ <ul class="no-bullet">
24
+ <li><a href="{{ settings.html_path }}/basic-action-page.html">Basic action page</a></li>
25
+ <li><a href="{{ settings.html_path }}/basic-action-page-reversed.html">Basic action page reversed</a></li>
26
+ <li><a href="{{ settings.html_path }}/thank-you-page.html">Thank you page</a></li>
27
+ </ul>
28
+ <h4 class="h6">B: Banner image (2 columns) &ensp;<small>banner</small></h4>
29
+ <ul class="no-bullet">
30
+ <li><a href="{{ settings.html_path }}/basic-action-page-with-banner.html">Basic action page</a></li>
31
+ <li><a href="{{ settings.html_path }}/basic-action-page-with-banner-and-headline.html">Basic action page with headline and bottom sections</a></li>
32
+ <li><a href="{{ settings.html_path }}/basic-action-page-with-banner-reversed.html">Basic action page reversed</a></li>
33
+ <li><a href="{{ settings.html_path }}/thank-you-page-with-banner.html">Thank you page</a></li>
34
+ <li><a href="{{ settings.html_path }}/thank-you-page-with-banner-and-headline.html">Thank you page with headline and bottom sections</a></li>
35
+ </ul>
36
+ <h4 class="h6">C: Fixed background image (2 columns) &ensp;<small>cover-2col</small></h4>
37
+ <ul class="no-bullet">
38
+ <li><a href="{{ settings.html_path }}/basic-action-page-cover-2col.html">Basic action page</a></li>
39
+ <li><a href="{{ settings.html_path }}/basic-action-page-cover-2col-with-headline.html">Basic action page with headline and bottom sections</a></li>
40
+ <li><a href="{{ settings.html_path }}/basic-action-page-cover-2col-reversed.html">Basic action page reversed</a></li>
41
+ <li><a href="{{ settings.html_path }}/thank-you-page-cover-2col.html">Thank you page</a></li>
42
+ <li><a href="{{ settings.html_path }}/thank-you-page-cover-2col-with-headline.html">Thank you page with headline and bottom sections</a></li>
43
+ </ul>
44
+ <h4 class="h6">D: Fixed banner image (2 columns) &ensp;<small>cover-banner</small></h4>
45
+ <ul class="no-bullet">
46
+ <li><a href="{{ settings.html_path }}/basic-action-page-cover-banner.html">Basic action page</a></li>
47
+ <li><a href="{{ settings.html_path }}/basic-action-page-cover-banner-with-headline.html">Basic action page with headline and bottom sections</a></li>
48
+ <li><a href="{{ settings.html_path }}/thank-you-page-cover-banner.html">Thank you page</a></li>
49
+ <li><a href="{{ settings.html_path }}/thank-you-page-cover-banner-with-headline.html">Thank you page with headline and bottom sections</a></li>
50
+ </ul>
51
+ <h4 class="h6">E: Fixed background image (1 column) &ensp;<small>cover-1col</small></h4>
52
+ <ul class="no-bullet">
53
+ <li><a href="{{ settings.html_path }}/basic-action-page-cover-1col.html">Basic action page</a></li>
54
+ <li><a href="{{ settings.html_path }}/basic-action-page-cover-1col-with-headline.html">Basic action page with headline and bottom sections</a></li>
55
+ <li><a href="{{ settings.html_path }}/thank-you-page-cover-1col.html">Thank you page</a></li>
56
+ <li><a href="{{ settings.html_path }}/thank-you-page-cover-1col-with-headline.html">Thank you page with headline and bottom sections</a></li>
57
+ </ul>
58
+ {% endblock %}
@@ -1,7 +1,9 @@
1
- {% extends "src/html/templates/page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/page.html" %}
2
4
 
3
5
  {% block page_title %}User account{% endblock %}
4
6
 
5
7
  {% block content %}
6
- {% include "src/html/includes/login-form.html" %}
8
+ {% include settings.html_path + "/includes/login-form.html" %}
7
9
  {% endblock %}
@@ -1,4 +1,6 @@
1
- {% extends "src/html/templates/action-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/action-page.html" %}
2
4
 
3
5
  {% set layout = "default" %}
4
6
 
@@ -14,16 +16,16 @@
14
16
  {% endblock %}
15
17
 
16
18
  {% block progress_bar %}
17
- {% include "src/html/includes/pgbar.html" %}
19
+ {% include settings.html_path + "/includes/pgbar.html" %}
18
20
  {% endblock %}
19
21
 
20
22
  {% block form %}
21
- {% include "src/html/includes/signup-form.html" %}
23
+ {% include settings.html_path + "/includes/signup-form.html" %}
22
24
  {% endblock %}
23
25
 
24
26
  {% block content_top %}
25
27
  <div class="media-stretch">
26
- <img src="http://placekitten.com/860/455" alt="test image with cats" crossorigin="">
28
+ <img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
27
29
  </div>
28
30
  {% endblock %}
29
31
 
@@ -1,24 +1,30 @@
1
- {% extends "src/html/templates/page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/page.html" %}
2
4
 
3
5
  {% block page_title %}Snippets demo{% endblock %}
4
6
 
7
+ {% block header %}
8
+ {% include settings.html_path + "/includes/menu-responsive.html" %}
9
+ {% endblock %}
10
+
5
11
  {% block content %}
6
12
  <h2>Accordion</h2>
7
- {% include "src/html/includes/accordion.html" %}
13
+ {% include settings.html_path + "/includes/accordion.html" %}
8
14
 
9
15
  <h2>Toggle element</h2>
10
- {% include "src/html/includes/toggle-element-show-more.html" %}
11
- {% include "src/html/includes/toggle-element-toggle.html" %}
16
+ {% include settings.html_path + "/includes/toggle-element-show-more.html" %}
17
+ {% include settings.html_path + "/includes/toggle-element-toggle.html" %}
12
18
  {% endblock %}
13
19
 
14
20
  {% block content_bottom %}
15
- {% include "src/html/includes/cookiebar.html" %}
21
+ {% include settings.html_path + "/includes/cookiebar.html" %}
16
22
  {% endblock %}
17
23
 
18
24
  {% block bottom %}
19
- {% include "src/html/includes/section-slideshow.html" %}
25
+ {% include settings.html_path + "/includes/section-slideshow.html" %}
20
26
  {% endblock %}
21
27
 
22
28
  {% block footer %}
23
- {% include "src/html/includes/menu.html" %}
29
+ {% include settings.html_path + "/includes/menu.html" %}
24
30
  {% endblock %}
@@ -1,10 +1,12 @@
1
- {% extends "src/html/templates/page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/page.html" %}
2
4
 
3
5
  {% block page_title %}Our latest actions and donation asks{% endblock %}
4
6
 
5
7
  {% block main_container_class %}{% endblock %}
6
8
 
7
9
  {% block content_bottom %}
8
- {% include "src/html/includes/teasers.html" %}
9
- {% include "src/html/includes/pagination.html" %}
10
+ {% include settings.html_path + "/includes/teasers.html" %}
11
+ {% include settings.html_path + "/includes/pagination.html" %}
10
12
  {% endblock %}
@@ -8,7 +8,7 @@
8
8
  <div class="grid-container with-sidebar">
9
9
  <header id="headline">{% block headline %}{% endblock %}</header>
10
10
  <div id="form-wrapper" class="flex-container align-middle">
11
- <div id="form-outer">
11
+ <div id="form-outer" class="flex-child-auto">
12
12
  <div class="intro">{% block form_intro %}{% endblock %}</div>
13
13
  {% block progress_bar %}{% endblock %}
14
14
  {% block form %}{% endblock %}
@@ -7,7 +7,7 @@
7
7
  {% block sidebar_bottom %}
8
8
  <div id="sidebar">
9
9
  <div id="form-wrapper" class="flex-container align-middle">
10
- <div id="form-outer">
10
+ <div id="form-outer" class="flex-child-auto">
11
11
  <div class="intro">{% block form_intro %}{% endblock %}</div>
12
12
  {% block progress_bar %}{% endblock %}
13
13
  {% block form %}{% endblock %}
@@ -5,13 +5,13 @@
5
5
  {% block main_container_class %}with-sidebar{% endblock %}
6
6
 
7
7
  {% block header %}
8
- {% include "src/html/includes/language-switcher.html" %}
8
+ {% include "../includes/language-switcher.html" %}
9
9
  {% endblock %}
10
10
 
11
11
  {% block sidebar %}
12
12
  <div id="sidebar">
13
13
  <div id="form-wrapper" class="flex-container align-middle">
14
- <div id="form-outer">
14
+ <div id="form-outer" class="flex-child-auto">
15
15
  <div class="intro">{% block form_intro %}{% endblock %}</div>
16
16
  {% block progress_bar %}{% endblock %}
17
17
  {% block form %}{% endblock %}
@@ -4,6 +4,9 @@
4
4
  <div id="page" class="{% block page_class %}default-layout{% endblock %}">
5
5
 
6
6
  <section id="header">
7
+ <div class="skip-link grid-container">
8
+ <a class="show-on-focus small" href="#main">Skip to main content</a>
9
+ </div>
7
10
  <div class="top-bar grid-container">
8
11
  <div class="top-bar-left">
9
12
  {% block logo %}
@@ -1,4 +1,6 @@
1
- {% extends "src/html/templates/share-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/share-page.html" %}
2
4
 
3
5
  {% set layout = "cover-1col" %}
4
6
 
@@ -7,7 +9,7 @@
7
9
  {% block page_title %}Thank you for taking action. You’re awesome!{% endblock %}
8
10
 
9
11
  {% block background %}
10
- <img src="http://placekitten.com/1600/735" alt="test image with cats" crossorigin="">
12
+ <img src="https://loremflickr.com/1600/735/cat" alt="test image with cats" crossorigin="">
11
13
  {% endblock %}
12
14
 
13
15
  {% block headline %}
@@ -19,16 +21,16 @@
19
21
  {% endblock %}
20
22
 
21
23
  {% block content_bottom %}
22
- {% include "src/html/includes/share-buttons.html" %}
24
+ {% include settings.html_path + "/includes/share-buttons.html" %}
23
25
  {% endblock %}
24
26
 
25
27
  {% block bottom %}
26
- {% include "src/html/includes/section-2col.html" %}
27
- {% include "src/html/includes/section-2col.html" %}
28
- {% include "src/html/includes/section-quote.html" %}
29
- {% include "src/html/includes/section-1col.html" %}
28
+ {% include settings.html_path + "/includes/section-2col.html" %}
29
+ {% include settings.html_path + "/includes/section-2col.html" %}
30
+ {% include settings.html_path + "/includes/section-quote.html" %}
31
+ {% include settings.html_path + "/includes/section-1col.html" %}
30
32
  {% endblock %}
31
33
 
32
34
  {% block footer %}
33
- {% include "src/html/includes/menu.html" %}
35
+ {% include settings.html_path + "/includes/menu.html" %}
34
36
  {% endblock %}
@@ -1,11 +1,13 @@
1
- {% extends "src/html/templates/share-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/share-page.html" %}
2
4
 
3
5
  {% set layout = "cover-1col" %}
4
6
 
5
7
  {% block page_title %}Thank you for taking action. You’re awesome!{% endblock %}
6
8
 
7
9
  {% block background %}
8
- <img src="http://placekitten.com/1600/735" alt="test image with cats" crossorigin="">
10
+ <img src="https://loremflickr.com/1600/735/cat" alt="test image with cats" crossorigin="">
9
11
  {% endblock %}
10
12
 
11
13
  {% block content %}
@@ -13,9 +15,9 @@
13
15
  {% endblock %}
14
16
 
15
17
  {% block content_bottom %}
16
- {% include "src/html/includes/share-buttons.html" %}
18
+ {% include settings.html_path + "/includes/share-buttons.html" %}
17
19
  {% endblock %}
18
20
 
19
21
  {% block footer %}
20
- {% include "src/html/includes/menu.html" %}
22
+ {% include settings.html_path + "/includes/menu.html" %}
21
23
  {% endblock %}
@@ -1,4 +1,6 @@
1
- {% extends "src/html/templates/action-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/action-page.html" %}
2
4
 
3
5
  {% set layout = "cover-2col" %}
4
6
 
@@ -7,7 +9,7 @@
7
9
  {% block page_title %}Thank you for taking action. You’re awesome!{% endblock %}
8
10
 
9
11
  {% block background %}
10
- <img src="http://placekitten.com/1600/800" alt="test image with cats" crossorigin="">
12
+ <img src="https://loremflickr.com/1600/800/cat" alt="test image with cats" crossorigin="">
11
13
  {% endblock %}
12
14
 
13
15
  {% block headline %}
@@ -19,20 +21,20 @@
19
21
  {% endblock %}
20
22
 
21
23
  {% block form %}
22
- {% include "src/html/includes/share-buttons.html" %}
24
+ {% include settings.html_path + "/includes/share-buttons.html" %}
23
25
  {% endblock %}
24
26
 
25
27
  {% block recent_supporters %}
26
- {% include "src/html/includes/recent-supporters.html" %}
28
+ {% include settings.html_path + "/includes/recent-supporters.html" %}
27
29
  {% endblock %}
28
30
 
29
31
  {% block bottom %}
30
- {% include "src/html/includes/section-2col.html" %}
31
- {% include "src/html/includes/section-2col.html" %}
32
- {% include "src/html/includes/section-quote.html" %}
33
- {% include "src/html/includes/section-1col.html" %}
32
+ {% include settings.html_path + "/includes/section-2col.html" %}
33
+ {% include settings.html_path + "/includes/section-2col.html" %}
34
+ {% include settings.html_path + "/includes/section-quote.html" %}
35
+ {% include settings.html_path + "/includes/section-1col.html" %}
34
36
  {% endblock %}
35
37
 
36
38
  {% block footer %}
37
- {% include "src/html/includes/menu.html" %}
39
+ {% include settings.html_path + "/includes/menu.html" %}
38
40
  {% endblock %}
@@ -1,11 +1,13 @@
1
- {% extends "src/html/templates/action-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/action-page.html" %}
2
4
 
3
5
  {% set layout = "cover-2col" %}
4
6
 
5
7
  {% block page_title %}Thank you for taking action. You’re awesome!{% endblock %}
6
8
 
7
9
  {% block background %}
8
- <img src="http://placekitten.com/1600/800" alt="test image with cats" crossorigin="">
10
+ <img src="https://loremflickr.com/1600/800/cat" alt="test image with cats" crossorigin="">
9
11
  {% endblock %}
10
12
 
11
13
  {% block content %}
@@ -13,13 +15,13 @@
13
15
  {% endblock %}
14
16
 
15
17
  {% block form %}
16
- {% include "src/html/includes/share-buttons.html" %}
18
+ {% include settings.html_path + "/includes/share-buttons.html" %}
17
19
  {% endblock %}
18
20
 
19
21
  {% block recent_supporters %}
20
- {% include "src/html/includes/recent-supporters.html" %}
22
+ {% include settings.html_path + "/includes/recent-supporters.html" %}
21
23
  {% endblock %}
22
24
 
23
25
  {% block footer %}
24
- {% include "src/html/includes/menu.html" %}
26
+ {% include settings.html_path + "/includes/menu.html" %}
25
27
  {% endblock %}
@@ -1,4 +1,6 @@
1
- {% extends "src/html/templates/share-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/share-page.html" %}
2
4
 
3
5
  {% set layout = "cover-banner" %}
4
6
 
@@ -7,7 +9,7 @@
7
9
  {% block page_title %}Thank you for taking action. You’re awesome!{% endblock %}
8
10
 
9
11
  {% block background %}
10
- <img src="http://placekitten.com/1600/735" alt="test image with cats" crossorigin="">
12
+ <img src="https://loremflickr.com/1600/735/cat" alt="test image with cats" crossorigin="">
11
13
  {% endblock %}
12
14
 
13
15
  {% block headline %}
@@ -19,16 +21,16 @@
19
21
  {% endblock %}
20
22
 
21
23
  {% block content_bottom %}
22
- {% include "src/html/includes/share-buttons.html" %}
24
+ {% include settings.html_path + "/includes/share-buttons.html" %}
23
25
  {% endblock %}
24
26
 
25
27
  {% block bottom %}
26
- {% include "src/html/includes/section-2col.html" %}
27
- {% include "src/html/includes/section-2col.html" %}
28
- {% include "src/html/includes/section-quote.html" %}
29
- {% include "src/html/includes/section-1col.html" %}
28
+ {% include settings.html_path + "/includes/section-2col.html" %}
29
+ {% include settings.html_path + "/includes/section-2col.html" %}
30
+ {% include settings.html_path + "/includes/section-quote.html" %}
31
+ {% include settings.html_path + "/includes/section-1col.html" %}
30
32
  {% endblock %}
31
33
 
32
34
  {% block footer %}
33
- {% include "src/html/includes/menu.html" %}
35
+ {% include settings.html_path + "/includes/menu.html" %}
34
36
  {% endblock %}
@@ -1,11 +1,13 @@
1
- {% extends "src/html/templates/share-page.html" %}
1
+ {% import "_globals.html" as settings %}
2
+
3
+ {% extends settings.html_path + "/templates/share-page.html" %}
2
4
 
3
5
  {% set layout = "cover-banner" %}
4
6
 
5
7
  {% block page_title %}Thank you for taking action. You’re awesome!{% endblock %}
6
8
 
7
9
  {% block background %}
8
- <img src="http://placekitten.com/1600/735" alt="test image with cats" crossorigin="">
10
+ <img src="https://loremflickr.com/1600/735/cat" alt="test image with cats" crossorigin="">
9
11
  {% endblock %}
10
12
 
11
13
  {% block content %}
@@ -13,9 +15,9 @@
13
15
  {% endblock %}
14
16
 
15
17
  {% block content_bottom %}
16
- {% include "src/html/includes/share-buttons.html" %}
18
+ {% include settings.html_path + "/includes/share-buttons.html" %}
17
19
  {% endblock %}
18
20
 
19
21
  {% block footer %}
20
- {% include "src/html/includes/menu.html" %}
22
+ {% include settings.html_path + "/includes/menu.html" %}
21
23
  {% endblock %}