mp-design-system 1.2.28 → 1.2.34

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