@moreonion/foundist 2.1.2 → 3.0.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/.vscode/settings.json +16 -0
- package/README.md +5 -9
- package/package.json +6 -28
- package/src/html/basic-action-page-cover-1col-with-headline.html +54 -0
- package/src/html/basic-action-page-cover-1col.html +27 -27
- package/src/html/basic-action-page-cover-2col-reversed.html +27 -27
- package/src/html/basic-action-page-cover-2col-with-headline.html +54 -0
- package/src/html/basic-action-page-cover-2col.html +27 -27
- package/src/html/basic-action-page-cover-banner-with-headline.html +54 -0
- package/src/html/basic-action-page-cover-banner.html +27 -27
- package/src/html/basic-action-page-reversed.html +22 -23
- package/src/html/basic-action-page-with-banner-and-headline.html +54 -0
- package/src/html/basic-action-page-with-banner-reversed.html +27 -27
- package/src/html/basic-action-page-with-banner.html +27 -27
- package/src/html/basic-action-page-with-callouts.html +28 -28
- package/src/html/basic-action-page.html +22 -23
- package/src/html/build-index.html +9 -0
- package/src/html/dev-index.html +57 -0
- package/src/html/donation-action-page.html +20 -20
- package/src/html/e2t-action-page.html +25 -28
- package/src/html/includes/accordion.html +25 -25
- package/src/html/includes/basic-form-with-errors.html +28 -26
- package/src/html/includes/basic-form.html +11 -7
- package/src/html/includes/cookiebar.html +5 -5
- package/src/html/includes/donate-form.html +11 -10
- package/src/html/includes/e2t-single-form.html +29 -27
- package/src/html/includes/form-items/_macros.html +76 -0
- package/src/html/includes/form-items/checkboxes.html +18 -18
- package/src/html/includes/form-items/country-select-options.html +253 -0
- package/src/html/includes/form-items/donation-amount.html +63 -64
- package/src/html/includes/form-items/donation-interval.html +14 -13
- package/src/html/includes/form-items/fake-field.html +2 -2
- package/src/html/includes/form-items/fieldset.html +9 -7
- package/src/html/includes/form-items/file-upload.html +7 -7
- package/src/html/includes/form-items/giftaid.html +16 -0
- package/src/html/includes/form-items/inline-radios.html +14 -14
- package/src/html/includes/form-items/opt-in-checkbox.html +5 -5
- package/src/html/includes/form-items/opt-in-radios.html +7 -7
- package/src/html/includes/form-items/payment-icons.html +17 -17
- package/src/html/includes/form-items/paymethod-selector.html +24 -24
- package/src/html/includes/form-items/radios-with-error.html +8 -8
- package/src/html/includes/form-items/radios.html +14 -14
- package/src/html/includes/form-items/select-with-error.html +257 -257
- package/src/html/includes/form-items/textarea.html +2 -2
- package/src/html/includes/form-items/webform-steps.html +13 -13
- package/src/html/includes/language-switcher.html +10 -10
- package/src/html/includes/login-form.html +5 -3
- package/src/html/includes/menu.html +3 -3
- package/src/html/includes/overlay.html +4 -4
- package/src/html/includes/pagination.html +13 -13
- package/src/html/includes/pgbar-thermometer.html +8 -8
- package/src/html/includes/pgbar.html +5 -5
- package/src/html/includes/recent-supporters-agregated.html +32 -32
- package/src/html/includes/recent-supporters-comments.html +31 -31
- package/src/html/includes/recent-supporters-empty.html +3 -3
- package/src/html/includes/recent-supporters.html +26 -26
- package/src/html/includes/share-buttons.html +30 -28
- package/src/html/includes/sticky-button.html +1 -1
- package/src/html/includes/teasers.html +25 -5
- package/src/html/includes/toggle-element-show-more.html +3 -3
- package/src/html/includes/toggle-element-toggle.html +2 -2
- package/src/html/login-page.html +5 -7
- package/src/html/snippets-demo.html +13 -15
- package/src/html/teaser-page.html +7 -7
- package/src/html/templates/action-page-cover-1col.html +12 -83
- package/src/html/templates/action-page-cover-banner.html +16 -85
- package/src/html/templates/action-page-reversed.html +16 -82
- package/src/html/templates/action-page.html +21 -80
- package/src/html/templates/base.html +31 -0
- package/src/html/templates/page.html +99 -0
- package/src/html/templates/share-page.html +9 -0
- package/src/html/thank-you-page-cover-1col-with-headline.html +27 -0
- package/src/html/thank-you-page-cover-1col.html +14 -14
- package/src/html/thank-you-page-cover-2col-with-headline.html +31 -0
- package/src/html/thank-you-page-cover-2col.html +17 -13
- package/src/html/thank-you-page-cover-banner-with-headline.html +27 -0
- package/src/html/thank-you-page-cover-banner.html +14 -14
- package/src/html/thank-you-page-with-banner-and-headline.html +27 -0
- package/src/html/thank-you-page-with-banner.html +14 -14
- package/src/html/thank-you-page.html +15 -15
- package/src/html/typography-static-page.html +18 -20
- package/src/js/foundist.js +41 -14
- package/src/scss/_settings.scss +3 -3
- package/src/scss/components/_accordion.scss +4 -6
- package/src/scss/components/_headline.scss +118 -0
- package/src/scss/components/_settings.scss +6 -2
- package/src/scss/form/_fields.scss +19 -0
- package/src/scss/form/_settings.scss +4 -3
- package/src/scss/layout/_banner.scss +50 -13
- package/src/scss/layout/_cover-banner.scss +80 -34
- package/src/scss/layout/_cover.scss +127 -45
- package/src/scss/layout/_default.scss +9 -3
- package/src/scss/layout/_sections.scss +7 -3
- package/src/scss/main.scss +2 -0
- package/src/scss/typography/_settings.scss +2 -0
- package/src/html/empty-action-page.html +0 -29
- package/src/html/empty-static-page.html +0 -21
- package/src/html/includes/form-items/country-select.html +0 -258
- package/src/html/includes/form-items/email.html +0 -4
- package/src/html/includes/form-items/first-name.html +0 -4
- package/src/html/includes/form-items/last-name.html +0 -4
- package/src/html/includes/form-items/password.html +0 -5
- package/src/html/includes/form-items/submit-button.html +0 -2
- package/src/html/includes/form-items/text-with-description.html +0 -5
- package/src/html/includes/form-items/text-with-error.html +0 -5
- package/src/html/includes/teaser.html +0 -17
- package/src/html/index.html +0 -51
- package/src/html/templates/action-page-cover-2col-reversed.html +0 -97
- package/src/html/templates/action-page-cover-2col.html +0 -97
- package/src/html/templates/action-page-with-banner-reversed.html +0 -91
- package/src/html/templates/action-page-with-banner.html +0 -91
- package/src/html/templates/static-page-cover-1col.html +0 -80
- package/src/html/templates/static-page-cover-2col.html +0 -88
- package/src/html/templates/static-page-cover-banner.html +0 -81
- package/src/html/templates/static-page-with-banner.html +0 -77
- package/src/html/templates/static-page.html +0 -73
- package/src/html/templates/teaser-page.html +0 -73
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div class="reveal" id="overlay" data-reveal data-deep-link="overlay">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
<h2>Awesome. I Have It.</h2>
|
|
3
|
+
<p>I'm a cool paragraph that lives inside of an even cooler modal. Wins!</p>
|
|
4
|
+
{% include "./basic-form.html" %}
|
|
5
|
+
<button class="close-button large" data-close aria-label="Close modal" type="button"></button>
|
|
6
6
|
</div>
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
<nav aria-label="Pagination">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
2
|
+
<ul class="pagination">
|
|
3
|
+
<li class="pagination-first disabled">First</li>
|
|
4
|
+
<li class="pagination-previous disabled">Previous</li>
|
|
5
|
+
<li class="current"><span class="show-for-sr">You're on page</span> 1</li>
|
|
6
|
+
<li><a href="#" aria-label="Page 2">2</a></li>
|
|
7
|
+
<li><a href="#" aria-label="Page 3">3</a></li>
|
|
8
|
+
<li><a href="#" aria-label="Page 4">4</a></li>
|
|
9
|
+
<li class="ellipsis"></li>
|
|
10
|
+
<li><a href="#" aria-label="Page 12">12</a></li>
|
|
11
|
+
<li><a href="#" aria-label="Page 13">13</a></li>
|
|
12
|
+
<li class="pagination-next"><a href="#" aria-label="Next page">Next</a></li>
|
|
13
|
+
<li class="pagination-last"><a href="#" aria-label="Last page">Last</a></li>
|
|
14
|
+
</ul>
|
|
15
15
|
</nav>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
<div class="pgbar-wrapper progress-wrapper flex-container data-pgbar-current="20193" data-pgbar-target="30000">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
<div class="pgbar-wrapper progress-wrapper flex-container" data-pgbar-current="20193" data-pgbar-target="30000">
|
|
2
|
+
<div class="progress thermometer" role="progressbar" tabindex="0" aria-valuenow="67" aria-valuemin="0" aria-valuemax="100">
|
|
3
|
+
<div class="pgbar-current progress-meter" style="height:67%"></div>
|
|
4
|
+
</div>
|
|
5
|
+
<div class="flex-container flex-dir-column align-justify">
|
|
6
|
+
<p>We need another <strong>€9,807</strong>!</p>
|
|
7
|
+
<p>We have already reached <strong>€20,193</strong>. Will you help us towards our target of <strong>€30,000?</strong></p>
|
|
8
|
+
</div>
|
|
9
9
|
</div>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<div class="pgbar-wrapper progress-wrapper" data-pgbar-current="20193" data-pgbar-target="30000">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
<p>We need <strong>9,807</strong> more signups!</p>
|
|
3
|
+
<div class="progress" role="progressbar" tabindex="0" aria-valuenow="67" aria-valuemin="0" aria-valuemax="100">
|
|
4
|
+
<div class="pgbar-current progress-meter" style="width:67%"></div>
|
|
5
|
+
</div>
|
|
6
|
+
<p>We have already reached <strong>20,193</strong> signups. Will you help us towards our target of <strong>30,000?</strong></p>
|
|
7
7
|
</div>
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
<h2 class="recent-supporters-title">Recent supporters</h2>
|
|
2
2
|
<div class="recent-supporters-wrapper">
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
3
|
+
<ul class="no-bullet recent-supporters all-actions no-comments no-flags">
|
|
4
|
+
<li class="supporter action-type-webform">
|
|
5
|
+
<span class="name">Bessie <span class="last_name">A</span></span>
|
|
6
|
+
just signed up at <span class="title"><a href="#">Take action now!</a></span>
|
|
7
|
+
<span class="time" >4 minutes ago</span>
|
|
8
|
+
</li>
|
|
9
|
+
<li class="supporter action-type-webform">
|
|
10
|
+
<span class="name">Tony <span class="last_name">D</span></span>
|
|
11
|
+
just signed up at <span class="title"><a href="#">Give cats a chance</a></span>
|
|
12
|
+
<span class="time" >20 minutes ago</span>
|
|
13
|
+
</li>
|
|
14
|
+
<li class="supporter action-type-webform">
|
|
15
|
+
<span class="name">Alex <span class="last_name">G</span></span>
|
|
16
|
+
just signed up at <span class="title"><a href="#">Give cats a chance</a></span>
|
|
17
|
+
<span class="time" >1 hour ago</span>
|
|
18
|
+
</li>
|
|
19
|
+
<li class="supporter action-type-webform">
|
|
20
|
+
<span class="name">Ricky <span class="last_name">K</span></span>
|
|
21
|
+
just signed up at <span class="title"><a href="#">Take action now!</a></span>
|
|
22
|
+
<span class="time" >2 hours ago</span>
|
|
23
|
+
</li>
|
|
24
|
+
<li class="supporter action-type-webform">
|
|
25
|
+
<span class="name">Jessie <span class="last_name">N</span></span>
|
|
26
|
+
just signed up at <span class="title"><a href="#">Take action now!</a></span>
|
|
27
|
+
<span class="time" >4 hours ago</span>
|
|
28
|
+
</li>
|
|
29
|
+
<li class="supporter action-type-webform">
|
|
30
|
+
<span class="name">Susan <span class="last_name">R</span></span>
|
|
31
|
+
just signed up at <span class="title"><a href="#">Give cats a chance</a></span>
|
|
32
|
+
<span class="time" >1 day ago</span>
|
|
33
|
+
</li>
|
|
34
|
+
</ul>
|
|
35
35
|
</div>
|
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
<h2 class="recent-supporters-title">Our most recent signups</h2>
|
|
2
2
|
|
|
3
3
|
<div class="recent-supporters-wrapper">
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
4
|
+
<ul class="no-bullet recent-supporters single-action with-comments no-flags">
|
|
5
|
+
<li class="supporter">
|
|
6
|
+
<span class="comment">This topic is sooo important to me!</span>
|
|
7
|
+
<span class="name">Bridget J</span>
|
|
8
|
+
<span class="time">15 seconds ago</span>
|
|
9
|
+
</li>
|
|
10
|
+
<li class="supporter">
|
|
11
|
+
<span class="comment">A have a very strong opinion about this and I’d love to let others know about it, especially now, everyone needs to know.</span>
|
|
12
|
+
<span class="name">Bobby G</span>
|
|
13
|
+
<span class="time">6 minutes ago</span>
|
|
14
|
+
</li>
|
|
15
|
+
<li class="supporter">
|
|
16
|
+
<span class="comment">Thanks for giving me the opportunity to speak up</span>
|
|
17
|
+
<span class="name">Mark D</span>
|
|
18
|
+
<span class="time">9 minutes ago</span>
|
|
19
|
+
</li>
|
|
20
|
+
<li class="supporter">
|
|
21
|
+
<span class="comment">Do something, sign up too!</span>
|
|
22
|
+
<span class="name">Maria C</span>
|
|
23
|
+
<span class="time">2 hours ago</span>
|
|
24
|
+
</li>
|
|
25
|
+
<li class="supporter">
|
|
26
|
+
<span class="name">Oliver D</span>
|
|
27
|
+
<span class="time">1 day ago</span>
|
|
28
|
+
</li>
|
|
29
|
+
<li class="supporter">
|
|
30
|
+
<span class="comment">Hm, yeah, whatever. Aren’t other things important too?</span>
|
|
31
|
+
<span class="name">Penny R</span>
|
|
32
|
+
<span class="time">3 days ago</span>
|
|
33
|
+
</li>
|
|
34
|
+
</ul>
|
|
35
35
|
</div>
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
<h2 class="recent-supporters-title">Who is signing up?</h2>
|
|
2
2
|
|
|
3
3
|
<div class="recent-supporters-wrapper">
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
4
|
+
<ul class="no-bullet recent-supporters single-action no-comments no-flags">
|
|
5
|
+
<li class="supporter">
|
|
6
|
+
<span class="name">Bridget J</span>
|
|
7
|
+
<span class="time">15 seconds ago</span>
|
|
8
|
+
</li>
|
|
9
|
+
<li class="supporter">
|
|
10
|
+
<span class="name">Bobby G</span>
|
|
11
|
+
<span class="time">6 minutes ago</span>
|
|
12
|
+
</li>
|
|
13
|
+
<li class="supporter">
|
|
14
|
+
<span class="name">Mark D</span>
|
|
15
|
+
<span class="time">9 minutes ago</span>
|
|
16
|
+
</li>
|
|
17
|
+
<li class="supporter">
|
|
18
|
+
<span class="name">Maria C</span>
|
|
19
|
+
<span class="time">2 hours ago</span>
|
|
20
|
+
</li>
|
|
21
|
+
<li class="supporter">
|
|
22
|
+
<span class="name">Oliver D</span>
|
|
23
|
+
<span class="time">1 day ago</span>
|
|
24
|
+
</li>
|
|
25
|
+
<li class="supporter">
|
|
26
|
+
<span class="name">Penny R</span>
|
|
27
|
+
<span class="time">3 days ago</span>
|
|
28
|
+
</li>
|
|
29
|
+
</ul>
|
|
30
30
|
</div>
|
|
@@ -1,31 +1,33 @@
|
|
|
1
1
|
<div class="share-buttons">
|
|
2
|
-
|
|
2
|
+
<h2 class="share-buttons-title">Will you share this with your friends and family?</h2>
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
<
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
<
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
4
|
+
<p>Spread your love for kittens.</p>
|
|
5
|
+
|
|
6
|
+
<ul class="share-light no-bullet">
|
|
7
|
+
<li class="email first">
|
|
8
|
+
<a href="#" title="Share this via email!" data-share="email" target="_blank" class="large share button expanded email-icon">
|
|
9
|
+
<span>Email</span>
|
|
10
|
+
</a>
|
|
11
|
+
</li>
|
|
12
|
+
<li class="facebook">
|
|
13
|
+
<a href="#" title="Share this via Facebook!" data-share="facebook" target="_blank" class="large share button expanded facebook-icon">
|
|
14
|
+
<span>Facebook</span>
|
|
15
|
+
</a>
|
|
16
|
+
</li>
|
|
17
|
+
<li class="twitter">
|
|
18
|
+
<a href="#" title="Share this via Twitter!" data-share="twitter" target="_blank" class="large share button expanded twitter-icon">
|
|
19
|
+
<span>Twitter</span>
|
|
20
|
+
</a>
|
|
21
|
+
</li>
|
|
22
|
+
<li class="whatsapp">
|
|
23
|
+
<a href="#" title="Share this via WhatsApp!" data-share="whatsapp" class="mobile large share button expanded whatsapp-icon">
|
|
24
|
+
<span>WhatsApp</span>
|
|
25
|
+
</a>
|
|
26
|
+
</li>
|
|
27
|
+
<li class="fbmsg last">
|
|
28
|
+
<a href="#" title="Share this via Facebook Messenger!" data-share="facebook-messenger" class="mobile large share button expanded facebook-messenger-icon">
|
|
29
|
+
<span>Facebook Messenger</span>
|
|
30
|
+
</a>
|
|
31
|
+
</li>
|
|
32
|
+
</ul>
|
|
31
33
|
</div>
|
|
@@ -1,7 +1,27 @@
|
|
|
1
|
+
{% macro teaser(title) %}
|
|
2
|
+
<article class="card">
|
|
3
|
+
<div class="card-image">
|
|
4
|
+
<img src="http://placekitten.com/480/270" alt="test image with cats" crossorigin="">
|
|
5
|
+
</div>
|
|
6
|
+
<div class="card-section">
|
|
7
|
+
<div class="progress-wrapper" data-pgbar-current="140" data-pgbar-target="200">
|
|
8
|
+
<div class="progress" role="progressbar" tabindex="0" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
|
|
9
|
+
<div class="progress-meter" style="width: 70%;"></div>
|
|
10
|
+
<span class="progress-meter-text">140</span>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<h4>{{ title }}</h4>
|
|
14
|
+
</div>
|
|
15
|
+
<footer class="card-section">
|
|
16
|
+
<a class="button small card-link" href="#" rel="tag">Read more</a>
|
|
17
|
+
</footer>
|
|
18
|
+
</article>
|
|
19
|
+
{% endmacro %}
|
|
20
|
+
|
|
1
21
|
<div class="teasers">
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
22
|
+
{{ teaser("Cats for world domination") }}
|
|
23
|
+
{{ teaser("Meouw!") }}
|
|
24
|
+
{{ teaser("Ignore the squirrels, you’ll never catch them anyway") }}
|
|
25
|
+
{{ teaser("Your pillow is now my pet bed nya nya nyan") }}
|
|
26
|
+
{{ teaser("What’s your problem?") }}
|
|
7
27
|
</div>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<p>
|
|
2
|
-
|
|
2
|
+
<a data-toggle-element role="button" data-open="more" aria-controls="more" aria-expanded=false data-close>Read more</a>
|
|
3
3
|
</p>
|
|
4
4
|
<div data-toggle-element id="more" class="toggle-element-hidden">
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
<p>This will show up on click and can’t be closed again, the link is gone.</p>
|
|
6
|
+
<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>
|
|
7
7
|
</div>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p>
|
|
2
|
-
|
|
2
|
+
<a role="button" data-toggle="toggle-paragraph" aria-controls="toggle-paragraph" aria-expanded="false">Toggle a parapgraph on click.</a>
|
|
3
3
|
</p>
|
|
4
4
|
<p data-toggle-element id="toggle-paragraph" class="toggle-element-hidden">
|
|
5
|
-
|
|
5
|
+
Parapgraph that can be toggled on and off. Meouw. Always ensure to lay down in such a manner that tail can lightly brush human's nose sleep in the bathroom sink. Run up and down stairs curl up and sleep on the freshly laundered towels.
|
|
6
6
|
</p>
|
package/src/html/login-page.html
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
{% extends "src/html/templates/page.html" %}
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
{% block page_title %}User account{% endblock %}
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
</extends>
|
|
5
|
+
{% block content %}
|
|
6
|
+
{% include "src/html/includes/login-form.html" %}
|
|
7
|
+
{% endblock %}
|
|
@@ -1,22 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
{% extends "src/html/templates/page.html" %}
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
{% block page_title %}Snippets demo{% endblock %}
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
{% block content %}
|
|
6
6
|
<h2>Accordion</h2>
|
|
7
|
-
|
|
7
|
+
{% include "src/html/includes/accordion.html" %}
|
|
8
8
|
|
|
9
9
|
<h2>Toggle element</h2>
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
{% include "src/html/includes/toggle-element-show-more.html" %}
|
|
11
|
+
{% include "src/html/includes/toggle-element-toggle.html" %}
|
|
12
|
+
{% endblock %}
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
{% block content_bottom %}
|
|
15
|
+
{% include "src/html/includes/cookiebar.html" %}
|
|
16
|
+
{% endblock %}
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
</extends>
|
|
18
|
+
{% block footer %}
|
|
19
|
+
{% include "src/html/includes/menu.html" %}
|
|
20
|
+
{% endblock %}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
{% extends "src/html/templates/page.html" %}
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
{% block page_title %}Our latest actions and donation asks{% endblock %}
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
<include src="teasers.html"></include>
|
|
7
|
-
<include src="pagination.html"></include>
|
|
8
|
-
</block>
|
|
5
|
+
{% block main_container_class %}{% endblock %}
|
|
9
6
|
|
|
10
|
-
|
|
7
|
+
{% block content_bottom %}
|
|
8
|
+
{% include "src/html/includes/teasers.html" %}
|
|
9
|
+
{% include "src/html/includes/pagination.html" %}
|
|
10
|
+
{% endblock %}
|
|
@@ -1,88 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
<html lang="en" class="no-js">
|
|
1
|
+
{% extends "./page.html" %}
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
<meta charset="UTF-8" />
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
8
|
-
<link rel="icon" href="{{ favicon }}">
|
|
9
|
-
<link rel="stylesheet" href="{{ css }}" />
|
|
10
|
-
<title>{{ title }}</title>
|
|
11
|
-
</head>
|
|
3
|
+
{% block page_class %}{{ layout }}-layout{% endblock %}
|
|
12
4
|
|
|
13
|
-
|
|
14
|
-
<div id="page" class="cover-1col-layout">
|
|
15
|
-
|
|
16
|
-
<section id="header">
|
|
17
|
-
<div class="top-bar grid-container">
|
|
18
|
-
<div class="top-bar-left">
|
|
19
|
-
<a class="logo" href="#" rel="home">
|
|
20
|
-
<img src="{{ logo }}" alt="Logo" crossorigin="" />
|
|
21
|
-
</a>
|
|
22
|
-
</div>
|
|
23
|
-
<div class="top-bar-right">
|
|
24
|
-
<include src="language-switcher.html"></include>
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
27
|
-
</section>
|
|
28
|
-
|
|
29
|
-
<section id="highlighted">
|
|
30
|
-
<div class="grid-container">
|
|
31
|
-
<block name="highlighted"></block>
|
|
32
|
-
</div>
|
|
33
|
-
</section>
|
|
34
|
-
|
|
35
|
-
<section id="background">
|
|
36
|
-
<block name="banner"></block>
|
|
37
|
-
</section>
|
|
38
|
-
|
|
39
|
-
<section id="messages">
|
|
40
|
-
<div class="grid-container narrow">
|
|
41
|
-
<block name="messages"></block>
|
|
42
|
-
</div>
|
|
43
|
-
</section>
|
|
44
|
-
|
|
45
|
-
<section id="main">
|
|
46
|
-
<div class="grid-container narrow">
|
|
47
|
-
<div class="inner-wrapper">
|
|
48
|
-
|
|
49
|
-
<div id="top">
|
|
50
|
-
<h1 id="page-title"><block name="page-title"></block></h1>
|
|
51
|
-
<block name="top"></block>
|
|
52
|
-
</div>
|
|
53
|
-
|
|
54
|
-
<div id="form-outer">
|
|
55
|
-
<block name="form-intro"></block>
|
|
56
|
-
<block name="progress-bar"></block>
|
|
57
|
-
<block name="form"></block>
|
|
58
|
-
</div>
|
|
59
|
-
|
|
60
|
-
<div id="content">
|
|
61
|
-
<block name="content-top"></block>
|
|
62
|
-
<block name="content"></block>
|
|
63
|
-
<block name="content-bottom"></block>
|
|
64
|
-
</div>
|
|
65
|
-
|
|
66
|
-
<block name="recent-supporters"></block>
|
|
67
|
-
|
|
68
|
-
</div>
|
|
69
|
-
</div>
|
|
70
|
-
</section>
|
|
71
|
-
|
|
72
|
-
<section id="bottom">
|
|
73
|
-
<div class="grid-container">
|
|
74
|
-
<block name="bottom"></block>
|
|
75
|
-
</div>
|
|
76
|
-
</section>
|
|
5
|
+
{% block main_container_class %}narrow{% endblock %}
|
|
77
6
|
|
|
7
|
+
{% block sidebar %}
|
|
8
|
+
<div id="form-outer">
|
|
9
|
+
<div class="intro">{% block form_intro %}{% endblock %}</div>
|
|
10
|
+
{% block progress_bar %}{% endblock %}
|
|
11
|
+
{% block form %}{% endblock %}
|
|
78
12
|
</div>
|
|
13
|
+
{% endblock %}
|
|
79
14
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
</div>
|
|
84
|
-
</section>
|
|
85
|
-
|
|
86
|
-
<script type="module" src="{{ js }}"></script>
|
|
87
|
-
</body>
|
|
88
|
-
</html>
|
|
15
|
+
{% block sidebar_bottom %}
|
|
16
|
+
{% block recent_supporters %}{% endblock %}
|
|
17
|
+
{% endblock %}
|