mp-design-system 1.2.27 → 1.2.30
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/build/scss/library.css +1 -1
- package/dist/build/scss/library.css.map +1 -1
- package/dist/build/scss/main.css +1 -1
- package/dist/build/scss/main.css.map +1 -1
- package/package.json +2 -2
- package/src/_includes/components/button/button.scss +1 -1
- package/src/_includes/components/card/existing-customer-card.config.js +51 -0
- package/src/_includes/components/card/existing-customer-card.njk +40 -0
- package/src/_includes/components/card/existing-customer-card.scss +100 -0
- package/src/_includes/components/card/industry-card.config.js +26 -3
- package/src/_includes/components/card/industry-card.njk +32 -6
- package/src/_includes/components/card/industry-card.scss +76 -6
- package/src/_includes/components/card/macro.njk +14 -2
- package/src/_includes/components/card/measurement-type-card.config.js +35 -0
- package/src/_includes/components/card/measurement-type-card.njk +35 -0
- package/src/_includes/components/card/measurement-type-card.scss +56 -0
- package/src/_includes/components/card/{product-comparison-card.config.js → product-card.config.js} +28 -27
- package/src/_includes/components/card/product-card.njk +50 -0
- package/src/_includes/components/card/product-card.scss +88 -0
- package/src/_includes/components/card/search-result-card.config.js +2 -2
- package/src/_includes/components/card/search-result-card.njk +27 -18
- package/src/_includes/components/card/search-result-card.scss +5 -5
- package/src/_includes/components/card/technology-card.config.js +35 -0
- package/src/_includes/components/card/technology-card.njk +35 -0
- package/src/_includes/components/card/technology-card.scss +56 -0
- package/src/_includes/components/component/preview-fixed-width.njk +5 -0
- package/src/_includes/components/eyebrow/eyebrow.config.js +14 -0
- package/src/_includes/components/eyebrow/eyebrow.scss +10 -0
- package/src/_includes/components/signpost/signpost.config.js +14 -1
- package/src/_includes/components/signpost/signpost.njk +7 -4
- package/src/_includes/components/signpost/signpost.scss +23 -0
- package/src/_includes/components/tabs/tabs.scss +4 -0
- package/src/_includes/components/twi/twi.scss +4 -0
- package/src/_includes/layout.njk +0 -2
- package/src/_includes/navigation/corporate.njk +0 -3
- package/src/assets/scss/components/index.scss +4 -1
- package/src/assets/scss/components/product-finder.scss +1 -1
- package/src/assets/scss/tools/cutoff.scss +5 -1
- package/src/assets/scss/tools/index.scss +11 -7
- package/src/assets/scss/utilities/space.scss +6 -0
- package/src/index.njk +1 -1
- package/src/prototype/events-hub.njk +463 -0
- package/src/prototype/index.njk +251 -182
- package/src/prototype/range.njk +5 -5
- package/src/prototype/sections.njk +6 -1
- package/src/static/svg/icon-globe-alt.svg +4 -0
- package/src/static/svg/icon-live-webinars.svg +6 -0
- package/src/static/svg/icon-recorded-webinars.svg +4 -0
- package/src/static/svg/icon-user-trainings.svg +5 -0
- package/src/_includes/components/card/product-comparison-card.njk +0 -37
- package/src/_includes/components/card/product-comparison-card.scss +0 -79
- /package/src/assets/fonts/{inter-bold.woff → Inter-Bold.woff} +0 -0
- /package/src/assets/fonts/{inter-bold.woff2 → Inter-Bold.woff2} +0 -0
- /package/src/assets/fonts/{inter-regular.woff → Inter-Regular.woff} +0 -0
- /package/src/assets/fonts/{inter-regular.woff2 → Inter-Regular.woff2} +0 -0
- /package/src/assets/fonts/{inter-semibold.woff → Inter-SemiBold.woff} +0 -0
- /package/src/assets/fonts/{inter-semibold.woff2 → Inter-SemiBold.woff2} +0 -0
@@ -0,0 +1,463 @@
|
|
1
|
+
---
|
2
|
+
title: Events hub
|
3
|
+
tags: prototype
|
4
|
+
tagTitle: Webinars
|
5
|
+
---
|
6
|
+
|
7
|
+
{% from "components/button/macro.njk" import button %}
|
8
|
+
{% from "components/card/macro.njk" import card %}
|
9
|
+
{% from "components/hero/macro.njk" import hero %}
|
10
|
+
{% from "components/product-signpost/macro.njk" import productSignpost %}
|
11
|
+
{% from "components/signpost/macro.njk" import signpost %}
|
12
|
+
{% from "components/twi/macro.njk" import twi %}
|
13
|
+
|
14
|
+
{% set siteNav %}{% include "navigation/corporate.njk" %}{% endset %}
|
15
|
+
|
16
|
+
{% extends "page.njk" %}
|
17
|
+
|
18
|
+
{% block content %}
|
19
|
+
|
20
|
+
{{ hero({
|
21
|
+
cover: true,
|
22
|
+
title: 'Webinars and events'
|
23
|
+
}) }}
|
24
|
+
|
25
|
+
<div class="u-flow--3xl u-pad-bottom-xl">
|
26
|
+
|
27
|
+
{# Big nav cards #}
|
28
|
+
<div class="u-wrap u-margin-top-negative-2xl">
|
29
|
+
<div class="o-grid o-grid--of-four o-grid--of-four-early">
|
30
|
+
{{ signpost({
|
31
|
+
direction: 'vertical',
|
32
|
+
color: 'blue',
|
33
|
+
size: 'l',
|
34
|
+
link: '',
|
35
|
+
icon: 'icon-live-webinars',
|
36
|
+
title: 'Live webinars',
|
37
|
+
classes: 'u-step-1 u-white'
|
38
|
+
}) }}
|
39
|
+
{{ signpost({
|
40
|
+
direction: 'vertical',
|
41
|
+
color: 'blue',
|
42
|
+
size: 'l',
|
43
|
+
link: '',
|
44
|
+
icon: 'icon-recorded-webinars',
|
45
|
+
title: 'Recorded webinars',
|
46
|
+
classes: 'u-step-1 u-white'
|
47
|
+
}) }}
|
48
|
+
{{ signpost({
|
49
|
+
direction: 'vertical',
|
50
|
+
color: 'blue',
|
51
|
+
size: 'l',
|
52
|
+
link: '',
|
53
|
+
icon: 'icon-user-training',
|
54
|
+
title: 'User training',
|
55
|
+
classes: 'u-step-1 u-white'
|
56
|
+
}) }}
|
57
|
+
{{ signpost({
|
58
|
+
direction: 'vertical',
|
59
|
+
color: 'blue',
|
60
|
+
size: 'l',
|
61
|
+
link: '',
|
62
|
+
icon: 'icon-globe-alt',
|
63
|
+
title: 'In-person events',
|
64
|
+
classes: 'u-step-1 u-white'
|
65
|
+
}) }}
|
66
|
+
</div>
|
67
|
+
</div>
|
68
|
+
|
69
|
+
{# This week #}
|
70
|
+
<div class="c-slat--white">
|
71
|
+
<div id="this-week" class="u-wrap u-flow">
|
72
|
+
<p class="c-h c-h--upper">Featured</p>
|
73
|
+
<h2 class="c-h c-h--step-5">This week</h2>
|
74
|
+
|
75
|
+
{{ card({
|
76
|
+
theme: {
|
77
|
+
layout: 'multi c-card--layout-multi-40-60',
|
78
|
+
name: 'featured',
|
79
|
+
switch: false
|
80
|
+
},
|
81
|
+
image: {
|
82
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/346cf3ca-b1a0-4725-8ba4-adea00c33589/shutterstock_1099481945_Original%20file.jpg?quality=60&width=810',
|
83
|
+
alt: 'Alt'
|
84
|
+
},
|
85
|
+
header: {
|
86
|
+
title: 'Does your nasal spray have the right droplet size?',
|
87
|
+
meta: ['English'],
|
88
|
+
date: {
|
89
|
+
date: '2021-02-09' | createDate,
|
90
|
+
time: '11:00 – 1200',
|
91
|
+
timezone: 'EST'
|
92
|
+
}
|
93
|
+
},
|
94
|
+
body: {
|
95
|
+
keySpecs: [
|
96
|
+
{
|
97
|
+
title: 'Products',
|
98
|
+
term: 'Spraytec'
|
99
|
+
},
|
100
|
+
{
|
101
|
+
title: 'Technologies',
|
102
|
+
term: 'Light scattering, Laser diffraction'
|
103
|
+
}
|
104
|
+
]
|
105
|
+
},
|
106
|
+
footer: {
|
107
|
+
buttons: [
|
108
|
+
{
|
109
|
+
label: 'Book your place',
|
110
|
+
link: '/prototype/oma/',
|
111
|
+
colour: 'green'
|
112
|
+
}
|
113
|
+
]
|
114
|
+
},
|
115
|
+
tag: 'Live webinar'
|
116
|
+
}) }}
|
117
|
+
|
118
|
+
</div>
|
119
|
+
</div>
|
120
|
+
|
121
|
+
{# Upcoming #}
|
122
|
+
<div class="c-slat--white">
|
123
|
+
<div id="upcoming" class="u-wrap u-flow">
|
124
|
+
<div class="u-split">
|
125
|
+
<h2 class="c-h c-h--step-5">Coming soon</h2>
|
126
|
+
{{ twi({ classes: 'u-link', label: "See all upcoming webinars", icon: 'arrow-right', align: 'left', link: "#" }) }}
|
127
|
+
</div>
|
128
|
+
<div class="o-grid o-grid--of-four o-grid--of-four-early o-grid--swipeable">
|
129
|
+
{{ card({
|
130
|
+
theme: {
|
131
|
+
layout: 'single',
|
132
|
+
size: 'small',
|
133
|
+
name: 'alt'
|
134
|
+
},
|
135
|
+
image: {
|
136
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/104e96b0-c522-48c7-aeec-adea00b3cee7/Zetium_zoom_in_Original.JPG?quality=60&width=430&crop=2:1',
|
137
|
+
alt: 'Alt'
|
138
|
+
},
|
139
|
+
header: {
|
140
|
+
title: 'Zetium ED X-ray fluorescence SuperQ application course',
|
141
|
+
date: {
|
142
|
+
date: '25th Oct',
|
143
|
+
formatted: true
|
144
|
+
}
|
145
|
+
},
|
146
|
+
link: '#',
|
147
|
+
tag: 'Live webinar'
|
148
|
+
}) }}
|
149
|
+
{{ card({
|
150
|
+
theme: {
|
151
|
+
layout: 'single',
|
152
|
+
size: 'small',
|
153
|
+
name: 'alt'
|
154
|
+
},
|
155
|
+
image: {
|
156
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/d0a4b426-50a7-4c5f-86a0-ada200fe3349/637297929593313364LB_Original%20file.jpg?quality=60&width=430&crop=2:1',
|
157
|
+
alt: 'Alt'
|
158
|
+
},
|
159
|
+
header: {
|
160
|
+
title: 'Ask us Anything: The API Edition - API Characterization & Developability',
|
161
|
+
date: {
|
162
|
+
date: '2nd Nov',
|
163
|
+
formatted: true
|
164
|
+
}
|
165
|
+
},
|
166
|
+
link: '#',
|
167
|
+
tag: 'Live webinar'
|
168
|
+
}) }}
|
169
|
+
{{ card({
|
170
|
+
theme: {
|
171
|
+
layout: 'single',
|
172
|
+
size: 'small',
|
173
|
+
name: 'alt'
|
174
|
+
},
|
175
|
+
image: {
|
176
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/3b4401e3-e9e3-4429-85cd-adcf008e42a9/shutterstock_2013310244_Original%20file.jpg?quality=60&width=430&crop=2:1',
|
177
|
+
alt: 'Alt'
|
178
|
+
},
|
179
|
+
header: {
|
180
|
+
title: 'Discover how on-line particle sizing optimises mining analytics',
|
181
|
+
date: {
|
182
|
+
date: '4th Nov',
|
183
|
+
formatted: true
|
184
|
+
}
|
185
|
+
},
|
186
|
+
link: '#',
|
187
|
+
tag: 'Live webinar'
|
188
|
+
}) }}
|
189
|
+
{{ card({
|
190
|
+
theme: {
|
191
|
+
layout: 'single',
|
192
|
+
size: 'small',
|
193
|
+
name: 'alt'
|
194
|
+
},
|
195
|
+
image: {
|
196
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/24281053-07f1-4074-8f23-ad9d0185f936/636216641945690089YL_Original%20file.jpg?quality=60&width=430&crop=2:1',
|
197
|
+
alt: 'Alt'
|
198
|
+
},
|
199
|
+
header: {
|
200
|
+
title: 'Ask an Expert! Separations in liquid chromatography',
|
201
|
+
date: {
|
202
|
+
date: '10th Nov',
|
203
|
+
formatted: true
|
204
|
+
}
|
205
|
+
},
|
206
|
+
link: '#',
|
207
|
+
tag: 'Live webinar'
|
208
|
+
}) }}
|
209
|
+
</div>
|
210
|
+
</div>
|
211
|
+
</div>
|
212
|
+
|
213
|
+
{# Recorded #}
|
214
|
+
<div class="c-slat--white">
|
215
|
+
<div id="recorded" class="u-wrap u-flow">
|
216
|
+
<div class="u-split">
|
217
|
+
<h2 class="c-h c-h--step-5">Recorded webinars</h2>
|
218
|
+
{{ twi({ classes: 'u-link', label: "See all recorded webinars", icon: 'arrow-right', align: 'left', link: "#" }) }}
|
219
|
+
</div>
|
220
|
+
<div class="o-grid o-grid--of-four o-grid--of-four-early o-grid--swipeable">
|
221
|
+
{{ card({
|
222
|
+
theme: {
|
223
|
+
layout: 'single',
|
224
|
+
size: 'small',
|
225
|
+
name: 'alt'
|
226
|
+
},
|
227
|
+
image: {
|
228
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/76ab3eb0-dbda-4301-aa2b-ad9f010dd5ab/636955156184886735KA_Original%20file.jpg?quality=60&width=430&crop=2:1',
|
229
|
+
alt: 'Alt'
|
230
|
+
},
|
231
|
+
header: {
|
232
|
+
title: 'SAXS vs DLS: How to measure particle size and shape of nanometrics',
|
233
|
+
date: {
|
234
|
+
date: '18th Oct',
|
235
|
+
formatted: true
|
236
|
+
}
|
237
|
+
},
|
238
|
+
link: '#',
|
239
|
+
tag: 'Recorded webinar'
|
240
|
+
}) }}
|
241
|
+
{{ card({
|
242
|
+
theme: {
|
243
|
+
layout: 'single',
|
244
|
+
size: 'small',
|
245
|
+
name: 'alt'
|
246
|
+
},
|
247
|
+
image: {
|
248
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/3c3dd6c5-2c7c-4e0f-894f-ada2010d1dbe/637308815422766397VE_Original%20file.jpg?quality=60&width=430&crop=2:1',
|
249
|
+
alt: 'Alt'
|
250
|
+
},
|
251
|
+
header: {
|
252
|
+
title: 'TEM and AFM imaging of defects and dislocations in crystalline materials',
|
253
|
+
date: {
|
254
|
+
date: '16th Oct',
|
255
|
+
formatted: true
|
256
|
+
}
|
257
|
+
},
|
258
|
+
link: '#',
|
259
|
+
tag: 'Recorded webinar'
|
260
|
+
}) }}
|
261
|
+
{{ card({
|
262
|
+
theme: {
|
263
|
+
layout: 'single',
|
264
|
+
size: 'small',
|
265
|
+
name: 'alt'
|
266
|
+
},
|
267
|
+
image: {
|
268
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/1f8965d6-95ab-4c1a-9010-b00c006677f3/shutterstock_2239656403_Heat_map_Original%20file.jpg?quality=60&width=430&crop=2:1',
|
269
|
+
alt: 'Alt'
|
270
|
+
},
|
271
|
+
header: {
|
272
|
+
title: 'Using neutron diffraction and scattering to investigate the hidden world of magnetic and thermal properties',
|
273
|
+
date: {
|
274
|
+
date: '4th Oct',
|
275
|
+
formatted: true
|
276
|
+
}
|
277
|
+
},
|
278
|
+
link: '#',
|
279
|
+
tag: 'Recorded webinar'
|
280
|
+
}) }}
|
281
|
+
{{ card({
|
282
|
+
theme: {
|
283
|
+
layout: 'single',
|
284
|
+
size: 'small',
|
285
|
+
name: 'alt'
|
286
|
+
},
|
287
|
+
image: {
|
288
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/e06204cc-b48c-4e24-83a7-ad9e00d2d740/636220037796718046EN_Original%20file.jpg?quality=60&width=430&crop=2:1',
|
289
|
+
alt: 'Alt'
|
290
|
+
},
|
291
|
+
header: {
|
292
|
+
title: 'UV-vis and IR spectroscopy: how to determine the optical and photoelectric properties of materials',
|
293
|
+
date: {
|
294
|
+
date: '10th Sep',
|
295
|
+
formatted: true
|
296
|
+
}
|
297
|
+
},
|
298
|
+
link: '#',
|
299
|
+
tag: 'Recorded webinar'
|
300
|
+
}) }}
|
301
|
+
</div>
|
302
|
+
</div>
|
303
|
+
</div>
|
304
|
+
|
305
|
+
{# Explore #}
|
306
|
+
<div class="c-slat--white">
|
307
|
+
<div id="explore" class="u-wrap u-flow">
|
308
|
+
<h2 class="c-h c-h--step-3">Explore topics from over 1,000 expert sessions</h2>
|
309
|
+
<div class="o-grid o-grid--of-four">
|
310
|
+
{{ productSignpost ({
|
311
|
+
title: 'Laser diffraction',
|
312
|
+
description: '<p class="u-link">Technology</p>',
|
313
|
+
link: '/prototype',
|
314
|
+
classes: 'c-product-signpost--bordered u-pad-m'
|
315
|
+
}) }}
|
316
|
+
{{ productSignpost ({
|
317
|
+
title: 'X-ray fluorescence (XRF)',
|
318
|
+
description: '<p class="u-link">Technology</p>',
|
319
|
+
link: '/prototype',
|
320
|
+
classes: 'c-product-signpost--bordered u-pad-m'
|
321
|
+
}) }}
|
322
|
+
{{ productSignpost ({
|
323
|
+
title: 'Particle size',
|
324
|
+
description: '<p class="u-link">Measurement type</p>',
|
325
|
+
link: '/prototype',
|
326
|
+
classes: 'c-product-signpost--bordered u-pad-m'
|
327
|
+
}) }}
|
328
|
+
{{ productSignpost ({
|
329
|
+
title: 'Pharmaceuticals',
|
330
|
+
description: '<p class="u-link">Industry</p>',
|
331
|
+
link: '/prototype',
|
332
|
+
classes: 'c-product-signpost--bordered u-pad-m'
|
333
|
+
}) }}
|
334
|
+
{{ productSignpost ({
|
335
|
+
title: 'Building materials',
|
336
|
+
description: '<p class="u-link">Industry</p>',
|
337
|
+
link: '/prototype',
|
338
|
+
classes: 'c-product-signpost--bordered u-pad-m'
|
339
|
+
}) }}
|
340
|
+
{{ productSignpost ({
|
341
|
+
title: 'Liquid chromatography',
|
342
|
+
description: '<p class="u-link">Technology</p>',
|
343
|
+
link: '/prototype',
|
344
|
+
classes: 'c-product-signpost--bordered u-pad-m'
|
345
|
+
}) }}
|
346
|
+
{{ productSignpost ({
|
347
|
+
title: 'Crystal structure determination',
|
348
|
+
description: '<p class="u-link">Measurement type</p>',
|
349
|
+
link: '/prototype',
|
350
|
+
classes: 'c-product-signpost--bordered u-pad-m'
|
351
|
+
}) }}
|
352
|
+
{{ productSignpost ({
|
353
|
+
title: 'Zeta potential',
|
354
|
+
description: '<p class="u-link">Measurement type</p>',
|
355
|
+
link: '/prototype',
|
356
|
+
classes: 'c-product-signpost--bordered u-pad-m'
|
357
|
+
}) }}
|
358
|
+
</div>
|
359
|
+
</div>
|
360
|
+
</div>
|
361
|
+
|
362
|
+
{# Series #}
|
363
|
+
<div class="c-slat u-bg-blue-step-3 c-slat--padded c-slat--concentric">
|
364
|
+
<div id="featured" class="u-wrap u-flow">
|
365
|
+
<div class="o-grid o-grid--layout o-grid--8/4-switch">
|
366
|
+
<div class="u-flow">
|
367
|
+
<p class="c-h c-h--upper">Featured</p>
|
368
|
+
<h2 class="c-h c-h--step-5">XRF Elemental Analysis Masterclass</h2>
|
369
|
+
<p>Learn everything there is to know about elemental analysis using X-ray fluorescence (XRF) in this series of webinars.</p>
|
370
|
+
{{ twi({ classes: 'u-link', label: "View the complete series", icon: 'arrow-right', align: 'left', link: "#" }) }}
|
371
|
+
</div>
|
372
|
+
<div class="o-grid o-grid--of-three">
|
373
|
+
{{ card({
|
374
|
+
theme: {
|
375
|
+
border: false,
|
376
|
+
layout: 'single',
|
377
|
+
name: 'event-series',
|
378
|
+
inlineSpecs: false,
|
379
|
+
corner: false
|
380
|
+
},
|
381
|
+
image: {
|
382
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/97c76c3b-e491-43e2-875b-adea00bec47d/shutterstock_733895350_Square.jpg?quality=60',
|
383
|
+
alt: 'Product image alt'
|
384
|
+
},
|
385
|
+
header: {
|
386
|
+
title: 'Part 1 - The theory of X-Ray Fluorescence (XRF)',
|
387
|
+
date: {
|
388
|
+
date: 'Oct 2019',
|
389
|
+
formatted: true
|
390
|
+
}
|
391
|
+
},
|
392
|
+
footer: {
|
393
|
+
cta: {
|
394
|
+
link: '#',
|
395
|
+
label: 'Watch now',
|
396
|
+
icon: 'play'
|
397
|
+
}
|
398
|
+
},
|
399
|
+
link: '#'
|
400
|
+
}) }}
|
401
|
+
{{ card({
|
402
|
+
theme: {
|
403
|
+
border: false,
|
404
|
+
layout: 'single',
|
405
|
+
name: 'event-series',
|
406
|
+
inlineSpecs: false,
|
407
|
+
corner: false
|
408
|
+
},
|
409
|
+
image: {
|
410
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/3a8462a5-a4f8-48ea-a18a-adea00bebbc8/shutterstock_733895305_Square.jpg?quality=60',
|
411
|
+
alt: 'Product image alt'
|
412
|
+
},
|
413
|
+
header: {
|
414
|
+
title: 'Part 2 - Wavelength & energy dispersive XRF explained',
|
415
|
+
date: {
|
416
|
+
date: 'Oct 2019',
|
417
|
+
formatted: true
|
418
|
+
}
|
419
|
+
},
|
420
|
+
footer: {
|
421
|
+
cta: {
|
422
|
+
link: '#',
|
423
|
+
label: 'Watch now',
|
424
|
+
icon: 'play'
|
425
|
+
}
|
426
|
+
},
|
427
|
+
link: '#'
|
428
|
+
}) }}
|
429
|
+
{{ card({
|
430
|
+
theme: {
|
431
|
+
border: false,
|
432
|
+
layout: 'single',
|
433
|
+
name: 'event-series',
|
434
|
+
inlineSpecs: false,
|
435
|
+
corner: false
|
436
|
+
},
|
437
|
+
image: {
|
438
|
+
src: 'https://p3.aprimocdn.net/malvernpanalytical/78a2e0d5-123f-48df-a54f-adea00bec1ad/shutterstock_733895335_Square.jpg?quality=60',
|
439
|
+
alt: 'Product image alt'
|
440
|
+
},
|
441
|
+
header: {
|
442
|
+
title: 'Part 3 - The basics of sample preparation for XRF',
|
443
|
+
date: {
|
444
|
+
date: 'Nov 2019',
|
445
|
+
formatted: true
|
446
|
+
}
|
447
|
+
},
|
448
|
+
footer: {
|
449
|
+
cta: {
|
450
|
+
link: '#',
|
451
|
+
label: 'Watch now',
|
452
|
+
icon: 'play'
|
453
|
+
}
|
454
|
+
},
|
455
|
+
link: '#'
|
456
|
+
}) }}
|
457
|
+
</div>
|
458
|
+
</div>
|
459
|
+
</div>
|
460
|
+
</div>
|
461
|
+
|
462
|
+
</div>
|
463
|
+
{% endblock %}
|