mod-build 3.4.25 → 3.4.26-beta.4
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/gulp-tasks/templates.js +7 -1
- package/package.json +1 -1
- package/src/data/components/qs-footer.js +48 -0
- package/src/data/components/quote-footer.js +64 -0
- package/src/templates/components/qs-footer.html +55 -0
- package/src/templates/components/quote-footer-v1.html +97 -0
- package/src/templates/components/quote-footer-v2.html +117 -0
package/gulp-tasks/templates.js
CHANGED
|
@@ -3,10 +3,16 @@ module.exports = function(gulp, gulpPlugins, siteSettings, siteData) {
|
|
|
3
3
|
/* eslint brace-style: 0 */
|
|
4
4
|
const { isLocal, nodeEnv, buildPath } = siteSettings;
|
|
5
5
|
const { isWhiteLabel } = siteData;
|
|
6
|
+
|
|
6
7
|
var commonData = require('../src/data/common.js');
|
|
8
|
+
|
|
7
9
|
var assetsPath = isLocal ? '/temp/assets' : 'https://' + nodeEnv + '/quote/resources/assets';
|
|
8
10
|
assetsPath = isWhiteLabel ? '' : assetsPath;
|
|
9
|
-
|
|
11
|
+
|
|
12
|
+
var qsFooterData = require('../src/data/components/qs-footer.js');
|
|
13
|
+
var quoteFooterData = require('../src/data/components/quote-footer.js');
|
|
14
|
+
|
|
15
|
+
var templatesData = Object.assign(commonData(), qsFooterData(), quoteFooterData(), siteData, { isLocal, nodeEnv, assetsPath, buildPath });
|
|
10
16
|
|
|
11
17
|
// This is helper function to evaluate JS expressions
|
|
12
18
|
// in Handlebars, e.g. for conditions
|
package/package.json
CHANGED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
var qsFooterData = function() {
|
|
2
|
+
var data = {
|
|
3
|
+
qsFooterData: {
|
|
4
|
+
links: [
|
|
5
|
+
{
|
|
6
|
+
name: 'About',
|
|
7
|
+
url: '/about/',
|
|
8
|
+
modal: true
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
name: 'Privacy Notice',
|
|
12
|
+
url: '/privacy/',
|
|
13
|
+
modal: true
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
name: 'Affiliates',
|
|
17
|
+
url: 'https://modernize.com/contact?publisher',
|
|
18
|
+
modal: false
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: 'Terms of Use',
|
|
22
|
+
url: '/terms/',
|
|
23
|
+
modal: true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
name: 'Contact Us',
|
|
27
|
+
url: '/contact-us/',
|
|
28
|
+
modal: true
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'California - Do not sell my info',
|
|
32
|
+
url: 'https://privacy-central.securiti.ai/#/dsr/983cfd4b-c36a-4601-89e9-b651e5a05708',
|
|
33
|
+
modal: false
|
|
34
|
+
}
|
|
35
|
+
],
|
|
36
|
+
copyright: 'QuinStreet, Inc. All Rights Reserved.',
|
|
37
|
+
contractor: {
|
|
38
|
+
text: 'Are you a contractor?',
|
|
39
|
+
linkText: 'Join Our Contractor Network',
|
|
40
|
+
link: 'https://modernize.com/pro/register/leads/?trade=bathrooms&utm_campaign=quinstreet-referral'
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
return data;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
module.exports = qsFooterData;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
var quoteFooterData = function() {
|
|
2
|
+
var data = {
|
|
3
|
+
quoteFooterData: {
|
|
4
|
+
copyright: 'All Rights Reserved.',
|
|
5
|
+
contractor: {
|
|
6
|
+
text: 'Are you a contractor?',
|
|
7
|
+
linkText: 'Join Our Contractor Network',
|
|
8
|
+
link: 'https://modernize.com/pro/register/leads/?trade=bathrooms&utm_campaign=quinstreet-referral'
|
|
9
|
+
},
|
|
10
|
+
capchaDisclosure: {
|
|
11
|
+
text: 'This site is protected by reCAPTCHA and the Google',
|
|
12
|
+
privacy: {
|
|
13
|
+
text: 'Privacy Policy',
|
|
14
|
+
url: 'https://policies.google.com/privacy'
|
|
15
|
+
},
|
|
16
|
+
terms: {
|
|
17
|
+
text: 'Terms of Service',
|
|
18
|
+
url: 'https://policies.google.com/terms'
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
privacyLinks: [
|
|
22
|
+
{
|
|
23
|
+
text: 'California Privacy',
|
|
24
|
+
anchor: 'ccpa'
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
text: 'New York Privacy',
|
|
28
|
+
anchor: 'nyna'
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
text: 'Do Not Sell My Personal Information',
|
|
32
|
+
anchor: 'uspi'
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
links: [
|
|
36
|
+
{
|
|
37
|
+
url: 'about',
|
|
38
|
+
text: 'About Us',
|
|
39
|
+
modal: true
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
url: 'terms',
|
|
43
|
+
text: 'Terms of Use',
|
|
44
|
+
modal: true
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
url: 'privacy',
|
|
48
|
+
text: 'Privacy Policy',
|
|
49
|
+
modal: true
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
url: 'https://modernize.com/contact?publisher',
|
|
53
|
+
text: 'I\'m a publisher',
|
|
54
|
+
modal: false,
|
|
55
|
+
target: '_blank'
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
return data;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
module.exports = quoteFooterData;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<footer class="footer">
|
|
2
|
+
<div class="container">
|
|
3
|
+
<div class="footer__head-link">
|
|
4
|
+
{{qsFooterData.contractor.text}}
|
|
5
|
+
<a target="_blank" href="{{qsFooterData.contractor.link}}" rel="noopener noreferrer">
|
|
6
|
+
{{qsFooterData.contractor.linkText}}
|
|
7
|
+
</a>
|
|
8
|
+
</div>
|
|
9
|
+
<ul class="footer__links">
|
|
10
|
+
{{#each qsFooterData.links}}
|
|
11
|
+
<li>
|
|
12
|
+
<a
|
|
13
|
+
{{#xif "!this.modal" }}
|
|
14
|
+
href="{{this.url}}"
|
|
15
|
+
target="_blank"
|
|
16
|
+
rel="noopener noreferrer"
|
|
17
|
+
{{/xif}}
|
|
18
|
+
{{#xif "this.modal" }}
|
|
19
|
+
data-bind="modal-link"
|
|
20
|
+
data-load="/modals{{this.url}}index.html"
|
|
21
|
+
{{/xif}}
|
|
22
|
+
>
|
|
23
|
+
{{this.name}}
|
|
24
|
+
</a>
|
|
25
|
+
</li>
|
|
26
|
+
{{/each}}
|
|
27
|
+
<!--
|
|
28
|
+
- Define the customFooterLinks array of objects in template.js / siteconfig.js
|
|
29
|
+
- e.g customFooterLinks: [{name: 'Test Link', url: '/test/', modal: true}]
|
|
30
|
+
-->
|
|
31
|
+
{{#if this.customFooterLinks}}
|
|
32
|
+
{{#each this.customFooterLinks}}
|
|
33
|
+
<li>
|
|
34
|
+
<a
|
|
35
|
+
{{#xif "!this.modal" }}
|
|
36
|
+
href="{{this.url}}"
|
|
37
|
+
target="_blank"
|
|
38
|
+
rel="noopener noreferrer"
|
|
39
|
+
{{/xif}}
|
|
40
|
+
{{#xif "this.modal" }}
|
|
41
|
+
data-bind="modal-link"
|
|
42
|
+
data-load="/modals{{this.url}}index.html"
|
|
43
|
+
{{/xif}}
|
|
44
|
+
>
|
|
45
|
+
{{this.name}}
|
|
46
|
+
</a>
|
|
47
|
+
</li>
|
|
48
|
+
{{/each}}
|
|
49
|
+
{{/if}}
|
|
50
|
+
</ul>
|
|
51
|
+
<p class="footer__copyright">
|
|
52
|
+
Copyright © {{year}} {{qsFooterData.copyright}}
|
|
53
|
+
</p>
|
|
54
|
+
</div>
|
|
55
|
+
</footer>
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
<div class="footer">
|
|
2
|
+
<div class="container">
|
|
3
|
+
<img src="{{assetsPath}}/images/logos/misc/bbb.svg" alt="BBB Accredited Logo" class="footer__bbb-logo footer__bbb">
|
|
4
|
+
<div class="footer__links">
|
|
5
|
+
{{quoteFooterData.contractor.text}}
|
|
6
|
+
<a target="_blank" href="{{quoteFooterData.contractor.link}}" rel="noopener noreferrer">
|
|
7
|
+
{{quoteFooterData.contractor.linkText}}
|
|
8
|
+
</a>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="footer__content">
|
|
11
|
+
{{#xif 'this.copyright === "top"'}}
|
|
12
|
+
<div class="footer__copyright">
|
|
13
|
+
© Copyright {{year}} {{website_name}}.
|
|
14
|
+
{{{quoteFooterData.copyright}}}
|
|
15
|
+
<div class="footer__captcha-disclosure">
|
|
16
|
+
{{quoteFooterData.capchaDisclosure.text}}
|
|
17
|
+
<a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
|
|
18
|
+
<a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a> apply.
|
|
19
|
+
</div>
|
|
20
|
+
</div>
|
|
21
|
+
{{/xif}}
|
|
22
|
+
{{#xif "this.privacylinks === 'top'"}}
|
|
23
|
+
<div class="footer__links">
|
|
24
|
+
{{#each quoteFooterData.privacyLinks}}
|
|
25
|
+
<a href="{{../links.privacy}}" data-load="./modals/privacy/index.html" data-bind="modal-link" data-anchor="#{{this.anchor}}">{{{this.text}}}</a>
|
|
26
|
+
{{/each}}
|
|
27
|
+
<!--
|
|
28
|
+
- Define the customPrivacyLinks array of objects in template.js / siteconfig.js
|
|
29
|
+
- e.g customPrivacyLinks: [{ text: 'This is a custom link', anchor: 'ccpa' }]
|
|
30
|
+
-->
|
|
31
|
+
{{#if this.customPrivacyLinks}}
|
|
32
|
+
{{#each this.customPrivacyLinks}}
|
|
33
|
+
<a href="{{../links.privacy}}" data-load="./modals/privacy/index.html" data-bind="modal-link" data-anchor="#{{this.anchor}}">{{{this.text}}}</a>
|
|
34
|
+
{{/each}}
|
|
35
|
+
{{/if}}
|
|
36
|
+
</div>
|
|
37
|
+
{{/xif}}
|
|
38
|
+
{{#xif 'this.copyright === "middle"'}}
|
|
39
|
+
<div class="footer__copyright">
|
|
40
|
+
© Copyright {{year}} {{website_name}}.
|
|
41
|
+
{{{quoteFooterData.copyright}}}
|
|
42
|
+
<div class="footer__captcha-disclosure">
|
|
43
|
+
{{quoteFooterData.capchaDisclosure.text}}
|
|
44
|
+
<a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
|
|
45
|
+
<a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a> apply.
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
{{/xif}}
|
|
49
|
+
|
|
50
|
+
<div class="footer__links">
|
|
51
|
+
{{#each quoteFooterData.links}}
|
|
52
|
+
<a href="{{#if this.modal}}/{{this.url}}{{else}}{{this.url}}{{/if}}" {{#xif "this.modal === true" }}data-load="./modals/{{this.url}}/index.html" data-bind="modal-link"{{/xif}} {{#if this.target}}target="{{this.target}}" {{#xif "this.target === '_blank'"}} rel="noopener noreferrer"{{/xif}} {{/if}}>
|
|
53
|
+
{{this.text}}
|
|
54
|
+
</a>
|
|
55
|
+
{{/each}}
|
|
56
|
+
<!--
|
|
57
|
+
- Define the customFooterLinks array of objects in template.js / siteconfig.js
|
|
58
|
+
- e.g customFooterLinks: [{url: '/test', text: 'Test Link'}]
|
|
59
|
+
-->
|
|
60
|
+
{{#if this.customFooterLinks}}
|
|
61
|
+
{{#each this.customFooterLinks}}
|
|
62
|
+
<a href="{{#if this.modal}}/{{this.url}}{{else}}{{this.url}}{{/if}}" {{#xif "this.modal === true" }}data-load="./modals/{{this.url}}/index.html" data-bind="modal-link"{{/xif}} {{#if this.target}}target="{{this.target}}" {{#xif "this.target === '_blank'"}} rel="noopener noreferrer"{{/xif}}{{/if}}>{{this.text}}</a>
|
|
63
|
+
{{/each}}
|
|
64
|
+
{{/if}}
|
|
65
|
+
</div>
|
|
66
|
+
|
|
67
|
+
{{#xif "this.privacylinks === 'bottom'"}}
|
|
68
|
+
<div class="footer__links">
|
|
69
|
+
{{#each quoteFooterData.privacyLinks}}
|
|
70
|
+
<a href="{{../links.privacy}}" data-load="./modals/privacy/index.html" data-bind="modal-link" data-anchor="#{{this.anchor}}">{{{this.text}}}</a>
|
|
71
|
+
{{/each}}
|
|
72
|
+
<!--
|
|
73
|
+
- Define the customPrivacyLinks array of objects in template.js / siteconfig.js
|
|
74
|
+
- e.g customPrivacyLinks: [{ text: 'This is a custom link', anchor: 'ccpa' }]
|
|
75
|
+
-->
|
|
76
|
+
{{#if this.customPrivacyLinks}}
|
|
77
|
+
{{#each this.customPrivacyLinks}}
|
|
78
|
+
<a href="{{../links.privacy}}" data-load="./modals/privacy/index.html" data-bind="modal-link" data-anchor="#{{this.anchor}}">{{{this.text}}}</a>
|
|
79
|
+
{{/each}}
|
|
80
|
+
{{/if}}
|
|
81
|
+
</div>
|
|
82
|
+
{{/xif}}
|
|
83
|
+
|
|
84
|
+
{{#xif 'this.copyright === "bottom"'}}
|
|
85
|
+
<div class="footer__copyright">
|
|
86
|
+
© Copyright {{year}} {{website_name}}.
|
|
87
|
+
{{{quoteFooterData.copyright}}}
|
|
88
|
+
<div class="footer__captcha-disclosure">
|
|
89
|
+
{{quoteFooterData.capchaDisclosure.text}}
|
|
90
|
+
<a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
|
|
91
|
+
<a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a> apply.
|
|
92
|
+
</div>
|
|
93
|
+
</div>
|
|
94
|
+
{{/xif}}
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
</div>
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
<div class="footer container">
|
|
2
|
+
<img src="{{assetsPath}}/images/logos/misc/bbb.svg" alt="BBB Accredited Logo" class="footer__bbb-logo footer__bbb">
|
|
3
|
+
<div class="footer__links">
|
|
4
|
+
{{quoteFooterData.contractor.text}}
|
|
5
|
+
<a target="_blank" href="{{quoteFooterData.contractor.link}}" rel="noopener noreferrer">
|
|
6
|
+
{{quoteFooterData.contractor.linkText}}
|
|
7
|
+
</a>
|
|
8
|
+
</div>
|
|
9
|
+
{{#xif 'this.copyright === "top"'}}
|
|
10
|
+
<div class="footer__row">
|
|
11
|
+
<div class="footer__copyright">
|
|
12
|
+
© Copyright {{year}} {{company_name}}. {{{quoteFooterData.copyright}}}
|
|
13
|
+
</div>
|
|
14
|
+
<div class="footer__captcha-disclosure">
|
|
15
|
+
{{quoteFooterData.capchaDisclosure.text}}
|
|
16
|
+
<a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
|
|
17
|
+
<a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a> apply.
|
|
18
|
+
</div>
|
|
19
|
+
</div>
|
|
20
|
+
{{/xif}}
|
|
21
|
+
{{#xif "this.privacylinks === 'top'"}}
|
|
22
|
+
<div class="footer__row">
|
|
23
|
+
<ul class="footer__links">
|
|
24
|
+
{{#each quoteFooterData.privacyLinks}}
|
|
25
|
+
<li>
|
|
26
|
+
<a href="{{../links.privacy}}" data-load="./modals/privacy/index.html" data-bind="modal-link" data-anchor="#{{this.anchor}}">
|
|
27
|
+
{{{this.text}}}
|
|
28
|
+
</a>
|
|
29
|
+
</li>
|
|
30
|
+
{{/each}}
|
|
31
|
+
<!--
|
|
32
|
+
- Define the customPrivacyLinks array of objects in template.js / siteconfig.js
|
|
33
|
+
- e.g customPrivacyLinks: [{ text: 'This is a custom link', anchor: 'ccpa' }]
|
|
34
|
+
-->
|
|
35
|
+
{{#if this.customPrivacyLinks}}
|
|
36
|
+
{{#each this.customPrivacyLinks}}
|
|
37
|
+
<li>
|
|
38
|
+
<a href="{{../links.privacy}}" data-load="./modals/privacy/index.html" data-bind="modal-link" data-anchor="#{{this.anchor}}">
|
|
39
|
+
{{{this.text}}}
|
|
40
|
+
</a>
|
|
41
|
+
</li>
|
|
42
|
+
{{/each}}
|
|
43
|
+
{{/if}}
|
|
44
|
+
</ul>
|
|
45
|
+
</div>
|
|
46
|
+
{{/xif}}
|
|
47
|
+
<div class="footer__row">
|
|
48
|
+
<ul class="footer__links">
|
|
49
|
+
{{#each quoteFooterData.links}}
|
|
50
|
+
<li>
|
|
51
|
+
<a href="{{#if this.modal}}/{{this.url}}{{else}}{{this.url}}{{/if}}" {{#xif "this.modal === true" }}data-load="./modals/{{this.url}}/index.html" data-bind="modal-link"{{/xif}} {{#if this.target}}target="{{this.target}}"{{#xif "this.target === '_blank'"}} rel="noopener noreferrer"{{/xif}}{{/if}}>{{this.text}}</a>
|
|
52
|
+
</li>
|
|
53
|
+
{{/each}}
|
|
54
|
+
<!--
|
|
55
|
+
- Define the customFooterLinks array of objects in template.js / siteconfig.js
|
|
56
|
+
- e.g customFooterLinks: [{url: 'test', text: 'Test Link'}]
|
|
57
|
+
-->
|
|
58
|
+
{{#if this.customFooterLinks}}
|
|
59
|
+
{{#each this.customFooterLinks}}
|
|
60
|
+
<li>
|
|
61
|
+
<a href="{{#if this.modal}}/{{this.url}}{{else}}{{this.url}}{{/if}}" {{#xif "this.modal === true" }}data-load="./modals/{{this.url}}/index.html" data-bind="modal-link"{{/xif}} {{#if this.target}}target="{{this.target}}"{{#xif "this.target === '_blank'"}} rel="noopener noreferrer"{{/xif}}{{/if}}>{{this.text}}</a>
|
|
62
|
+
</li>
|
|
63
|
+
{{/each}}
|
|
64
|
+
{{/if}}
|
|
65
|
+
</ul>
|
|
66
|
+
</div>
|
|
67
|
+
{{#xif 'this.copyright === "middle"'}}
|
|
68
|
+
<div class="footer__row">
|
|
69
|
+
<div class="footer__copyright">
|
|
70
|
+
© Copyright {{year}} {{company_name}}. {{{quoteFooterData.copyright}}}
|
|
71
|
+
</div>
|
|
72
|
+
<div class="footer__captcha-disclosure">
|
|
73
|
+
{{quoteFooterData.capchaDisclosure.text}}
|
|
74
|
+
<a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
|
|
75
|
+
<a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a> apply.
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
78
|
+
{{/xif}}
|
|
79
|
+
{{#xif "this.privacylinks === 'bottom'"}}
|
|
80
|
+
<div class="footer__row">
|
|
81
|
+
<ul class="footer__links">
|
|
82
|
+
{{#each quoteFooterData.privacyLinks}}
|
|
83
|
+
<li>
|
|
84
|
+
<a href="{{../links.privacy}}" data-load="./modals/privacy/index.html" data-bind="modal-link" data-anchor="#{{this.anchor}}">
|
|
85
|
+
{{{this.text}}}
|
|
86
|
+
</a>
|
|
87
|
+
</li>
|
|
88
|
+
{{/each}}
|
|
89
|
+
<!--
|
|
90
|
+
- Define the customPrivacyLinks array of objects in template.js / siteconfig.js
|
|
91
|
+
- e.g customPrivacyLinks: [{ text: 'This is a custom link', anchor: 'ccpa' }]
|
|
92
|
+
-->
|
|
93
|
+
{{#if this.customPrivacyLinks}}
|
|
94
|
+
{{#each this.customPrivacyLinks}}
|
|
95
|
+
<li>
|
|
96
|
+
<a href="{{../links.privacy}}" data-load="./modals/privacy/index.html" data-bind="modal-link" data-anchor="#{{this.anchor}}">
|
|
97
|
+
{{{this.text}}}
|
|
98
|
+
</a>
|
|
99
|
+
</li>
|
|
100
|
+
{{/each}}
|
|
101
|
+
{{/if}}
|
|
102
|
+
</ul>
|
|
103
|
+
</div>
|
|
104
|
+
{{/xif}}
|
|
105
|
+
{{#xif 'this.copyright === "bottom"'}}
|
|
106
|
+
<div class="footer__row">
|
|
107
|
+
<div class="footer__copyright">
|
|
108
|
+
© Copyright {{year}} {{company_name}}. {{{quoteFooterData.copyright}}}
|
|
109
|
+
</div>
|
|
110
|
+
<div class="footer__captcha-disclosure">
|
|
111
|
+
{{quoteFooterData.capchaDisclosure.text}}
|
|
112
|
+
<a href="{{quoteFooterData.capchaDisclosure.privacy.url}}" target="_blank">{{quoteFooterData.capchaDisclosure.privacy.text}}</a> and
|
|
113
|
+
<a href="{{quoteFooterData.capchaDisclosure.terms.url}}" target="_blank">{{{quoteFooterData.capchaDisclosure.terms.text}}}</a> apply.
|
|
114
|
+
</div>
|
|
115
|
+
</div>
|
|
116
|
+
{{/xif}}
|
|
117
|
+
</div>
|