@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.
- package/package.json +19 -17
- package/src/html/basic-action-page-cover-1col-with-headline.html +14 -12
- package/src/html/basic-action-page-cover-1col.html +9 -7
- package/src/html/basic-action-page-cover-2col-reversed.html +9 -7
- package/src/html/basic-action-page-cover-2col-with-headline.html +13 -11
- package/src/html/basic-action-page-cover-2col.html +9 -7
- package/src/html/basic-action-page-cover-banner-with-headline.html +13 -11
- package/src/html/basic-action-page-cover-banner.html +9 -7
- package/src/html/basic-action-page-reversed.html +7 -5
- package/src/html/basic-action-page-with-banner-and-headline.html +13 -11
- package/src/html/basic-action-page-with-banner-reversed.html +9 -7
- package/src/html/basic-action-page-with-banner.html +9 -7
- package/src/html/basic-action-page-with-callouts.html +7 -5
- package/src/html/basic-action-page.html +7 -5
- package/src/html/donation-action-page.html +6 -4
- package/src/html/e2t-action-page.html +7 -5
- package/src/html/includes/language-switcher.html +1 -2
- package/src/html/includes/letter.html +1 -1
- package/src/html/includes/menu-responsive.html +17 -0
- package/src/html/includes/menu.html +7 -5
- package/src/html/includes/section-1col.html +1 -1
- package/src/html/includes/section-2col.html +1 -1
- package/src/html/includes/section-quote.html +1 -1
- package/src/html/includes/section-slideshow.html +3 -3
- package/src/html/includes/teasers.html +1 -1
- package/src/html/index.html +58 -0
- package/src/html/login-page.html +4 -2
- package/src/html/signup-action-page.html +6 -4
- package/src/html/snippets-demo.html +13 -7
- package/src/html/teaser-page.html +5 -3
- package/src/html/templates/action-page-cover-banner.html +1 -1
- package/src/html/templates/action-page-reversed.html +1 -1
- package/src/html/templates/action-page.html +2 -2
- package/src/html/templates/page.html +3 -0
- package/src/html/thank-you-page-cover-1col-with-headline.html +10 -8
- package/src/html/thank-you-page-cover-1col.html +6 -4
- package/src/html/thank-you-page-cover-2col-with-headline.html +11 -9
- package/src/html/thank-you-page-cover-2col.html +7 -5
- package/src/html/thank-you-page-cover-banner-with-headline.html +10 -8
- package/src/html/thank-you-page-cover-banner.html +6 -4
- package/src/html/thank-you-page-with-banner-and-headline.html +10 -8
- package/src/html/thank-you-page-with-banner.html +6 -4
- package/src/html/thank-you-page.html +6 -4
- package/src/html/typography-static-page.html +6 -4
- package/src/scss/components/_accordion.scss +2 -1
- package/src/scss/components/_headline.scss +1 -0
- package/src/scss/components/_menu.scss +19 -3
- package/src/scss/components/_mobile-menu.scss +153 -0
- package/src/scss/components/_quote.scss +23 -20
- package/src/scss/components/_settings.scss +4 -2
- package/src/scss/components/_sticky-button.scss +2 -1
- package/src/scss/components/_top-bar.scss +35 -0
- package/src/scss/form/_paymethod-select-button.scss +18 -13
- package/src/scss/layout/_backgrounds.scss +9 -3
- package/src/scss/layout/_cover-banner.scss +6 -0
- package/src/scss/layout/_cover.scss +6 -0
- package/src/scss/main.scss +2 -1
- package/src/scss/typography/_elements.scss +1 -0
- package/src/html/dev-index.html +0 -58
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moreonion/foundist",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"description": "Foundation based default theme for Impact Stack landing pages.",
|
|
5
5
|
"author": "More Onion <kontakt@more-onion.at>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,26 +26,28 @@
|
|
|
26
26
|
"prepare": "husky"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@moreonion/foundation-base": "3.
|
|
30
|
-
"
|
|
31
|
-
"
|
|
29
|
+
"@moreonion/foundation-base": "3.4.1",
|
|
30
|
+
"foundation-sites": "6.9.0",
|
|
31
|
+
"jquery": "^3.7.0",
|
|
32
|
+
"sass-embedded": "^1.79.0",
|
|
33
|
+
"select2": "^4.1.0-rc.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"autoprefixer": "^10.4.20",
|
|
37
|
+
"eslint": "8.57.0",
|
|
32
38
|
"eslint-config-standard": "^17.1.0",
|
|
33
39
|
"eslint-plugin-import": "^2.29.0",
|
|
34
40
|
"eslint-plugin-n": "^16.6.0",
|
|
35
|
-
"eslint-plugin-promise": "^6.
|
|
36
|
-
"
|
|
37
|
-
"husky": "^9.0.0",
|
|
38
|
-
"jquery": "^3.7.0",
|
|
41
|
+
"eslint-plugin-promise": "^6.6.0",
|
|
42
|
+
"husky": "^9.1.0",
|
|
39
43
|
"lint-staged": "^15.2.0",
|
|
40
|
-
"postcss": "^8.4.
|
|
41
|
-
"prettier": "^3.
|
|
42
|
-
"
|
|
43
|
-
"select2": "^4.1.0-rc.0",
|
|
44
|
-
"stylelint": "^16.2.0",
|
|
44
|
+
"postcss": "^8.4.47",
|
|
45
|
+
"prettier": "^3.3.0",
|
|
46
|
+
"stylelint": "^16.9.0",
|
|
45
47
|
"stylelint-config-idiomatic-order": "^10.0.0",
|
|
46
|
-
"stylelint-config-recommended-scss": "^14.
|
|
47
|
-
"stylelint-scss": "^6.
|
|
48
|
-
"vite": "^5.
|
|
48
|
+
"stylelint-config-recommended-scss": "^14.1.0",
|
|
49
|
+
"stylelint-scss": "^6.7.0",
|
|
50
|
+
"vite": "^5.4.0",
|
|
49
51
|
"vite-plugin-nunjucks": "^0.2.0"
|
|
50
52
|
},
|
|
51
53
|
"lint-staged": {
|
|
@@ -57,5 +59,5 @@
|
|
|
57
59
|
"eslint"
|
|
58
60
|
]
|
|
59
61
|
},
|
|
60
|
-
"packageManager": "yarn@4.
|
|
62
|
+
"packageManager": "yarn@4.4.0"
|
|
61
63
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page-cover-1col.html" %}
|
|
2
4
|
|
|
3
5
|
{% set layout = "cover-1col" %}
|
|
4
6
|
|
|
@@ -7,7 +9,7 @@
|
|
|
7
9
|
{% block page_title %}Take action now!{% endblock %}
|
|
8
10
|
|
|
9
11
|
{% block background %}
|
|
10
|
-
<img src="
|
|
12
|
+
<img src="https://loremflickr.com/1280/588/cat" alt="test image with cats" crossorigin="">
|
|
11
13
|
{% endblock %}
|
|
12
14
|
|
|
13
15
|
{% block headline %}
|
|
@@ -24,20 +26,20 @@
|
|
|
24
26
|
{% endblock %}
|
|
25
27
|
|
|
26
28
|
{% block progress_bar %}
|
|
27
|
-
{% include "
|
|
29
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
28
30
|
{% endblock %}
|
|
29
31
|
|
|
30
32
|
{% block form %}
|
|
31
|
-
{% include "
|
|
33
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
32
34
|
{% endblock %}
|
|
33
35
|
|
|
34
36
|
{% block recent_supporters %}
|
|
35
|
-
{% include "
|
|
37
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
38
40
|
{% block content_top %}
|
|
39
41
|
<div class="media-stretch">
|
|
40
|
-
<img src="
|
|
42
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
41
43
|
</div>
|
|
42
44
|
{% endblock %}
|
|
43
45
|
|
|
@@ -50,13 +52,13 @@
|
|
|
50
52
|
{% endblock %}
|
|
51
53
|
|
|
52
54
|
{% block bottom %}
|
|
53
|
-
{% include "
|
|
54
|
-
{% include "
|
|
55
|
-
{% include "
|
|
56
|
-
{% include "
|
|
57
|
-
{% include "
|
|
55
|
+
{% include settings.html_path + "/includes/section-2col.html" %}
|
|
56
|
+
{% include settings.html_path + "/includes/section-2col.html" %}
|
|
57
|
+
{% include settings.html_path + "/includes/section-quote.html" %}
|
|
58
|
+
{% include settings.html_path + "/includes/section-quote.html" %}
|
|
59
|
+
{% include settings.html_path + "/includes/section-1col.html" %}
|
|
58
60
|
{% endblock %}
|
|
59
61
|
|
|
60
62
|
{% block footer %}
|
|
61
|
-
{% include "
|
|
63
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
62
64
|
{% endblock %}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page-cover-1col.html" %}
|
|
2
4
|
|
|
3
5
|
{% set layout = "cover-1col" %}
|
|
4
6
|
|
|
5
7
|
{% block page_title %}Take action now!{% endblock %}
|
|
6
8
|
|
|
7
9
|
{% block background %}
|
|
8
|
-
<img src="
|
|
10
|
+
<img src="https://loremflickr.com/1280/588/cat" alt="test image with cats" crossorigin="">
|
|
9
11
|
{% endblock %}
|
|
10
12
|
|
|
11
13
|
{% block top %}
|
|
@@ -18,20 +20,20 @@
|
|
|
18
20
|
{% endblock %}
|
|
19
21
|
|
|
20
22
|
{% block progress_bar %}
|
|
21
|
-
{% include "
|
|
23
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
22
24
|
{% endblock %}
|
|
23
25
|
|
|
24
26
|
{% block form %}
|
|
25
|
-
{% include "
|
|
27
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
26
28
|
{% endblock %}
|
|
27
29
|
|
|
28
30
|
{% block recent_supporters %}
|
|
29
|
-
{% include "
|
|
31
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
30
32
|
{% endblock %}
|
|
31
33
|
|
|
32
34
|
{% block content_top %}
|
|
33
35
|
<div class="media-stretch">
|
|
34
|
-
<img src="
|
|
36
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
35
37
|
</div>
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
@@ -44,5 +46,5 @@
|
|
|
44
46
|
{% endblock %}
|
|
45
47
|
|
|
46
48
|
{% block footer %}
|
|
47
|
-
{% include "
|
|
49
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
48
50
|
{% endblock %}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page-reversed.html" %}
|
|
2
4
|
|
|
3
5
|
{% set layout = "cover-2col" %}
|
|
4
6
|
|
|
5
7
|
{% block page_title %}Take action now!{% endblock %}
|
|
6
8
|
|
|
7
9
|
{% block background %}
|
|
8
|
-
<img src="
|
|
10
|
+
<img src="https://loremflickr.com/1600/1000/cat" alt="test image with cats" crossorigin="">
|
|
9
11
|
{% endblock %}
|
|
10
12
|
|
|
11
13
|
{% block top %}
|
|
@@ -18,20 +20,20 @@
|
|
|
18
20
|
{% endblock %}
|
|
19
21
|
|
|
20
22
|
{% block progress_bar %}
|
|
21
|
-
{% include "
|
|
23
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
22
24
|
{% endblock %}
|
|
23
25
|
|
|
24
26
|
{% block form %}
|
|
25
|
-
{% include "
|
|
27
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
26
28
|
{% endblock %}
|
|
27
29
|
|
|
28
30
|
{% block recent_supporters %}
|
|
29
|
-
{% include "
|
|
31
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
30
32
|
{% endblock %}
|
|
31
33
|
|
|
32
34
|
{% block content_top %}
|
|
33
35
|
<div class="media-stretch">
|
|
34
|
-
<img src="
|
|
36
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
35
37
|
</div>
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
@@ -44,5 +46,5 @@
|
|
|
44
46
|
{% endblock %}
|
|
45
47
|
|
|
46
48
|
{% block footer %}
|
|
47
|
-
{% include "
|
|
49
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
48
50
|
{% endblock %}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
{%
|
|
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 %}Take action now!{% endblock %}
|
|
8
10
|
|
|
9
11
|
{% block background %}
|
|
10
|
-
<img src="
|
|
12
|
+
<img src="https://loremflickr.com/1600/1000/cat" alt="test image with cats" crossorigin="">
|
|
11
13
|
{% endblock %}
|
|
12
14
|
|
|
13
15
|
{% block headline %}
|
|
@@ -24,20 +26,20 @@
|
|
|
24
26
|
{% endblock %}
|
|
25
27
|
|
|
26
28
|
{% block progress_bar %}
|
|
27
|
-
{% include "
|
|
29
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
28
30
|
{% endblock %}
|
|
29
31
|
|
|
30
32
|
{% block form %}
|
|
31
|
-
{% include "
|
|
33
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
32
34
|
{% endblock %}
|
|
33
35
|
|
|
34
36
|
{% block recent_supporters %}
|
|
35
|
-
{% include "
|
|
37
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
38
40
|
{% block content_top %}
|
|
39
41
|
<div class="media-stretch">
|
|
40
|
-
<img src="
|
|
42
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
41
43
|
</div>
|
|
42
44
|
{% endblock %}
|
|
43
45
|
|
|
@@ -50,12 +52,12 @@
|
|
|
50
52
|
{% endblock %}
|
|
51
53
|
|
|
52
54
|
{% block bottom %}
|
|
53
|
-
{% include "
|
|
54
|
-
{% include "
|
|
55
|
-
{% include "
|
|
56
|
-
{% include "
|
|
55
|
+
{% include settings.html_path + "/includes/section-2col.html" %}
|
|
56
|
+
{% include settings.html_path + "/includes/section-2col.html" %}
|
|
57
|
+
{% include settings.html_path + "/includes/section-quote.html" %}
|
|
58
|
+
{% include settings.html_path + "/includes/section-1col.html" %}
|
|
57
59
|
{% endblock %}
|
|
58
60
|
|
|
59
61
|
{% block footer %}
|
|
60
|
-
{% include "
|
|
62
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
61
63
|
{% endblock %}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
{%
|
|
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 %}Take action now!{% endblock %}
|
|
6
8
|
|
|
7
9
|
{% block background %}
|
|
8
|
-
<img src="
|
|
10
|
+
<img src="https://loremflickr.com/1600/1000/cat" alt="test image with cats" crossorigin="">
|
|
9
11
|
{% endblock %}
|
|
10
12
|
|
|
11
13
|
{% block top %}
|
|
@@ -18,20 +20,20 @@
|
|
|
18
20
|
{% endblock %}
|
|
19
21
|
|
|
20
22
|
{% block progress_bar %}
|
|
21
|
-
{% include "
|
|
23
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
22
24
|
{% endblock %}
|
|
23
25
|
|
|
24
26
|
{% block form %}
|
|
25
|
-
{% include "
|
|
27
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
26
28
|
{% endblock %}
|
|
27
29
|
|
|
28
30
|
{% block recent_supporters %}
|
|
29
|
-
{% include "
|
|
31
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
30
32
|
{% endblock %}
|
|
31
33
|
|
|
32
34
|
{% block content_top %}
|
|
33
35
|
<div class="media-stretch">
|
|
34
|
-
<img src="
|
|
36
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
35
37
|
</div>
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
@@ -44,5 +46,5 @@
|
|
|
44
46
|
{% endblock %}
|
|
45
47
|
|
|
46
48
|
{% block footer %}
|
|
47
|
-
{% include "
|
|
49
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
48
50
|
{% endblock %}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page-cover-banner.html" %}
|
|
2
4
|
|
|
3
5
|
{% set layout = "cover-banner" %}
|
|
4
6
|
|
|
@@ -7,7 +9,7 @@
|
|
|
7
9
|
{% block page_title %}Take action now!{% endblock %}
|
|
8
10
|
|
|
9
11
|
{% block background %}
|
|
10
|
-
<img src="
|
|
12
|
+
<img src="https://loremflickr.com/1280/588/cat" alt="test image with cats" crossorigin="">
|
|
11
13
|
{% endblock %}
|
|
12
14
|
|
|
13
15
|
{% block headline %}
|
|
@@ -24,20 +26,20 @@
|
|
|
24
26
|
{% endblock %}
|
|
25
27
|
|
|
26
28
|
{% block progress_bar %}
|
|
27
|
-
{% include "
|
|
29
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
28
30
|
{% endblock %}
|
|
29
31
|
|
|
30
32
|
{% block form %}
|
|
31
|
-
{% include "
|
|
33
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
32
34
|
{% endblock %}
|
|
33
35
|
|
|
34
36
|
{% block recent_supporters %}
|
|
35
|
-
{% include "
|
|
37
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
38
40
|
{% block content_top %}
|
|
39
41
|
<div class="media-stretch">
|
|
40
|
-
<img src="
|
|
42
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
41
43
|
</div>
|
|
42
44
|
{% endblock %}
|
|
43
45
|
|
|
@@ -50,12 +52,12 @@
|
|
|
50
52
|
{% endblock %}
|
|
51
53
|
|
|
52
54
|
{% block bottom %}
|
|
53
|
-
{% include "
|
|
54
|
-
{% include "
|
|
55
|
-
{% include "
|
|
56
|
-
{% include "
|
|
55
|
+
{% include settings.html_path + "/includes/section-2col.html" %}
|
|
56
|
+
{% include settings.html_path + "/includes/section-2col.html" %}
|
|
57
|
+
{% include settings.html_path + "/includes/section-quote.html" %}
|
|
58
|
+
{% include settings.html_path + "/includes/section-1col.html" %}
|
|
57
59
|
{% endblock %}
|
|
58
60
|
|
|
59
61
|
{% block footer %}
|
|
60
|
-
{% include "
|
|
62
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
61
63
|
{% endblock %}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page-cover-banner.html" %}
|
|
2
4
|
|
|
3
5
|
{% set layout = "cover-banner" %}
|
|
4
6
|
|
|
5
7
|
{% block page_title %}Take action now!{% endblock %}
|
|
6
8
|
|
|
7
9
|
{% block background %}
|
|
8
|
-
<img src="
|
|
10
|
+
<img src="https://loremflickr.com/1280/588/cat" alt="test image with cats" crossorigin="">
|
|
9
11
|
{% endblock %}
|
|
10
12
|
|
|
11
13
|
{% block top %}
|
|
@@ -18,20 +20,20 @@
|
|
|
18
20
|
{% endblock %}
|
|
19
21
|
|
|
20
22
|
{% block progress_bar %}
|
|
21
|
-
{% include "
|
|
23
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
22
24
|
{% endblock %}
|
|
23
25
|
|
|
24
26
|
{% block form %}
|
|
25
|
-
{% include "
|
|
27
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
26
28
|
{% endblock %}
|
|
27
29
|
|
|
28
30
|
{% block recent_supporters %}
|
|
29
|
-
{% include "
|
|
31
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
30
32
|
{% endblock %}
|
|
31
33
|
|
|
32
34
|
{% block content_top %}
|
|
33
35
|
<div class="media-stretch">
|
|
34
|
-
<img src="
|
|
36
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
35
37
|
</div>
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
@@ -44,5 +46,5 @@
|
|
|
44
46
|
{% endblock %}
|
|
45
47
|
|
|
46
48
|
{% block footer %}
|
|
47
|
-
{% include "
|
|
49
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
48
50
|
{% endblock %}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page-reversed.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 "
|
|
19
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
18
20
|
{% endblock %}
|
|
19
21
|
|
|
20
22
|
{% block form %}
|
|
21
|
-
{% include "
|
|
23
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
22
24
|
{% endblock %}
|
|
23
25
|
|
|
24
26
|
{% block recent_supporters %}
|
|
25
|
-
{% include "
|
|
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="
|
|
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
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page.html" %}
|
|
2
4
|
|
|
3
5
|
{% set layout = "banner" %}
|
|
4
6
|
|
|
@@ -7,7 +9,7 @@
|
|
|
7
9
|
{% block page_title %}Take action now!{% endblock %}
|
|
8
10
|
|
|
9
11
|
{% block banner %}
|
|
10
|
-
<img src="
|
|
12
|
+
<img src="https://loremflickr.com/1280/588/cat" alt="test image with cats" crossorigin="">
|
|
11
13
|
{% endblock %}
|
|
12
14
|
|
|
13
15
|
{% block top %}
|
|
@@ -24,20 +26,20 @@
|
|
|
24
26
|
{% endblock %}
|
|
25
27
|
|
|
26
28
|
{% block progress_bar %}
|
|
27
|
-
{% include "
|
|
29
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
28
30
|
{% endblock %}
|
|
29
31
|
|
|
30
32
|
{% block form %}
|
|
31
|
-
{% include "
|
|
33
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
32
34
|
{% endblock %}
|
|
33
35
|
|
|
34
36
|
{% block recent_supporters %}
|
|
35
|
-
{% include "
|
|
37
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
38
40
|
{% block content_top %}
|
|
39
41
|
<div class="media-stretch">
|
|
40
|
-
<img src="
|
|
42
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
41
43
|
</div>
|
|
42
44
|
{% endblock %}
|
|
43
45
|
|
|
@@ -50,12 +52,12 @@
|
|
|
50
52
|
{% endblock %}
|
|
51
53
|
|
|
52
54
|
{% block bottom %}
|
|
53
|
-
{% include "
|
|
54
|
-
{% include "
|
|
55
|
-
{% include "
|
|
56
|
-
{% include "
|
|
55
|
+
{% include settings.html_path + "/includes/section-2col.html" %}
|
|
56
|
+
{% include settings.html_path + "/includes/section-2col.html" %}
|
|
57
|
+
{% include settings.html_path + "/includes/section-quote.html" %}
|
|
58
|
+
{% include settings.html_path + "/includes/section-1col.html" %}
|
|
57
59
|
{% endblock %}
|
|
58
60
|
|
|
59
61
|
{% block footer %}
|
|
60
|
-
{% include "
|
|
62
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
61
63
|
{% endblock %}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page-reversed.html" %}
|
|
2
4
|
|
|
3
5
|
{% set layout = "banner" %}
|
|
4
6
|
|
|
5
7
|
{% block page_title %}Take action now!{% endblock %}
|
|
6
8
|
|
|
7
9
|
{% block banner %}
|
|
8
|
-
<img src="
|
|
10
|
+
<img src="https://loremflickr.com/1280/588/cat" alt="test image with cats" crossorigin="">
|
|
9
11
|
{% endblock %}
|
|
10
12
|
|
|
11
13
|
{% block top %}
|
|
@@ -18,20 +20,20 @@
|
|
|
18
20
|
{% endblock %}
|
|
19
21
|
|
|
20
22
|
{% block progress_bar %}
|
|
21
|
-
{% include "
|
|
23
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
22
24
|
{% endblock %}
|
|
23
25
|
|
|
24
26
|
{% block form %}
|
|
25
|
-
{% include "
|
|
27
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
26
28
|
{% endblock %}
|
|
27
29
|
|
|
28
30
|
{% block recent_supporters %}
|
|
29
|
-
{% include "
|
|
31
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
30
32
|
{% endblock %}
|
|
31
33
|
|
|
32
34
|
{% block content_top %}
|
|
33
35
|
<div class="media-stretch">
|
|
34
|
-
<img src="
|
|
36
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
35
37
|
</div>
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
@@ -44,5 +46,5 @@
|
|
|
44
46
|
{% endblock %}
|
|
45
47
|
|
|
46
48
|
{% block footer %}
|
|
47
|
-
{% include "
|
|
49
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
48
50
|
{% endblock %}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
{%
|
|
1
|
+
{% import "_globals.html" as settings %}
|
|
2
|
+
|
|
3
|
+
{% extends settings.html_path + "/templates/action-page.html" %}
|
|
2
4
|
|
|
3
5
|
{% set layout = "banner" %}
|
|
4
6
|
|
|
5
7
|
{% block page_title %}Take action now!{% endblock %}
|
|
6
8
|
|
|
7
9
|
{% block banner %}
|
|
8
|
-
<img src="
|
|
10
|
+
<img src="https://loremflickr.com/1280/588/cat" alt="test image with cats" crossorigin="">
|
|
9
11
|
{% endblock %}
|
|
10
12
|
|
|
11
13
|
{% block top %}
|
|
@@ -18,20 +20,20 @@
|
|
|
18
20
|
{% endblock %}
|
|
19
21
|
|
|
20
22
|
{% block progress_bar %}
|
|
21
|
-
{% include "
|
|
23
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
22
24
|
{% endblock %}
|
|
23
25
|
|
|
24
26
|
{% block form %}
|
|
25
|
-
{% include "
|
|
27
|
+
{% include settings.html_path + "/includes/basic-form.html" %}
|
|
26
28
|
{% endblock %}
|
|
27
29
|
|
|
28
30
|
{% block recent_supporters %}
|
|
29
|
-
{% include "
|
|
31
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
30
32
|
{% endblock %}
|
|
31
33
|
|
|
32
34
|
{% block content_top %}
|
|
33
35
|
<div class="media-stretch">
|
|
34
|
-
<img src="
|
|
36
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
35
37
|
</div>
|
|
36
38
|
{% endblock %}
|
|
37
39
|
|
|
@@ -44,5 +46,5 @@
|
|
|
44
46
|
{% endblock %}
|
|
45
47
|
|
|
46
48
|
{% block footer %}
|
|
47
|
-
{% include "
|
|
49
|
+
{% include settings.html_path + "/includes/menu.html" %}
|
|
48
50
|
{% endblock %}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
{%
|
|
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
|
|
|
@@ -22,20 +24,20 @@
|
|
|
22
24
|
{% endblock %}
|
|
23
25
|
|
|
24
26
|
{% block progress_bar %}
|
|
25
|
-
{% include "
|
|
27
|
+
{% include settings.html_path + "/includes/pgbar.html" %}
|
|
26
28
|
{% endblock %}
|
|
27
29
|
|
|
28
30
|
{% block form %}
|
|
29
|
-
{% include "
|
|
31
|
+
{% include settings.html_path + "/includes/basic-form-with-errors.html" %}
|
|
30
32
|
{% endblock %}
|
|
31
33
|
|
|
32
34
|
{% block recent_supporters %}
|
|
33
|
-
{% include "
|
|
35
|
+
{% include settings.html_path + "/includes/recent-supporters.html" %}
|
|
34
36
|
{% endblock %}
|
|
35
37
|
|
|
36
38
|
{% block content_top %}
|
|
37
39
|
<div class="media-stretch">
|
|
38
|
-
<img src="
|
|
40
|
+
<img src="https://loremflickr.com/860/455/cat" alt="test image with cats" crossorigin="">
|
|
39
41
|
</div>
|
|
40
42
|
{% endblock %}
|
|
41
43
|
|