@onsvisual/svelte-components 0.1.65 → 0.1.66
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/dist/layout/Footer/Footer.svelte +16 -13
- package/package.json +1 -1
|
@@ -81,16 +81,19 @@
|
|
|
81
81
|
{#if compact}
|
|
82
82
|
<ul class="ons-list ons-u-mt-m ons-footer--rows ons-list--bare ons-list--inline">
|
|
83
83
|
<li class="ons-list__item">
|
|
84
|
-
<a href="/help/accessibility" class="ons-list__link"
|
|
84
|
+
<a href="{baseurl}/help/accessibility" class="ons-list__link"
|
|
85
|
+
>{i18n("Accessibility")}</a
|
|
86
|
+
>
|
|
85
87
|
</li>
|
|
86
88
|
<li class="ons-list__item">
|
|
87
|
-
<a href="/cookies" class="ons-list__link">{i18n("Cookies")}</a>
|
|
89
|
+
<a href="{baseurl}/cookies" class="ons-list__link">{i18n("Cookies")}</a>
|
|
88
90
|
</li>
|
|
89
91
|
<li class="ons-list__item">
|
|
90
|
-
<a href="/help/privacynotice" class="ons-list__link">{i18n("Privacy")}</a
|
|
92
|
+
<a href="{baseurl}/help/privacynotice" class="ons-list__link">{i18n("Privacy")}</a
|
|
93
|
+
>
|
|
91
94
|
</li>
|
|
92
95
|
<li class="ons-list__item">
|
|
93
|
-
<a href="/help/termsandconditions" class="ons-list__link"
|
|
96
|
+
<a href="{baseurl}/help/termsandconditions" class="ons-list__link"
|
|
94
97
|
>{i18n("Terms and conditions")}</a
|
|
95
98
|
>
|
|
96
99
|
</li>
|
|
@@ -101,16 +104,16 @@
|
|
|
101
104
|
<h2 class="footer-nav__heading">{i18n("Help")}</h2>
|
|
102
105
|
<ul class="footer-nav__list">
|
|
103
106
|
<li class="footer-nav__item">
|
|
104
|
-
<a href="/help/accessibility">{i18n("Accessibility")}</a>
|
|
107
|
+
<a href="{baseurl}/help/accessibility">{i18n("Accessibility")}</a>
|
|
105
108
|
</li>
|
|
106
109
|
<li class="footer-nav__item">
|
|
107
|
-
<a href="/cookies">{i18n("Cookies")}</a>
|
|
110
|
+
<a href="{baseurl}/cookies">{i18n("Cookies")}</a>
|
|
108
111
|
</li>
|
|
109
112
|
<li class="footer-nav__item">
|
|
110
|
-
<a href="/help/privacynotice">{i18n("Privacy")}</a>
|
|
113
|
+
<a href="{baseurl}/help/privacynotice">{i18n("Privacy")}</a>
|
|
111
114
|
</li>
|
|
112
115
|
<li class="footer-nav__item">
|
|
113
|
-
<a href="/help/termsandconditions">{i18n("Terms and conditions")}</a>
|
|
116
|
+
<a href="{baseurl}/help/termsandconditions">{i18n("Terms and conditions")}</a>
|
|
114
117
|
</li>
|
|
115
118
|
</ul>
|
|
116
119
|
</div>
|
|
@@ -118,19 +121,19 @@
|
|
|
118
121
|
<h2 class="footer-nav__heading">{i18n("About ONS")}</h2>
|
|
119
122
|
<ul class="footer-nav__list">
|
|
120
123
|
<li class="footer-nav__item">
|
|
121
|
-
<a href="/aboutus/whatwedo">{i18n("What we do")}</a>
|
|
124
|
+
<a href="{baseurl}/aboutus/whatwedo">{i18n("What we do")}</a>
|
|
122
125
|
</li>
|
|
123
126
|
<li class="footer-nav__item">
|
|
124
|
-
<a href="/aboutus/careers">{i18n("Careers")}</a>
|
|
127
|
+
<a href="{baseurl}/aboutus/careers">{i18n("Careers")}</a>
|
|
125
128
|
</li>
|
|
126
129
|
<li class="footer-nav__item">
|
|
127
|
-
<a href="/aboutus/contactus">{i18n("Contact us")}</a>
|
|
130
|
+
<a href="{baseurl}/aboutus/contactus">{i18n("Contact us")}</a>
|
|
128
131
|
</li>
|
|
129
132
|
<li class="footer-nav__item">
|
|
130
|
-
<a href="/news">{i18n("News")}</a>
|
|
133
|
+
<a href="{baseurl}/news">{i18n("News")}</a>
|
|
131
134
|
</li>
|
|
132
135
|
<li class="footer-nav__item">
|
|
133
|
-
<a href="/aboutus/transparencyandgovernance/freedomofinformationfoi"
|
|
136
|
+
<a href="{baseurl}/aboutus/transparencyandgovernance/freedomofinformationfoi"
|
|
134
137
|
>{i18n("Freedom of Information")}</a
|
|
135
138
|
>
|
|
136
139
|
</li>
|