tecitheme 0.2.0 → 0.2.2
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/README.md +1 -0
- package/assets/TECi_logo.svelte +146 -119
- package/components/Banner.svelte +74 -42
- package/components/Button.svelte +6 -2
- package/components/CTA.svelte +31 -21
- package/components/Card.svelte +34 -17
- package/components/CountrySelector.svelte +133 -133
- package/components/Figure.svelte +24 -20
- package/components/Footer.svelte +292 -177
- package/components/Header.svelte +146 -120
- package/components/HeadingCentered.svelte +23 -21
- package/components/Icon.svelte +132 -124
- package/components/Math.svelte +15 -10
- package/components/MediaFeature.svelte +56 -32
- package/components/MetaSocial.svelte +12 -12
- package/components/Modal.svelte +33 -14
- package/components/NewsGrid.svelte +31 -25
- package/components/SidebarContent.svelte +84 -24
- package/components/Subscribe.svelte +4 -3
- package/components/ThreeColumn.svelte +1 -1
- package/components/TrialForm.svelte +249 -202
- package/components/TrialForm.svelte.d.ts +3 -3
- package/components/Video.svelte +14 -16
- package/components/Wrap.svelte +7 -7
- package/get-content.js +55 -40
- package/layouts/blocks.svelte +49 -36
- package/package.json +17 -17
- package/req_utils.js +52 -51
- package/site_config.json +2 -2
- package/utils.js +39 -22
- package/variables.js +1 -1
package/components/Footer.svelte
CHANGED
|
@@ -1,191 +1,306 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
2
|
+
import { page } from "$app/stores";
|
|
3
|
+
export const token = $page.data.token;
|
|
4
|
+
export let login = false;
|
|
5
|
+
|
|
6
|
+
let d = new Date();
|
|
7
|
+
|
|
8
|
+
async function signOut() {
|
|
9
|
+
const response = await fetch("/auth/logout", {
|
|
10
|
+
method: "GET",
|
|
11
|
+
headers: {
|
|
12
|
+
"content-type": "application/json",
|
|
13
|
+
},
|
|
14
|
+
});
|
|
15
|
+
if (response.ok) {
|
|
16
|
+
visibleProfile = !visibleProfile;
|
|
17
|
+
window.location.href = "/";
|
|
18
|
+
} else {
|
|
19
|
+
alert(await response.text());
|
|
21
20
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
</
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
</li>
|
|
72
|
-
<li>
|
|
73
|
-
<a href="https://support.thunderheadeng.com/release-notes/" class="text-base text-gray-300 hover:text-white">
|
|
74
|
-
Release Notes
|
|
75
|
-
</a>
|
|
76
|
-
</li>
|
|
77
|
-
<li>
|
|
78
|
-
<a href="https://support.thunderheadeng.com/answers/" class="text-base text-gray-300 hover:text-white">
|
|
79
|
-
FAQs
|
|
80
|
-
</a>
|
|
81
|
-
</li>
|
|
82
|
-
</ul>
|
|
83
|
-
</div>
|
|
21
|
+
}
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<footer id="bottom" class="bg-gray-800" aria-labelledby="footerHeading">
|
|
25
|
+
<h2 id="footerHeading" class="sr-only">Footer</h2>
|
|
26
|
+
<div class="mx-auto max-w-7xl py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
|
|
27
|
+
<div class="xl:grid xl:grid-cols-3 xl:gap-8">
|
|
28
|
+
<div class="grid grid-cols-2 gap-8 xl:col-span-2">
|
|
29
|
+
<div class="md:grid md:grid-cols-2 md:gap-8">
|
|
30
|
+
<div>
|
|
31
|
+
<h3
|
|
32
|
+
class="text-sm font-semibold uppercase tracking-wider text-gray-500"
|
|
33
|
+
>
|
|
34
|
+
Products
|
|
35
|
+
</h3>
|
|
36
|
+
<ul class="mt-4 space-y-4">
|
|
37
|
+
<li>
|
|
38
|
+
<a
|
|
39
|
+
href="https://www.thunderheadeng.com/pyrosim/"
|
|
40
|
+
class="text-base text-gray-300 hover:text-white"
|
|
41
|
+
>
|
|
42
|
+
PyroSim
|
|
43
|
+
</a>
|
|
44
|
+
</li>
|
|
45
|
+
<li>
|
|
46
|
+
<a
|
|
47
|
+
href="https://www.thunderheadeng.com/pathfinder/"
|
|
48
|
+
class="text-base text-gray-300 hover:text-white"
|
|
49
|
+
>
|
|
50
|
+
Pathfinder
|
|
51
|
+
</a>
|
|
52
|
+
</li>
|
|
53
|
+
<li>
|
|
54
|
+
<a
|
|
55
|
+
href="https://www.thunderheadeng.com/petrasim/"
|
|
56
|
+
class="text-base text-gray-300 hover:text-white"
|
|
57
|
+
>
|
|
58
|
+
PetraSim
|
|
59
|
+
</a>
|
|
60
|
+
</li>
|
|
61
|
+
<li>
|
|
62
|
+
<a
|
|
63
|
+
href="https://www.thunderheadeng.com/other"
|
|
64
|
+
class="text-base text-gray-300 hover:text-white"
|
|
65
|
+
>
|
|
66
|
+
Other Tools
|
|
67
|
+
</a>
|
|
68
|
+
</li>
|
|
69
|
+
</ul>
|
|
84
70
|
</div>
|
|
85
|
-
<div class="
|
|
86
|
-
<
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
<
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
</
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
Jobs
|
|
126
|
-
</a>
|
|
127
|
-
</li>
|
|
128
|
-
<li>
|
|
129
|
-
<a href="https://www.thunderheadeng.com/partners" class="text-base text-gray-300 hover:text-white">
|
|
130
|
-
Partners
|
|
131
|
-
</a>
|
|
132
|
-
</li>
|
|
133
|
-
</ul>
|
|
134
|
-
</div>
|
|
71
|
+
<div class="mt-12 md:mt-0">
|
|
72
|
+
<h3
|
|
73
|
+
class="text-sm font-semibold uppercase tracking-wider text-gray-500"
|
|
74
|
+
>
|
|
75
|
+
Support
|
|
76
|
+
</h3>
|
|
77
|
+
<ul class="mt-4 space-y-4">
|
|
78
|
+
<li>
|
|
79
|
+
<a
|
|
80
|
+
href="https://support.thunderheadeng.com/docs/"
|
|
81
|
+
class="text-base text-gray-300 hover:text-white"
|
|
82
|
+
>
|
|
83
|
+
Documentation
|
|
84
|
+
</a>
|
|
85
|
+
</li>
|
|
86
|
+
<li>
|
|
87
|
+
<a
|
|
88
|
+
href="https://support.thunderheadeng.com/tutorials/"
|
|
89
|
+
class="text-base text-gray-300 hover:text-white"
|
|
90
|
+
>
|
|
91
|
+
Tutorials
|
|
92
|
+
</a>
|
|
93
|
+
</li>
|
|
94
|
+
<li>
|
|
95
|
+
<a
|
|
96
|
+
href="https://support.thunderheadeng.com/release-notes/"
|
|
97
|
+
class="text-base text-gray-300 hover:text-white"
|
|
98
|
+
>
|
|
99
|
+
Release Notes
|
|
100
|
+
</a>
|
|
101
|
+
</li>
|
|
102
|
+
<li>
|
|
103
|
+
<a
|
|
104
|
+
href="https://support.thunderheadeng.com/answers/"
|
|
105
|
+
class="text-base text-gray-300 hover:text-white"
|
|
106
|
+
>
|
|
107
|
+
FAQs
|
|
108
|
+
</a>
|
|
109
|
+
</li>
|
|
110
|
+
</ul>
|
|
135
111
|
</div>
|
|
136
112
|
</div>
|
|
137
|
-
<div class="
|
|
138
|
-
<
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
113
|
+
<div class="md:grid md:grid-cols-2 md:gap-8">
|
|
114
|
+
<div>
|
|
115
|
+
<h3
|
|
116
|
+
class="text-sm font-semibold uppercase tracking-wider text-gray-500"
|
|
117
|
+
>
|
|
118
|
+
Events
|
|
119
|
+
</h3>
|
|
120
|
+
<ul class="mt-4 space-y-4">
|
|
121
|
+
<li>
|
|
122
|
+
<a
|
|
123
|
+
href="https://www.thunderheadeng.com/training/"
|
|
124
|
+
class="text-base text-gray-300 hover:text-white"
|
|
125
|
+
>
|
|
126
|
+
Calendar
|
|
127
|
+
</a>
|
|
128
|
+
</li>
|
|
129
|
+
<li>
|
|
130
|
+
<a
|
|
131
|
+
href="https://www.femtc.com/"
|
|
132
|
+
class="text-base text-gray-300 hover:text-white"
|
|
133
|
+
>
|
|
134
|
+
FEMTC
|
|
135
|
+
</a>
|
|
136
|
+
</li>
|
|
137
|
+
<li>
|
|
138
|
+
<a
|
|
139
|
+
href="https://www.thunderheadeng.com/training/"
|
|
140
|
+
class="text-base text-gray-300 hover:text-white"
|
|
141
|
+
>
|
|
142
|
+
Training
|
|
143
|
+
</a>
|
|
144
|
+
</li>
|
|
145
|
+
</ul>
|
|
146
|
+
</div>
|
|
147
|
+
<div class="mt-12 md:mt-0">
|
|
148
|
+
<h3
|
|
149
|
+
class="text-sm font-semibold uppercase tracking-wider text-gray-500"
|
|
150
|
+
>
|
|
151
|
+
Company
|
|
152
|
+
</h3>
|
|
153
|
+
<ul class="mt-4 space-y-4">
|
|
154
|
+
<li>
|
|
155
|
+
<a
|
|
156
|
+
href="https://www.thunderheadeng.com/about/"
|
|
157
|
+
class="text-base text-gray-300 hover:text-white"
|
|
158
|
+
>
|
|
159
|
+
About
|
|
160
|
+
</a>
|
|
161
|
+
</li>
|
|
162
|
+
<li>
|
|
163
|
+
<a
|
|
164
|
+
href="https://www.thunderheadeng.com/news/"
|
|
165
|
+
class="text-base text-gray-300 hover:text-white"
|
|
166
|
+
>
|
|
167
|
+
News
|
|
168
|
+
</a>
|
|
169
|
+
</li>
|
|
170
|
+
<li>
|
|
171
|
+
<a
|
|
172
|
+
href="https://www.thunderheadeng.com/job-openings/"
|
|
173
|
+
class="text-base text-gray-300 hover:text-white"
|
|
174
|
+
>
|
|
175
|
+
Jobs
|
|
176
|
+
</a>
|
|
177
|
+
</li>
|
|
178
|
+
<li>
|
|
179
|
+
<a
|
|
180
|
+
href="https://www.thunderheadeng.com/partners"
|
|
181
|
+
class="text-base text-gray-300 hover:text-white"
|
|
182
|
+
>
|
|
183
|
+
Partners
|
|
184
|
+
</a>
|
|
185
|
+
</li>
|
|
186
|
+
</ul>
|
|
151
187
|
</div>
|
|
152
188
|
</div>
|
|
153
189
|
</div>
|
|
154
|
-
<div class="mt-8
|
|
155
|
-
<
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
|
|
166
|
-
<path fill-rule="evenodd" d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z" clip-rule="evenodd" />
|
|
167
|
-
</svg>
|
|
168
|
-
</a>
|
|
169
|
-
|
|
170
|
-
<a href="https://twitter.com/thunderheadeng" class="text-gray-400 hover:text-gray-300">
|
|
171
|
-
<span class="sr-only">Twitter</span>
|
|
172
|
-
<svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
|
|
173
|
-
<path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
|
|
174
|
-
</svg>
|
|
175
|
-
</a>
|
|
176
|
-
</div>
|
|
177
|
-
<p class="mt-8 text-sm text-gray-500 md:mt-0 md:order-1">
|
|
178
|
-
© 1998 - { d.getFullYear() } Thunderhead Engineering, All rights reserved.
|
|
190
|
+
<div class="mt-8 flex flex-col justify-between md:items-end xl:mt-0">
|
|
191
|
+
<h3
|
|
192
|
+
class="text-right text-sm font-semibold uppercase tracking-wider text-gray-500"
|
|
193
|
+
>
|
|
194
|
+
Subscribe to Updates
|
|
195
|
+
</h3>
|
|
196
|
+
<p
|
|
197
|
+
class="xxl:text-lg mt-4 text-right text-base leading-6 text-gray-300"
|
|
198
|
+
>
|
|
199
|
+
Receive information about new software releases, tutorials and major
|
|
200
|
+
announcements.
|
|
179
201
|
</p>
|
|
180
|
-
|
|
181
|
-
|
|
202
|
+
<data
|
|
203
|
+
id="mj-w-res-data"
|
|
204
|
+
data-token="c59142d82197a4f86bc30e8fa80e1ea8"
|
|
205
|
+
class="mj-w-data"
|
|
206
|
+
data-apikey="3aOX"
|
|
207
|
+
data-w-id="Fbu"
|
|
208
|
+
data-lang="en_US"
|
|
209
|
+
data-base="https://app.mailjet.com"
|
|
210
|
+
data-width="640"
|
|
211
|
+
data-height="480"
|
|
212
|
+
data-statics="statics"
|
|
213
|
+
/>
|
|
214
|
+
<div
|
|
215
|
+
class="mj-w-button mj-w-btn mt-4 w-full md:max-w-xs"
|
|
216
|
+
data-token="c59142d82197a4f86bc30e8fa80e1ea8"
|
|
217
|
+
>
|
|
218
|
+
<div
|
|
219
|
+
class="mj-w-button-content flex w-full items-center justify-center border border-transparent bg-teci-blue-light px-4 py-2 text-base font-medium leading-6 text-white transition duration-150 ease-in-out hover:bg-teci-blue-dark focus:border-teci-blue-dark focus:outline-none"
|
|
220
|
+
>
|
|
221
|
+
Sign Up
|
|
222
|
+
</div>
|
|
223
|
+
</div>
|
|
224
|
+
</div>
|
|
225
|
+
</div>
|
|
226
|
+
<div
|
|
227
|
+
class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between"
|
|
228
|
+
>
|
|
229
|
+
<div class="flex space-x-6 md:order-3">
|
|
230
|
+
<a
|
|
231
|
+
href="https://www.linkedin.com/company/thunderheadeng"
|
|
232
|
+
class="text-gray-400 hover:text-gray-300"
|
|
233
|
+
>
|
|
234
|
+
<span class="sr-only">LinkedIn</span>
|
|
235
|
+
<svg
|
|
236
|
+
class="h-6 w-6"
|
|
237
|
+
fill="currentColor"
|
|
238
|
+
viewBox="0 0 24 24"
|
|
239
|
+
aria-hidden="true"
|
|
240
|
+
>
|
|
241
|
+
<path
|
|
242
|
+
fill-rule="evenodd"
|
|
243
|
+
d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"
|
|
244
|
+
/>
|
|
245
|
+
</svg>
|
|
246
|
+
</a>
|
|
247
|
+
|
|
248
|
+
<a
|
|
249
|
+
href="https://www.facebook.com/thunderheadeng"
|
|
250
|
+
class="text-gray-400 hover:text-gray-300"
|
|
251
|
+
>
|
|
252
|
+
<span class="sr-only">Facebook</span>
|
|
253
|
+
<svg
|
|
254
|
+
class="h-6 w-6"
|
|
255
|
+
fill="currentColor"
|
|
256
|
+
viewBox="0 0 24 24"
|
|
257
|
+
aria-hidden="true"
|
|
258
|
+
>
|
|
259
|
+
<path
|
|
260
|
+
fill-rule="evenodd"
|
|
261
|
+
d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z"
|
|
262
|
+
clip-rule="evenodd"
|
|
263
|
+
/>
|
|
264
|
+
</svg>
|
|
265
|
+
</a>
|
|
266
|
+
|
|
267
|
+
<a
|
|
268
|
+
href="https://twitter.com/thunderheadeng"
|
|
269
|
+
class="text-gray-400 hover:text-gray-300"
|
|
270
|
+
>
|
|
271
|
+
<span class="sr-only">Twitter</span>
|
|
272
|
+
<svg
|
|
273
|
+
class="h-6 w-6"
|
|
274
|
+
fill="currentColor"
|
|
275
|
+
viewBox="0 0 24 24"
|
|
276
|
+
aria-hidden="true"
|
|
277
|
+
>
|
|
278
|
+
<path
|
|
279
|
+
d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84"
|
|
280
|
+
/>
|
|
281
|
+
</svg>
|
|
282
|
+
</a>
|
|
283
|
+
</div>
|
|
284
|
+
<p class="mt-8 text-sm text-gray-500 md:order-1 md:mt-0">
|
|
285
|
+
© 1998 - {d.getFullYear()} Thunderhead Engineering, All rights reserved.
|
|
286
|
+
</p>
|
|
287
|
+
{#if login}
|
|
288
|
+
<div class="mt-4 md:order-2 md:mt-0">
|
|
182
289
|
{#if token}
|
|
183
|
-
|
|
290
|
+
<button
|
|
291
|
+
on:click|preventDefault={signOut}
|
|
292
|
+
class="mx-auto flex w-40 items-center justify-center border border-transparent bg-teci-blue-dark px-4 py-2 text-base font-medium leading-6 text-white transition duration-150 ease-in-out hover:bg-teci-blue-light focus:border-teci-blue-dark focus:outline-none"
|
|
293
|
+
>Staff Log out</button
|
|
294
|
+
>
|
|
184
295
|
{:else}
|
|
185
|
-
|
|
296
|
+
<a
|
|
297
|
+
href="/auth/login"
|
|
298
|
+
class="mx-auto flex w-40 items-center justify-center border border-transparent bg-teci-blue-dark px-4 py-2 text-base font-medium leading-6 text-white transition duration-150 ease-in-out hover:bg-teci-blue-light focus:border-teci-blue-dark focus:outline-none"
|
|
299
|
+
>Staff Sign In</a
|
|
300
|
+
>
|
|
186
301
|
{/if}
|
|
187
302
|
</div>
|
|
188
|
-
|
|
189
|
-
</div>
|
|
303
|
+
{/if}
|
|
190
304
|
</div>
|
|
191
|
-
</
|
|
305
|
+
</div>
|
|
306
|
+
</footer>
|