mp-design-system 0.6.3 → 0.6.4
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 +1 -1
- package/src/_includes/components/card/card.scss +4 -0
- package/src/assets/scss/objects/grid.scss +0 -1
- package/src/patterns/grid-of-cards.njk +57 -21
package/package.json
CHANGED
@@ -6,25 +6,61 @@ layout: patterns-page
|
|
6
6
|
{% from "components/card/macro.njk" import card %}
|
7
7
|
|
8
8
|
<div class="o-grid o-grid--of-three o-grid--swipeable">
|
9
|
-
{
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
9
|
+
{{ card({
|
10
|
+
theme: {
|
11
|
+
layout: 'single',
|
12
|
+
size: 'medium',
|
13
|
+
name: 'alt'
|
14
|
+
},
|
15
|
+
image: {
|
16
|
+
src: '/static/img/blog-page-image-1.jpg',
|
17
|
+
alt: ''
|
18
|
+
},
|
19
|
+
header: {
|
20
|
+
title: 'Mixing it with the Mastersizer!'
|
21
|
+
},
|
22
|
+
body: {
|
23
|
+
content: '<p>At a major leading manufacturer of mixing equipment, the Mastersizer particle size analyzer is one of the analytical instruments used by customers during process simulations.</p>'
|
24
|
+
},
|
25
|
+
link: '/prototype/blog-post',
|
26
|
+
tag: 'News'
|
27
|
+
}) }}
|
28
|
+
{{ card({
|
29
|
+
theme: {
|
30
|
+
layout: 'single',
|
31
|
+
size: 'medium',
|
32
|
+
name: 'alt'
|
33
|
+
},
|
34
|
+
image: {
|
35
|
+
src: '/static/img/blog-page-image-1.jpg',
|
36
|
+
alt: ''
|
37
|
+
},
|
38
|
+
header: {
|
39
|
+
title: 'GPC/SEC standards: making them last'
|
40
|
+
},
|
41
|
+
body: {
|
42
|
+
content: '<p>Earlier this year I highlighted the different types of GPC/SEC standards available and where to find them on our eStore. In this post, I’m going to share some tips and tricks about preparing your standards and making them last. But first, what standard should you be using? In my previous post, I discussed how the […]</p>'
|
43
|
+
},
|
44
|
+
link: '/prototype/blog-post',
|
45
|
+
tag: 'News'
|
46
|
+
}) }}
|
47
|
+
{{ card({
|
48
|
+
theme: {
|
49
|
+
layout: 'single',
|
50
|
+
size: 'medium',
|
51
|
+
name: 'alt'
|
52
|
+
},
|
53
|
+
image: {
|
54
|
+
src: '/static/img/blog-page-image-1.jpg',
|
55
|
+
alt: ''
|
56
|
+
},
|
57
|
+
header: {
|
58
|
+
title: 'Viral Vector Vaccines: A Borrowed Technology from Gene Therapy Advancements'
|
59
|
+
},
|
60
|
+
body: {
|
61
|
+
content: '<p>Advances in recombinant DNA technology, genomics, and immunology have greatly influenced the vaccine development process. The genetic manipulation of viruses makes them suitable as vectors for gene delivery, providing a novel and unique opportunity for vaccine design. Viruses survive and replicate by invading their host’s cells and hijacking their protein-making machinery. These virus particles contain […]</p>'
|
62
|
+
},
|
63
|
+
link: '/prototype/blog-post',
|
64
|
+
tag: 'News'
|
65
|
+
}) }}
|
30
66
|
</div>
|