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.
- package/dist/build/js/app.js +1 -1
- package/dist/build/js/app.js.map +1 -1
- 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 +1 -1
- package/src/_includes/components/button/button.scss +1 -1
- package/src/_includes/components/card/card.njk +1 -1
- package/src/_includes/components/card/existing-customer-card.config.js +2 -2
- package/src/_includes/components/card/existing-customer-card.njk +7 -3
- 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 +10 -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 +9 -5
- package/src/_includes/components/card/search-result-card.scss +5 -1
- 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/eyebrow/eyebrow.scss +1 -1
- package/src/_includes/components/hero/hero.njk +18 -1
- package/src/_includes/components/hero/hero.scss +29 -1
- package/src/_includes/components/input/input.njk +1 -1
- package/src/_includes/components/internal-nav/internal-nav.scss +5 -4
- package/src/_includes/components/scroll-spy/scroll-spy.scss +1 -1
- package/src/_includes/components/signpost/signpost.config.js +21 -1
- package/src/_includes/components/signpost/signpost.njk +13 -3
- package/src/_includes/components/signpost/signpost.scss +39 -0
- package/src/_includes/components/tabs/tabs.scss +4 -0
- package/src/_includes/components/twi/twi.scss +5 -0
- package/src/_includes/navigation/corporate.njk +0 -3
- package/src/assets/js/imports/internal-nav.js +19 -1
- package/src/assets/js/imports/scroll-spy.js +10 -2
- package/src/assets/scss/components/index.scss +3 -1
- package/src/assets/scss/components/product-finder.scss +1 -1
- package/src/assets/scss/objects/grid.scss +12 -1
- package/src/assets/scss/tools/cutoff.scss +5 -1
- package/src/assets/scss/utilities/space.scss +6 -0
- package/src/brand/resources.njk +28 -23
- package/src/index.njk +1 -1
- package/src/prototype/events-hub.njk +524 -0
- package/src/prototype/index.njk +264 -180
- package/src/prototype/range.njk +5 -5
- package/src/prototype/sections.njk +6 -1
- package/src/static/pdf/Power of one Content guidance.pdf +0 -0
- package/src/static/svg/icon-globe-alt--white.svg +4 -0
- package/src/static/svg/icon-globe-alt.svg +4 -0
- package/src/static/svg/icon-live-webinars--white.svg +6 -0
- package/src/static/svg/icon-live-webinars.svg +6 -0
- package/src/static/svg/icon-recorded-webinars--white.svg +4 -0
- package/src/static/svg/icon-recorded-webinars.svg +4 -0
- package/src/static/svg/icon-user-training--white.svg +5 -0
- package/src/static/svg/icon-user-training.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/prototype/index.njk
CHANGED
@@ -8,6 +8,9 @@ tags: prototype
|
|
8
8
|
{% from "components/signpost/macro.njk" import signpost %}
|
9
9
|
{% from "components/button/macro.njk" import button %}
|
10
10
|
{% from "components/card/macro.njk" import industryCard %}
|
11
|
+
{% from "components/card/macro.njk" import productCard %}
|
12
|
+
{% from "components/card/macro.njk" import technologyCard %}
|
13
|
+
{% from "components/card/macro.njk" import measurementTypeCard %}
|
11
14
|
{% from "components/campaign/macro.njk" import campaign %}
|
12
15
|
{% from "components/card/macro.njk" import card %}
|
13
16
|
{% from "components/option-list/macro.njk" import optionList %}
|
@@ -48,253 +51,334 @@ tags: prototype
|
|
48
51
|
alt: ''
|
49
52
|
}
|
50
53
|
}) }}
|
54
|
+
</section>
|
51
55
|
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
<
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
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
|
-
|
56
|
+
<section class="mp c-slat c-slat--padded c-slat--dots u-bg-blue-step-3">
|
57
|
+
<div class="u-wrap u-flow--s-l">
|
58
|
+
<div class="u-wrap--content o-prose u-flow--prose u-flow--l">
|
59
|
+
<h2 class="c-h c-h--step-3">Groundbreaking solutions for every industry</h2>
|
60
|
+
{{ prose({
|
61
|
+
content: ' <p>Find out more about how our scientific instruments help users better understand and shape everything from proteins, metals and polymers to the soil and air around us.</p>'
|
62
|
+
}) }}
|
63
|
+
</div>
|
64
|
+
<div class="o-grid o-grid--of-four o-grid--swipeable">
|
65
|
+
{{ industryCard({
|
66
|
+
title: 'Mining and minerals',
|
67
|
+
link: '#',
|
68
|
+
description: 'Explore the world of Iron, Base metals, Bauxite, Clay, Coal, Industrial Minerals and Precious Metals in 3D.',
|
69
|
+
image: {
|
70
|
+
src: '/static/img/sector-1.jpg',
|
71
|
+
alt: ''
|
72
|
+
},
|
73
|
+
footer: {
|
74
|
+
button: {
|
75
|
+
label: 'View industry'
|
76
|
+
}
|
77
|
+
}
|
78
|
+
}) }}
|
79
|
+
{{ industryCard({
|
80
|
+
title: 'Pharmaceuticals',
|
81
|
+
link: '#',
|
82
|
+
description: 'We understand the role our technologies play in providing the physicochemical insight to speed product development.',
|
83
|
+
image: {
|
84
|
+
src: '/static/img/sector-2.jpg',
|
85
|
+
alt: ''
|
86
|
+
},
|
87
|
+
footer: {
|
88
|
+
button: {
|
89
|
+
label: 'View industry'
|
90
|
+
}
|
91
|
+
}
|
92
|
+
}) }}
|
93
|
+
{{ industryCard({
|
94
|
+
title: 'Metal analysis',
|
95
|
+
link: '#',
|
96
|
+
description: 'We help you to meet demand, become more sustainable, and to make processes easier, cleaner and safer.',
|
97
|
+
image: {
|
98
|
+
src: '/static/img/sector-3.jpg',
|
99
|
+
alt: ''
|
100
|
+
},
|
101
|
+
footer: {
|
102
|
+
button: {
|
103
|
+
label: 'View industry'
|
104
|
+
}
|
105
|
+
}
|
106
|
+
}) }}
|
107
|
+
{{ industryCard({
|
108
|
+
title: 'Battery and energy',
|
109
|
+
link: '#',
|
110
|
+
description: 'Battery and renewable energy storage: empower your research and production with the best analytical solutions.',
|
111
|
+
image: {
|
112
|
+
src: '/static/img/sector-4.jpg',
|
113
|
+
alt: ''
|
114
|
+
},
|
115
|
+
footer: {
|
116
|
+
button: {
|
117
|
+
label: 'View industry'
|
118
|
+
}
|
119
|
+
}
|
120
|
+
}) }}
|
121
|
+
</div>
|
122
|
+
<div class="u-split u-margin-top-l">
|
123
|
+
<h3 class="c-h c-h--step-1">Explore our full range of industry applications</h3>
|
124
|
+
{{ button({
|
125
|
+
link: '#',
|
126
|
+
label: 'View all industries',
|
127
|
+
classes: 'c-button--inline'
|
128
|
+
}) }}
|
129
|
+
</div>
|
130
|
+
</div>
|
131
|
+
</section>
|
112
132
|
|
133
|
+
<section class="mp c-slat c-slat--padded">
|
134
|
+
<div class="u-wrap">
|
135
|
+
<div class="u-wrap--content o-prose u-flow--prose u-flow--l">
|
136
|
+
<h2 class="c-h c-h--step-3">Browse our range of award winning technologies</h2>
|
137
|
+
</div>
|
138
|
+
<div class="u-wrap">
|
113
139
|
<div class="mp c-tabs c-tabs--anchor">
|
114
|
-
<nav class="c-tabs__controls
|
140
|
+
<nav class="c-tabs__controls">
|
115
141
|
<ul class="c-tabs__controls-list">
|
116
|
-
<li><a class="c-tabs__control " href="#tab-
|
117
|
-
<li><a class="c-tabs__control" href="#tab-
|
118
|
-
<li><a class="c-tabs__control
|
142
|
+
<li><a class="c-tabs__control c-tabs__control--active" href="#tab-product-1" role="tab">Product ranges</a></li>
|
143
|
+
<li><a class="c-tabs__control" href="#tab-product-2" role="tab">Technologies</a></li>
|
144
|
+
<li><a class="c-tabs__control" href="#tab-product-3" role="tab">Measurement types</a></li>
|
119
145
|
</ul>
|
120
146
|
</nav>
|
121
|
-
|
122
147
|
<div class="c-tabs__content">
|
123
|
-
<div id="tab-
|
148
|
+
<div id="tab-product-1" class="c-tab c-tab--active">
|
124
149
|
<div class="o-grid o-grid--of-four o-grid--swipeable">
|
125
|
-
{{
|
126
|
-
title: '
|
127
|
-
|
150
|
+
{{ productCard({
|
151
|
+
title: 'Zetasizer Advance range',
|
152
|
+
description: 'Zetasizer Advance is the successor to the highly successful and market-leading Zetasizer Nano.',
|
128
153
|
image: {
|
129
|
-
src: '/static/img/
|
130
|
-
alt: ''
|
154
|
+
src: '/static/img/products-1.jpg',
|
155
|
+
alt: 'Zetasizer Advance range'
|
156
|
+
},
|
157
|
+
footer: {
|
158
|
+
buttons: [
|
159
|
+
{
|
160
|
+
link: '#',
|
161
|
+
label: 'View range',
|
162
|
+
classes: 'c-button--small'
|
163
|
+
},
|
164
|
+
{
|
165
|
+
link: '#',
|
166
|
+
label: 'Request a quote',
|
167
|
+
classes: 'c-button--small'
|
168
|
+
}
|
169
|
+
]
|
131
170
|
}
|
132
171
|
}) }}
|
133
|
-
{{
|
134
|
-
title: '
|
135
|
-
|
172
|
+
{{ productCard({
|
173
|
+
title: 'Mastersizer range',
|
174
|
+
description: 'From assessing product uniformity and solubility, through to optimising packing density.',
|
136
175
|
image: {
|
137
|
-
src: '/static/img/
|
138
|
-
alt: ''
|
176
|
+
src: '/static/img/products-2.jpg',
|
177
|
+
alt: 'Zetasizer Advance range'
|
178
|
+
},
|
179
|
+
footer: {
|
180
|
+
buttons: [
|
181
|
+
{
|
182
|
+
link: '#',
|
183
|
+
label: 'View range',
|
184
|
+
classes: 'c-button--small'
|
185
|
+
},
|
186
|
+
{
|
187
|
+
link: '#',
|
188
|
+
label: 'Request a quote',
|
189
|
+
classes: 'c-button--small'
|
190
|
+
}
|
191
|
+
]
|
139
192
|
}
|
140
193
|
}) }}
|
141
|
-
{{
|
142
|
-
title: '
|
143
|
-
|
194
|
+
{{ productCard({
|
195
|
+
title: 'NanoSight range',
|
196
|
+
description: 'The NanoSight range utilizes NTA to characterize nanoparticles from 10nm - 1000nm* in solution.',
|
144
197
|
image: {
|
145
|
-
src: '/static/img/
|
146
|
-
alt: ''
|
198
|
+
src: '/static/img/products-3.jpg',
|
199
|
+
alt: 'Zetasizer Advance range'
|
200
|
+
},
|
201
|
+
footer: {
|
202
|
+
buttons: [
|
203
|
+
{
|
204
|
+
link: '#',
|
205
|
+
label: 'View range',
|
206
|
+
classes: 'c-button--small'
|
207
|
+
},
|
208
|
+
{
|
209
|
+
link: '#',
|
210
|
+
label: 'Request a quote',
|
211
|
+
classes: 'c-button--small'
|
212
|
+
}
|
213
|
+
]
|
147
214
|
}
|
148
215
|
}) }}
|
149
|
-
{{
|
150
|
-
title: '
|
151
|
-
|
216
|
+
{{ productCard({
|
217
|
+
title: 'Epsilon range',
|
218
|
+
description: 'The Epsilon 1 is powered by the latest advances in excitation and detection technology.',
|
152
219
|
image: {
|
153
|
-
src: '/static/img/
|
154
|
-
alt: ''
|
155
|
-
}
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
220
|
+
src: '/static/img/products-4.jpg',
|
221
|
+
alt: 'Zetasizer Advance range'
|
222
|
+
},
|
223
|
+
footer: {
|
224
|
+
buttons: [
|
225
|
+
{
|
226
|
+
link: '#',
|
227
|
+
label: 'View range',
|
228
|
+
classes: 'c-button--small'
|
229
|
+
},
|
230
|
+
{
|
231
|
+
link: '#',
|
232
|
+
label: 'Request a quote',
|
233
|
+
classes: 'c-button--small'
|
234
|
+
}
|
235
|
+
]
|
163
236
|
}
|
164
237
|
}) }}
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
}
|
238
|
+
</div>
|
239
|
+
<div class="u-bg-blue-step-3 u-pad-s-m u-split u-margin-top-l">
|
240
|
+
<h3 class="c-h c-h--step-1">Explore our full product range</h3>
|
241
|
+
{{ button({
|
242
|
+
link: '#',
|
243
|
+
label: 'View all ranges'
|
172
244
|
}) }}
|
173
245
|
</div>
|
174
246
|
</div>
|
175
|
-
<div id="tab-
|
247
|
+
<div id="tab-product-2" class="c-tab">
|
176
248
|
<div class="o-grid o-grid--of-four o-grid--swipeable">
|
177
|
-
{{
|
178
|
-
title: '
|
179
|
-
link: '',
|
249
|
+
{{ technologyCard({
|
250
|
+
title: 'X-ray Diffraction (XRD)',
|
251
|
+
link: '#',
|
252
|
+
description: 'XRD is the only laboratory technique that non-destructively and accurately obtains information such as chemical composition.',
|
180
253
|
image: {
|
181
|
-
src: '/static/img/sector-
|
254
|
+
src: '/static/img/sector-5.jpg',
|
182
255
|
alt: ''
|
256
|
+
},
|
257
|
+
footer: {
|
258
|
+
button: {
|
259
|
+
label: 'View technology'
|
260
|
+
}
|
183
261
|
}
|
184
262
|
}) }}
|
185
|
-
{{
|
186
|
-
title: '
|
187
|
-
link: '',
|
263
|
+
{{ technologyCard({
|
264
|
+
title: 'Dynamic Light Scattering (DLS)',
|
265
|
+
link: '#',
|
266
|
+
description: 'Dynamic Light Scattering for size characterization of proteins, nanoparticles, polymers and colloidal dispersions.',
|
188
267
|
image: {
|
189
268
|
src: '/static/img/sector-4.jpg',
|
190
269
|
alt: ''
|
270
|
+
},
|
271
|
+
footer: {
|
272
|
+
button: {
|
273
|
+
label: 'View technology'
|
274
|
+
}
|
191
275
|
}
|
192
276
|
}) }}
|
193
|
-
{{
|
194
|
-
title: '
|
195
|
-
link: '',
|
196
|
-
|
197
|
-
src: '/static/img/sector-5.jpg',
|
198
|
-
alt: ''
|
199
|
-
}
|
200
|
-
}) }}
|
201
|
-
{{ industryCard({
|
202
|
-
title: 'Contract research services',
|
203
|
-
link: '',
|
277
|
+
{{ technologyCard({
|
278
|
+
title: 'X-ray fluorescence (XRF)',
|
279
|
+
link: '#',
|
280
|
+
description: 'X-ray fluorescence is an analytical technique that can be used to determine the chemical composition of a wide variety of sample types.',
|
204
281
|
image: {
|
205
|
-
src: '/static/img/sector-
|
282
|
+
src: '/static/img/sector-3.jpg',
|
206
283
|
alt: ''
|
284
|
+
},
|
285
|
+
footer: {
|
286
|
+
button: {
|
287
|
+
label: 'View technology'
|
288
|
+
}
|
207
289
|
}
|
208
290
|
}) }}
|
209
|
-
{{
|
210
|
-
title: '
|
211
|
-
link: '',
|
291
|
+
{{ technologyCard({
|
292
|
+
title: 'Nanoparticle Tracking Analysis',
|
293
|
+
link: '#',
|
294
|
+
description: 'Utilizes the properties of both light scattering and Brownian motion in order to obtain the nanoparticle size distribution of samples in liquid suspension.',
|
212
295
|
image: {
|
213
296
|
src: '/static/img/sector-2.jpg',
|
214
297
|
alt: ''
|
298
|
+
},
|
299
|
+
footer: {
|
300
|
+
button: {
|
301
|
+
label: 'View technology'
|
302
|
+
}
|
215
303
|
}
|
216
304
|
}) }}
|
217
305
|
</div>
|
306
|
+
<div class="u-bg-blue-step-3 u-pad-s-m u-split u-margin-top-l">
|
307
|
+
<h3 class="c-h c-h--step-1">Explore our full range of technologies</h3>
|
308
|
+
{{ button({
|
309
|
+
link: '#',
|
310
|
+
label: 'View all technologies'
|
311
|
+
}) }}
|
312
|
+
</div>
|
218
313
|
</div>
|
219
|
-
<div id="tab-
|
314
|
+
<div id="tab-product-3" class="c-tab">
|
220
315
|
<div class="o-grid o-grid--of-four o-grid--swipeable">
|
221
|
-
{{
|
222
|
-
title: '
|
223
|
-
link: '',
|
224
|
-
|
225
|
-
src: '/static/img/sector-5.jpg',
|
226
|
-
alt: ''
|
227
|
-
}
|
228
|
-
}) }}
|
229
|
-
{{ industryCard({
|
230
|
-
title: 'Aerospace and automotive',
|
231
|
-
link: '',
|
232
|
-
image: {
|
233
|
-
src: '/static/img/sector-1.jpg',
|
234
|
-
alt: ''
|
235
|
-
}
|
236
|
-
}) }}
|
237
|
-
{{ industryCard({
|
238
|
-
title: 'Battery and energy',
|
239
|
-
link: '',
|
240
|
-
image: {
|
241
|
-
src: '/static/img/sector-2.jpg',
|
242
|
-
alt: ''
|
243
|
-
}
|
244
|
-
}) }}
|
245
|
-
{{ industryCard({
|
246
|
-
title: 'Electronics and semiconductors',
|
247
|
-
link: '',
|
316
|
+
{{ measurementTypeCard({
|
317
|
+
title: 'Particle size',
|
318
|
+
link: '#',
|
319
|
+
description: 'Measurement of particle size distributions is routinely carried out across a wide range of industries.',
|
248
320
|
image: {
|
249
321
|
src: '/static/img/sector-3.jpg',
|
250
322
|
alt: ''
|
323
|
+
},
|
324
|
+
footer: {
|
325
|
+
button: {
|
326
|
+
label: 'View measurement type'
|
327
|
+
}
|
251
328
|
}
|
252
329
|
}) }}
|
253
|
-
{{
|
254
|
-
title: '
|
255
|
-
link: '',
|
256
|
-
|
257
|
-
src: '/static/img/sector-4.jpg',
|
258
|
-
alt: ''
|
259
|
-
}
|
260
|
-
}) }}
|
261
|
-
{{ industryCard({
|
262
|
-
title: 'Forensic analysis',
|
263
|
-
link: '',
|
330
|
+
{{ measurementTypeCard({
|
331
|
+
title: 'Zeta potential',
|
332
|
+
link: '#',
|
333
|
+
description: 'Zeta potential measurements to improve formulation stability and shelf life and reduce formulation time and cost.',
|
264
334
|
image: {
|
265
|
-
src: '/static/img/sector-
|
335
|
+
src: '/static/img/sector-2.jpg',
|
266
336
|
alt: ''
|
337
|
+
},
|
338
|
+
footer: {
|
339
|
+
button: {
|
340
|
+
label: 'View measurement type'
|
341
|
+
}
|
267
342
|
}
|
268
343
|
}) }}
|
269
|
-
{{
|
270
|
-
title: '
|
271
|
-
link: '',
|
344
|
+
{{ measurementTypeCard({
|
345
|
+
title: 'Binding affinity',
|
346
|
+
link: '#',
|
347
|
+
description: 'Understanding binding affinity is key to appreciation of the intermolecular interactions driving biological processes.',
|
272
348
|
image: {
|
273
349
|
src: '/static/img/sector-1.jpg',
|
274
350
|
alt: ''
|
351
|
+
},
|
352
|
+
footer: {
|
353
|
+
button: {
|
354
|
+
label: 'View measurement type'
|
355
|
+
}
|
275
356
|
}
|
276
357
|
}) }}
|
277
|
-
{{
|
278
|
-
title: '
|
279
|
-
link: '',
|
358
|
+
{{ measurementTypeCard({
|
359
|
+
title: 'Moisture content',
|
360
|
+
link: '#',
|
361
|
+
description: 'The determination of moisture is often a critical component in manufacturing processes and quality assurance.',
|
280
362
|
image: {
|
281
|
-
src: '/static/img/sector-
|
363
|
+
src: '/static/img/sector-5.jpg',
|
282
364
|
alt: ''
|
365
|
+
},
|
366
|
+
footer: {
|
367
|
+
button: {
|
368
|
+
label: 'View measurement type'
|
369
|
+
}
|
283
370
|
}
|
284
371
|
}) }}
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
}
|
372
|
+
</div>
|
373
|
+
<div class="u-bg-blue-step-3 u-pad-s-m u-split u-margin-top-l">
|
374
|
+
<h3 class="c-h c-h--step-1">Explore our full range of measurements</h3>
|
375
|
+
{{ button({
|
376
|
+
link: '#',
|
377
|
+
label: 'View all measurement types'
|
292
378
|
}) }}
|
293
379
|
</div>
|
294
380
|
</div>
|
295
|
-
</div>
|
296
381
|
</div>
|
297
|
-
|
298
382
|
</div>
|
299
383
|
</div>
|
300
384
|
</section>
|
package/src/prototype/range.njk
CHANGED
@@ -9,7 +9,7 @@ tagTitle: Range
|
|
9
9
|
{% from "components/usp/macro.njk" import usp %}
|
10
10
|
{% from "components/breadcrumb/macro.njk" import breadcrumb %}
|
11
11
|
{% from "components/button/macro.njk" import button %}
|
12
|
-
{% from "components/card/macro.njk" import
|
12
|
+
{% from "components/card/macro.njk" import productCard %}
|
13
13
|
{% from "components/comparison-table/macro.njk" import comparisonTable %}
|
14
14
|
{% from "components/hero/macro.njk" import hero %}
|
15
15
|
|
@@ -95,7 +95,7 @@ tagTitle: Range
|
|
95
95
|
|
96
96
|
<div id="products" class="u-pad-y-xl" style="scroll-margin-top:70px">
|
97
97
|
<div class="o-grid o-grid--of-three u-wrap">
|
98
|
-
{{
|
98
|
+
{{ productCard({
|
99
99
|
title: 'Mastersizer 3000',
|
100
100
|
description: 'Delivering the data you need for outcomes you can trust',
|
101
101
|
image: {
|
@@ -132,8 +132,8 @@ tagTitle: Range
|
|
132
132
|
}
|
133
133
|
]
|
134
134
|
}
|
135
|
-
})}}
|
136
|
-
{{
|
135
|
+
}) }}
|
136
|
+
{{ productCard({
|
137
137
|
title: 'Mastersizer 3000E',
|
138
138
|
description: 'Entry level particle size analyzer',
|
139
139
|
image: {
|
@@ -170,7 +170,7 @@ tagTitle: Range
|
|
170
170
|
}
|
171
171
|
]
|
172
172
|
}
|
173
|
-
})}}
|
173
|
+
}) }}
|
174
174
|
<div class="u-flow u-margin-top-auto">
|
175
175
|
<h4 class="c-h c-h--step-4">Interested in a demonstration?</h4>
|
176
176
|
<div class="o-prose u-flow--prose">
|
@@ -75,14 +75,16 @@ Typical materials involved in advanced thin film devices are semiconductors, met
|
|
75
75
|
<p class="c-h c-h--upper">Explore electronics and semiconductors</p>
|
76
76
|
<div class="o-grid o-grid--of-three-early">
|
77
77
|
{{ industryCard({
|
78
|
+
classes: 'c-industry-card--heading',
|
78
79
|
title: 'CMP slurry',
|
79
|
-
link: '',
|
80
|
+
link: '#',
|
80
81
|
image: {
|
81
82
|
src: 'https://www.malvernpanalytical.com/resource/img/placeholder.png?quality=60',
|
82
83
|
alt: ''
|
83
84
|
}
|
84
85
|
}) }}
|
85
86
|
{{ industryCard({
|
87
|
+
classes: 'c-industry-card--heading',
|
86
88
|
title: 'Compound semiconductors',
|
87
89
|
link: '',
|
88
90
|
image: {
|
@@ -91,6 +93,7 @@ Typical materials involved in advanced thin film devices are semiconductors, met
|
|
91
93
|
}
|
92
94
|
}) }}
|
93
95
|
{{ industryCard({
|
96
|
+
classes: 'c-industry-card--heading',
|
94
97
|
title: 'Electronic displays',
|
95
98
|
link: '',
|
96
99
|
image: {
|
@@ -99,6 +102,7 @@ Typical materials involved in advanced thin film devices are semiconductors, met
|
|
99
102
|
}
|
100
103
|
}) }}
|
101
104
|
{{ industryCard({
|
105
|
+
classes: 'c-industry-card--heading',
|
102
106
|
title: 'Silicon semiconductors',
|
103
107
|
link: '',
|
104
108
|
image: {
|
@@ -107,6 +111,7 @@ Typical materials involved in advanced thin film devices are semiconductors, met
|
|
107
111
|
}
|
108
112
|
}) }}
|
109
113
|
{{ industryCard({
|
114
|
+
classes: 'c-industry-card--heading',
|
110
115
|
title: 'Solder materials',
|
111
116
|
link: '',
|
112
117
|
image: {
|
Binary file
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="136" height="135" viewBox="0 0 136 135" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M105.184 91.433C87.3087 109.308 58.3278 109.308 40.453 91.433C22.5782 73.5582 22.5782 44.5774 40.453 26.7025M65.5912 112.066H80.0453M72.8182 112.066V104.839" stroke="#333333" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
3
|
+
<path d="M72.8177 95.2043C92.7747 95.2043 108.953 79.026 108.953 59.069C108.953 39.112 92.7747 22.9337 72.8177 22.9337M72.8177 95.2043C52.8607 95.2043 36.6824 79.026 36.6824 59.069C36.6824 39.112 52.8607 22.9337 72.8177 22.9337M72.8177 95.2043C84.7919 95.2043 94.4989 79.026 94.4989 59.069C94.4989 39.112 84.7919 22.9337 72.8177 22.9337M72.8177 95.2043C60.8435 95.2043 51.1365 79.026 51.1365 59.069C51.1365 39.112 60.8435 22.9337 72.8177 22.9337M72.8177 95.2043V22.9337M43.9094 78.3412L101.726 78.3412M43.9094 39.7969L101.726 39.7969" stroke="#ffffff" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="136" height="135" viewBox="0 0 136 135" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M105.184 91.433C87.3087 109.308 58.3278 109.308 40.453 91.433C22.5782 73.5582 22.5782 44.5774 40.453 26.7025M65.5912 112.066H80.0453M72.8182 112.066V104.839" stroke="#333333" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
3
|
+
<path d="M72.8177 95.2043C92.7747 95.2043 108.953 79.026 108.953 59.069C108.953 39.112 92.7747 22.9337 72.8177 22.9337M72.8177 95.2043C52.8607 95.2043 36.6824 79.026 36.6824 59.069C36.6824 39.112 52.8607 22.9337 72.8177 22.9337M72.8177 95.2043C84.7919 95.2043 94.4989 79.026 94.4989 59.069C94.4989 39.112 84.7919 22.9337 72.8177 22.9337M72.8177 95.2043C60.8435 95.2043 51.1365 79.026 51.1365 59.069C51.1365 39.112 60.8435 22.9337 72.8177 22.9337M72.8177 95.2043V22.9337M43.9094 78.3412L101.726 78.3412M43.9094 39.7969L101.726 39.7969" stroke="#00a2c2" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<svg width="136" height="135" viewBox="0 0 136 135" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M51.4115 48.6266V51.6598C51.4115 57.9736 55.5794 63.1657 60.5871 63.1657C65.5947 63.1657 69.7626 57.9736 69.7626 51.6598V48.6266C69.7626 46.3077 67.3068 40.8458 60.5871 40.8458C53.8674 40.8458 51.4115 45.6839 51.4115 48.6266Z" stroke="#ffffff" fill="#ffffff" stroke-width="5" stroke-linejoin="round"/>
|
3
|
+
<path d="M48.3775 73.5705C51.0626 72.0467 54.7914 71.0796 57.661 70.5797C59.5984 70.2422 61.5762 70.2422 63.5136 70.5797C66.3869 71.0803 70.1216 72.0492 72.8075 73.5763C73.4043 73.9157 73.8556 74.4516 74.1151 75.0873C74.8557 76.9018 76.3168 81.0938 76.3168 85.9265V93.9354H44.8578V85.9265C44.8578 81.1517 46.318 76.933 47.0589 75.0999C47.319 74.4563 47.7738 73.9131 48.3775 73.5705Z" stroke="#ffffff" fill="#ffffff" stroke-width="5"/>
|
4
|
+
<path d="M114.493 39.0267C114.493 33.5039 110.016 29.0267 104.493 29.0267H24.6372C19.1143 29.0267 14.6372 33.5039 14.6372 39.0267V83.9332C14.6372 89.4561 19.1143 93.9332 24.6372 93.9332H73.4237C76.042 93.9332 78.5559 94.9601 80.4253 96.7933L91.7137 107.863C93.6119 109.725 96.8142 108.38 96.8142 105.721V98.9332C96.8142 96.1718 99.0528 93.9332 101.814 93.9332H104.493C110.016 93.9332 114.493 89.456 114.493 83.9332V39.0267Z" stroke="#333333" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.416 56.0295C113.775 56.0295 121.363 48.442 121.363 39.0823C121.363 29.7226 113.775 22.1351 104.416 22.1351C95.0559 22.1351 87.4684 29.7226 87.4684 39.0823C87.4684 48.442 95.0559 56.0295 104.416 56.0295ZM99.1436 44.8025V33.4526C99.1436 31.8792 100.876 30.9219 102.208 31.7596L111.45 37.5717C112.713 38.366 112.693 40.2135 111.413 40.9803L102.172 46.518C100.838 47.3168 99.1436 46.3565 99.1436 44.8025Z" fill="#ffffff"/>
|
6
|
+
</svg>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<svg width="136" height="135" viewBox="0 0 136 135" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M51.4115 48.6266V51.6598C51.4115 57.9736 55.5794 63.1657 60.5871 63.1657C65.5947 63.1657 69.7626 57.9736 69.7626 51.6598V48.6266C69.7626 46.3077 67.3068 40.8458 60.5871 40.8458C53.8674 40.8458 51.4115 45.6839 51.4115 48.6266Z" stroke="#00a2c2" fill="#00a2c2" stroke-width="5" stroke-linejoin="round"/>
|
3
|
+
<path d="M48.3775 73.5705C51.0626 72.0467 54.7914 71.0796 57.661 70.5797C59.5984 70.2422 61.5762 70.2422 63.5136 70.5797C66.3869 71.0803 70.1216 72.0492 72.8075 73.5763C73.4043 73.9157 73.8556 74.4516 74.1151 75.0873C74.8557 76.9018 76.3168 81.0938 76.3168 85.9265V93.9354H44.8578V85.9265C44.8578 81.1517 46.318 76.933 47.0589 75.0999C47.319 74.4563 47.7738 73.9131 48.3775 73.5705Z" stroke="#00a2c2" fill="#00a2c2" stroke-width="5"/>
|
4
|
+
<path d="M114.493 39.0267C114.493 33.5039 110.016 29.0267 104.493 29.0267H24.6372C19.1143 29.0267 14.6372 33.5039 14.6372 39.0267V83.9332C14.6372 89.4561 19.1143 93.9332 24.6372 93.9332H73.4237C76.042 93.9332 78.5559 94.9601 80.4253 96.7933L91.7137 107.863C93.6119 109.725 96.8142 108.38 96.8142 105.721V98.9332C96.8142 96.1718 99.0528 93.9332 101.814 93.9332H104.493C110.016 93.9332 114.493 89.456 114.493 83.9332V39.0267Z" stroke="#333333" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.416 56.0295C113.775 56.0295 121.363 48.442 121.363 39.0823C121.363 29.7226 113.775 22.1351 104.416 22.1351C95.0559 22.1351 87.4684 29.7226 87.4684 39.0823C87.4684 48.442 95.0559 56.0295 104.416 56.0295ZM99.1436 44.8025V33.4526C99.1436 31.8792 100.876 30.9219 102.208 31.7596L111.45 37.5717C112.713 38.366 112.693 40.2135 111.413 40.9803L102.172 46.518C100.838 47.3168 99.1436 46.3565 99.1436 44.8025Z" fill="#00a2c2"/>
|
6
|
+
</svg>
|