mp-design-system 0.8.2 → 0.8.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (45) hide show
  1. package/dist/build/scss/library.css +1 -1
  2. package/dist/build/scss/library.css.map +1 -1
  3. package/dist/build/scss/main.css +1 -1
  4. package/dist/build/scss/main.css.map +1 -1
  5. package/package.json +7 -7
  6. package/src/_includes/components/alert/alert.scss +1 -1
  7. package/src/_includes/components/campaign/campaign.config.js +6 -0
  8. package/src/_includes/components/campaign/campaign.njk +5 -3
  9. package/src/_includes/components/meta-box/meta-box.scss +24 -0
  10. package/src/_includes/includes/system-footer.njk +12 -2
  11. package/src/_includes/library-navigation/brand-nav.njk +8 -16
  12. package/src/_includes/library-navigation/components-nav.njk +1 -1
  13. package/src/_includes/library-navigation/content-nav.njk +2 -1
  14. package/src/_redirects +8 -0
  15. package/src/assets/scss/library.scss +3 -3
  16. package/src/assets/scss/utilities/index.scss +4 -0
  17. package/src/brand/{visual/colors.njk → colors.njk} +52 -34
  18. package/src/brand/{visual/images.md → images.md} +0 -0
  19. package/src/brand/index.njk +6 -15
  20. package/src/brand/{visual/logo.md → logo.md} +11 -6
  21. package/src/brand/{visual/typography.md → typography.md} +6 -1
  22. package/src/checklist.md +70 -0
  23. package/src/components/colour.njk +7 -7
  24. package/src/components/grid/index.njk +56 -14
  25. package/src/components/iconography.njk +3 -1
  26. package/src/components/publishing-the-system.md +2 -0
  27. package/src/content/big-ideas.md +1 -1
  28. package/src/content/boilerplate.md +27 -0
  29. package/src/content/our-voice/1-big-picture.md +1 -1
  30. package/src/content/our-voice/2-whats-most-important.md +1 -1
  31. package/src/content/our-voice/3-write-like-we-speak.md +1 -1
  32. package/src/content/our-voice/4-write-to-be-skimmed.md +1 -1
  33. package/src/content/our-voice/5-active-sentences.md +1 -1
  34. package/src/content/our-voice/6-add-energy.md +1 -1
  35. package/src/content/our-voice/7-small-surprises.md +1 -1
  36. package/src/content/our-voice/seven-steps.md +1 -1
  37. package/src/content/our-voice/which-techniques-when.md +1 -1
  38. package/src/content/real-life-examples/01-who-we-are-boilerplate.md +10 -6
  39. package/src/index.njk +4 -6
  40. package/src/static/svg/logo-simple.svg +1 -0
  41. package/src/static/zip/MP_logo.zip +0 -0
  42. package/src/brand/identity/boilerplate.md +0 -23
  43. package/src/brand/identity/index.md +0 -14
  44. package/src/brand/identity/legal-information.md +0 -9
  45. package/src/brand/identity/strategy.md +0 -12
@@ -4,22 +4,64 @@ layout: system-page
4
4
  sidebar: components
5
5
  ---
6
6
 
7
- {% from "components/usp/macro.njk" import usp %}
8
-
7
+ {% from "components/card/macro.njk" import card %}
8
+
9
9
  <div class="o-grid o-grid--of-three-late">
10
- {{ usp({
11
- title: 'Generic',
12
- content: '<p>Grids to be nested inside layout grids, splitting content into equal columns.</p>',
13
- link: '/components/grid/generic/'
10
+ {{ card({
11
+ theme: {
12
+ layout: 'single',
13
+ size: 'large',
14
+ border: true
15
+ },
16
+ header: {
17
+ title: 'Generic'
18
+ },
19
+ body: {
20
+ content: '<p>Grids to be nested inside layout grids, splitting content into equal columns.</p>'
21
+ },
22
+ footer: {
23
+ cta: {
24
+ link: '/components/grid/generic/',
25
+ label: 'Read more'
26
+ }
27
+ }
14
28
  }) }}
15
- {{ usp({
16
- title: 'Layout',
17
- content: '<p>Grids designed to lay out full pages, fitting into the twelve column grid.</p>',
18
- link: '/components/grid/layout/'
29
+ {{ card({
30
+ theme: {
31
+ layout: 'single',
32
+ size: 'large',
33
+ border: true
34
+ },
35
+ header: {
36
+ title: 'Layout'
37
+ },
38
+ body: {
39
+ content: '<p>Grids designed to lay out full pages, using the twelve column grid.</p>'
40
+ },
41
+ footer: {
42
+ cta: {
43
+ link: '/components/grid/layout/',
44
+ label: 'Read more'
45
+ }
46
+ }
19
47
  }) }}
20
- {{ usp({
21
- title: 'Wrapper',
22
- content: '<p>Site-width constrains.</p>',
23
- link: '/components/grid/wrap/'
48
+ {{ card({
49
+ theme: {
50
+ layout: 'single',
51
+ size: 'large',
52
+ border: true
53
+ },
54
+ header: {
55
+ title: 'Wrapper'
56
+ },
57
+ body: {
58
+ content: '<p>Site-width constraints.</p>'
59
+ },
60
+ footer: {
61
+ cta: {
62
+ link: '/components/grid/wrap/',
63
+ label: 'Read more'
64
+ }
65
+ }
24
66
  }) }}
25
67
  </div>
@@ -50,7 +50,9 @@ Adding new icons to the SVG sprite is a manual process.
50
50
  5. Paste into Franklin's /src/static/svg/sprite.svg
51
51
  - Convert the \<svg> tag into a \<symbol>
52
52
  - Add an id attribute
53
- - Generall ensure your \<symbol> looks the same as existing ones
53
+ - Generally ensure your \<symbol> looks the same as existing ones
54
+
55
+ Please remember to add your icon to this page!
54
56
  {% endset %}
55
57
 
56
58
  <div class="u-flow--l">
@@ -8,6 +8,8 @@ sidebar: components
8
8
 
9
9
  To push changes to the live version of this website, simply `git push` the `master` branch. [Netlify](http://netlify.com/) will automatically rebuild the website with the latest code & design and redeploy it.
10
10
 
11
+ Details on editing and updating this website are available in [Confluence](https://malvernpanalytical.atlassian.net/l/cp/mwMV1d1H) (Malvern Panalytical employees only).
12
+
11
13
  ## NPM
12
14
 
13
15
  When you're ready to cut a new release to NPM, here are the steps you'll need to take:
@@ -3,7 +3,7 @@ title: Big ideas for a better world
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-03
6
+ date: 2020-01-04
7
7
  ---
8
8
 
9
9
  ### Explained clearly, confidently and with a few small surprises
@@ -0,0 +1,27 @@
1
+ ---
2
+ title: Boilerplate
3
+ layout: content-page
4
+ sidebar: content
5
+ status: 'Ready'
6
+ version: 1.0.2
7
+ tags: content
8
+ date: 2020-01-03
9
+ ---
10
+
11
+ {% alert %}
12
+ This is our **boilerplate**: the default text we use to describe ourselves in press releases and other publications.
13
+ {% endalert %}
14
+
15
+ ### About Malvern Panalytical
16
+
17
+ We draw on the power of our analytical instruments and services to make the invisible visible and the impossible possible.
18
+
19
+ Through the chemical, physical and structural analysis of materials, our high precision analytical systems and top-notch services support our customers in creating a better world. We help them improve everything from the energies that power us and the materials we build with, to the medicines that cure us and the foods we enjoy.
20
+
21
+ We partner with many of the world’s biggest companies, universities and research organizations. They value us not only for the power of our solutions, but also for the depth of our expertise, collaboration and integrity.
22
+
23
+ We are committed to Net Zero in our own operations by 2030 and in our total value chain by 2040. This is woven into the fabric of our business, and we help our employees and customers think about their part in creating a healthier, cleaner, and more productive world.
24
+
25
+ With over 2300 employees, we serve the world, and we are part of Spectris plc, the world-leading precision measurement group.
26
+
27
+ **Malvern Panalytical. We’re BIG on small.™**
@@ -3,7 +3,7 @@ title: 1. We focus on the big picture
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-05
6
+ date: 2020-01-06
7
7
  ---
8
8
 
9
9
  # Not on ourselves
@@ -3,7 +3,7 @@ title: 2. We say what's most important
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-06
6
+ date: 2020-01-07
7
7
  ---
8
8
 
9
9
  # Not everything we know
@@ -3,7 +3,7 @@ title: 3. We write like we speak
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-07
6
+ date: 2020-01-08
7
7
  ---
8
8
 
9
9
  # Not like a technical report
@@ -3,7 +3,7 @@ title: 4. We write to be skimmed
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-08
6
+ date: 2020-01-09
7
7
  ---
8
8
 
9
9
  # Let people find what they need quickly
@@ -3,7 +3,7 @@ title: 5. We use active sentences
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-09
6
+ date: 2020-01-10
7
7
  ---
8
8
 
9
9
  # Passive sentences will not be used
@@ -3,7 +3,7 @@ title: 6. We add energy
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-10
6
+ date: 2020-01-11
7
7
  ---
8
8
  # With short sentences. (Like this).
9
9
 
@@ -3,7 +3,7 @@ title: 7. … And we add small surprises
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-11
6
+ date: 2020-01-12
7
7
  ---
8
8
  # Give our readers a smile in the mind
9
9
 
@@ -3,7 +3,7 @@ title: 7 steps to more clear, confident and surprising writing
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-04
6
+ date: 2020-01-05
7
7
  ---
8
8
 
9
9
  These are the main practical techniques that are the foundation of our tone of voice.
@@ -3,7 +3,7 @@ title: Which techniques, when?
3
3
  layout: content-page
4
4
  sidebar: content
5
5
  tags: content
6
- date: 2020-01-12
6
+ date: 2020-01-13
7
7
  ---
8
8
 
9
9
  As you’ll notice from the examples in these guidelines, we don’t need to use *all* the techniques *all* of the time.
@@ -14,15 +14,19 @@ Malvern Panalytical was formed by the merger of Malvern Instruments and PANalyti
14
14
 
15
15
  # After
16
16
 
17
- **When you make the invisible visible, the impossible is possible.**
17
+ **About Malvern Panalytical**
18
18
 
19
- Our analytical systems and services help our customers to create a better world. Through chemical, physical and structural analysis of materials, they improve everything from the energies that power us and the materials we build with, to the medicines that cure us and the foods we enjoy.
19
+ We draw on the power of our analytical instruments and services to make the invisible visible and the impossible possible.
20
20
 
21
- We partner with many of the world’s biggest companies, universities and research organizations. They value us not only for the power of our solutions, but also for the depth of our expertise, collaboration and integrity.
21
+ Through the chemical, physical and structural analysis of materials, our high precision analytical systems and top-notch services support our customers in creating a better world. We help them improve everything from the energies that power us and the materials we build with, to the medicines that cure us and the foods we enjoy.
22
22
 
23
- **Our roots**
23
+ We partner with many of the world’s biggest companies, universities and research organizations. They value us not only for the power of our solutions, but also for the depth of our expertise, collaboration and integrity.
24
24
 
25
- Once, we were two companies: Malvern Instruments and PANalytical. Now we are one, with over 2,200 people worldwide, and part of Spectris plc, the world-leading precision measurements Group.
25
+ We are committed to Net Zero in our own operations by 2030 and in our total value chain by 2040. This is woven into the fabric of our business, and we help our employees and customers think about their part in creating a healthier, cleaner, and more productive world.
26
+
27
+ With over 2300 employees, we serve the world, and we are part of Spectris plc, the world-leading precision measurement group.
28
+
29
+ **Malvern Panalytical. We’re BIG on small.™**
26
30
 
27
31
  {% alert %}
28
32
  ### What's changed
@@ -31,5 +35,5 @@ Once, we were two companies: Malvern Instruments and PANalytical. Now we are one
31
35
  - **Write like we speak**
32
36
  We’ve stripped out all of the business-speak (maximizing productivity, innovative, enhance efficiency) and focused on the real-life problems we’re helping to solve.
33
37
  - **Add energy**
34
- Note how using three short sentences in the second paragraph (The energies…The materials…The medicines…) add a sense of drama.
38
+ Note how using repetition in the second paragraph (the energies…the materials…the medicines…the foods) add a sense of drama.
35
39
  {% endalert %}
package/src/index.njk CHANGED
@@ -1,9 +1,9 @@
1
1
  ---
2
2
  title: "Welcome"
3
- subtitle: Our design system helps us create consistent experiences across all our digital properties and beyond. It also makes the design and development process faster, more efficient and scalable.
3
+ subtitle: Our design system helps us create consistent experiences across our websites and beyond. It also makes the design and development process faster, more efficient and scalable.
4
4
  layout: system-home-page
5
5
  renderData:
6
- title: "Welcome to the Malvern Panalytical design system"
6
+ title: "Welcome to the Project Franklin design system"
7
7
  ---
8
8
 
9
9
  {% from "components/prose/macro.njk" import markdown %}
@@ -74,11 +74,9 @@ renderData:
74
74
 
75
75
  {% set content %}
76
76
  ## Latest
77
- ##### V.{{ config.dsVersion }} - Feb 17 2020
77
+ ##### V.{{ config.dsVersion }} - Jul 15 2022
78
78
 
79
- - Create [accordion component](/components/accordion)
80
- - Create background-video variant for hero component
81
- - Add downloadable copy of the [Malvern Panalytical logo](/brand/downloads)
79
+ - Add simple logo variant to logo downloads
82
80
  - Misc. library improvements
83
81
 
84
82
  ## A living resource for everyone
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" id="Layer_1" x="0" y="0" version="1.1" viewBox="0 0 298.1 117.2"><style>.st2{fill:#5bb570}</style><path fill="#313530" d="M122.9 55.2h-4.3v-22h5.5l6.2 14.3h.3l6.2-14.3h5.5v22H138V41.7h-.2l-5.7 13.5H129l-5.7-13.5h-.2v13.5zm40.1 0v-21l4.5-1.1v22.1H163zm6.4-17.1h4.8l3.5 12.7h.3l3.5-12.7h4.7l-5.9 17h-5.1l-5.8-17zm29 12.2h4.2c-.3 1.6-1.2 2.9-2.6 3.8-1.4.9-3.1 1.4-5.2 1.4-2.6 0-4.6-.8-6.1-2.3-1.5-1.5-2.2-3.7-2.2-6.5s.7-5 2.2-6.6c1.5-1.6 3.5-2.4 6-2.4s4.5.8 5.9 2.3c1.4 1.5 2.1 3.6 2.1 6.3v1.4H191v.3c0 1.3.4 2.3 1.1 3 .7.7 1.6 1.1 2.8 1.1.9 0 1.6-.2 2.2-.5.6-.3 1-.7 1.3-1.3zm-3.7-9.1c-1 0-1.9.3-2.6 1-.7.7-1.1 1.6-1.1 2.7h7.3c-.1-1.1-.4-2-1-2.7-.7-.7-1.5-1-2.6-1zm10.6 14v-17h4.4v2.7h.3c.2-.9.7-1.6 1.5-2.1.8-.6 1.7-.8 2.8-.8.8 0 1.3.1 1.7.2v4.1c-.2-.1-.5-.1-.9-.2s-.8-.1-1.2-.1c-1.2 0-2.2.3-3 1-.8.7-1.1 1.6-1.1 2.8v9.4h-4.5zm13.1 0v-17h4.4v2.7h.3c.4-1 1.1-1.7 2-2.3.9-.6 2-.8 3.3-.8 1.9 0 3.4.6 4.4 1.7 1 1.1 1.6 2.7 1.6 4.7v11h-4.5v-9.9c0-1.2-.3-2.1-.8-2.7-.6-.6-1.4-.9-2.4-.9-1.1 0-2 .3-2.7 1-.7.7-1 1.6-1 2.7v9.8h-4.6zm-99.9 7.4h9.3c2.3 0 4.2.7 5.6 2.1 1.4 1.4 2.1 3.3 2.1 5.6s-.7 4.1-2.2 5.5c-1.5 1.4-3.4 2.1-5.7 2.1h-4.4v6.6h-4.7V62.6zm4.7 3.8v7.8h3.4c1.3 0 2.4-.3 3.1-1 .7-.7 1.1-1.6 1.1-2.9 0-1.3-.4-2.2-1.1-2.9-.7-.7-1.8-1-3.1-1h-3.4zm31.7 18.2v-17h4.4v2.7h.3c.4-1 1.1-1.7 2-2.3.9-.6 2-.8 3.3-.8 1.9 0 3.4.6 4.4 1.7 1 1.1 1.6 2.7 1.6 4.7v11h-4.5v-9.9c0-1.2-.3-2.1-.8-2.7-.6-.6-1.4-.9-2.4-.9-1.1 0-2 .3-2.7 1-.7.7-1 1.6-1 2.7v9.8h-4.6zm36.4 0v-21l4.5-1.1v22.1h-4.5zm9.7 6.2h-1.7v-3.6h1c.8 0 1.5-.1 2-.4.5-.3.8-.8 1-1.4l.2-.6-6-17.1h5l3.6 12.9h.3l3.6-12.9h4.8L208.9 85c-.7 2.2-1.7 3.7-2.8 4.6-1.3.8-2.9 1.2-5.1 1.2zm16.8-23.2v-4l4.5-1.2v5.2h3.6v3.7h-3.6V79c0 .7.2 1.3.5 1.6.4.4.9.5 1.7.5.5 0 .9 0 1.3-.1v3.4c-.7.1-1.4.2-2.2.2-2.1 0-3.6-.4-4.4-1.1-.9-.7-1.3-1.9-1.3-3.6v-8.7h-2l1.1-3.7h.8zm11.3 17v-17h4.5v17h-4.5zm0-18.6v-3.3h4.5V66h-4.5zm42.5 18.6v-21l4.5-1.1v22.1h-4.5zm-24.1-4.8c-.2.3-.4.6-.7.8-.6.4-1.3.7-2.3.7-1.2 0-2.1-.5-2.8-1.4-.7-.9-1-2.2-1-3.9 0-1.7.3-2.9 1-3.8.7-.9 1.6-1.3 2.8-1.3.9 0 1.7.2 2.3.7.2.2.4.4.6.7h4.5c-.3-1.4-1-2.5-2-3.4-1.3-1.1-3.1-1.7-5.3-1.7-2.7 0-4.7.8-6.2 2.3-1.4 1.5-2.2 3.7-2.2 6.6 0 2.9.7 5.1 2.2 6.6 1.4 1.6 3.5 2.3 6.2 2.3 2.2 0 4-.6 5.3-1.7 1.1-.9 1.8-2.1 2.1-3.5h-4.5zm-100.9-5.9h.6v-.2c0-2.3-1.4-3-3.3-3-2.5 0-4.7 1.6-4.7 1.6l-1.6-3.1s2.7-2.1 6.7-2.1c4.5 0 7.7 2.5 7.7 6.8v10.7h-4.5V82s-1.3 3-5.2 3c-3.1 0-5.8-1.9-5.8-5.3 0-5.5 7.3-5.8 10.1-5.8zm-3.2 7.8c2.3 0 3.9-2.4 3.9-4.5v-.4h-.7c-2.2 0-5.7.3-5.7 2.7-.1 1.1.7 2.2 2.5 2.2zm11.3-37.3h.6v-.2c0-2.3-1.4-3-3.3-3-2.5 0-4.7 1.6-4.7 1.6l-1.6-3.1s2.7-2.1 6.7-2.1c4.5 0 7.7 2.5 7.7 6.8v10.7h-4.5v-2.6s-1.3 3-5.2 3c-3.1 0-5.8-1.9-5.8-5.3 0-5.4 7.3-5.8 10.1-5.8zm-3.3 7.8c2.3 0 3.9-2.4 3.9-4.5v-.4h-.7c-2.2 0-5.7.3-5.7 2.7 0 1.2.8 2.2 2.5 2.2zm31.3 21.7h.6v-.2c0-2.3-1.4-3-3.3-3-2.5 0-4.7 1.6-4.7 1.6l-1.6-3.1s2.7-2.1 6.7-2.1c4.5 0 7.7 2.5 7.7 6.8v10.7h-4.5V82s-1.3 3-5.2 3c-3.1 0-5.8-1.9-5.8-5.3-.1-5.5 7.3-5.8 10.1-5.8zm-3.3 7.8c2.3 0 3.9-2.4 3.9-4.5v-.4h-.7c-2.2 0-5.7.3-5.7 2.7-.1 1.1.7 2.2 2.5 2.2zm84.2-7.8h.6v-.2c0-2.3-1.4-3-3.3-3-2.5 0-4.7 1.6-4.7 1.6l-1.6-3.1s2.7-2.1 6.7-2.1c4.5 0 7.7 2.5 7.7 6.8v10.7h-4.5V82s-1.3 3-5.2 3c-3.1 0-5.8-1.9-5.8-5.3-.1-5.5 7.3-5.8 10.1-5.8zm-3.3 7.8c2.3 0 3.9-2.4 3.9-4.5v-.4h-.7c-2.2 0-5.7.3-5.7 2.7-.1 1.1.8 2.2 2.5 2.2z"/><path fill="#006776" d="m55.7 58.5.9.9c.3.3.6.4 1 .4s.7-.1 1-.4l34.2-34.2c.5-.5.5-1.4 0-1.9l-.9-.9c-.5-.5-1.4-.5-1.9 0L55.7 56.6c-.6.5-.6 1.4 0 1.9zm5.2 5.3.9.9c.3.3.6.4 1 .4s.7-.1 1-.4l39.4-39.4c.5-.5.5-1.4 0-1.9l-.9-.9c-.5-.5-1.4-.5-1.9 0L60.9 61.8c-.5.5-.5 1.4 0 2zm5.2 5.2.9.9c.3.3.6.4 1 .4s.7-.1 1-.4l44.6-44.6c.5-.5.5-1.4 0-1.9l-.9-.9c-.5-.5-1.4-.5-1.9 0L66.1 67c-.5.6-.5 1.4 0 2z"/><path d="m49.8 62.5-.9.9c-.5.5-.5 1.4 0 1.9l11.3 11.3c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.3-.3.4-.6.4-1s-.1-.7-.4-1L51.7 62.5c-.5-.5-1.4-.5-1.9 0zm25.5 11.2c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l18.2 18.2c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9L75.3 73.7zm-5.2 5.2c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l13 13c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.3-.3.4-.6.4-1s-.1-.7-.4-1L70.1 78.9zm10.4-10.4c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l23.5 23.5c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9L80.5 68.5zM114.4 92 85.8 63.3c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l28.7 28.7c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.4-.5.4-1.4-.2-1.9z" class="st2"/><path fill="#0096b4" d="M60.2 42.2c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9l-17-16.9c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l16.9 16.9zM55 47.4c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9L35.7 22.5c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9L55 47.4zM50.7 53c.4 0 .7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9L25.2 22.5c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l27.3 27.3c.3.3.7.4 1 .4z"/><path d="M57.8 81c.5-.5.5-1.4 0-1.9L46.5 67.7c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9L55 81.8c.3.3.6.4 1 .4s.7-.1 1-.4l.8-.8zm-16.5-8.1c-.5-.5-1.4-.5-1.9 0l-.9.9c-.3.3-.4.6-.4 1s.1.7.4 1l11.3 11.3c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9L41.3 72.9zm23.6 11.3c-.5-.5-1.4-.5-1.9 0l-.9.8c-.5.5-.5 1.4 0 1.9l7.8 7.8c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9l-7.9-7.7zm-5.2 5.2c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l2.6 2.6c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9l-2.7-2.6zM36.1 78.1c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l11.3 11.3c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9L36.1 78.1zm-5.3 5.3c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l7.8 7.8c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.3-.3.4-.6.4-1s-.1-.7-.4-1l-7.9-7.7z" class="st2"/><path d="m28 86.2 8.6 8.6c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.3-.3.4-.6.4-1s-.1-.7-.4-1l-8.6-8.6m-5.3 5.3c-.5-.5-1.4-.5-1.9 0l-.9.9c-.5.5-.5 1.4 0 1.9l2.6 2.6c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9l-2.7-2.6z" class="st2"/><path d="m22.8 91.4 3.4 3.4c.3.3.6.4 1 .4s.7-.1 1-.4l.9-.9c.5-.5.5-1.4 0-1.9l-3.4-3.4" class="st2"/></svg>
Binary file
@@ -1,23 +0,0 @@
1
- ---
2
- title: Boilerplate
3
- layout: content-page
4
- sidebar: brand
5
- status: 'Ready'
6
- version: 1.0.2
7
- tags: brand
8
- ---
9
-
10
- ### When you make the invisible visible, the impossible is possible.
11
-
12
- Our analytical systems and services help our customers to create a better world. Through chemical, physical and structural analysis of materials, they improve everything from the energies that power us and the materials we build with, to the medicines that cure us and the foods we enjoy.
13
-
14
- We partner with many of the world’s biggest companies, universities and research organizations. They value us not only for the power of our solutions, but also for the depth of our expertise, collaboration and integrity.
15
-
16
- With over 2200 employees, we serve the world, and we are part of Spectris plc, the world-leading precision measurements group.
17
-
18
- **Malvern Panalytical. We’re BIG on small.**
19
-
20
- {% alert %}
21
- ### This is our boilerplate.
22
- It's the default text we use to describe ourselves in press releases and other publications.
23
- {% endalert %}
@@ -1,14 +0,0 @@
1
- ---
2
- title: Brand Identity
3
- layout: content-page
4
- sidebar: brand
5
- status: 'Placeholder'
6
- version: 0.0.1
7
- tags: brand
8
- ---
9
-
10
- ## Customer centric
11
-
12
- A brand is defined by **what a company does**, not just what it says or shows. It means keeping our promises to our stakeholders, proving to them that Malvern Panalytical will always do its best to deliver what they need when they need it. Successful brands never take their stakeholders for granted.
13
-
14
- We will seek to build **more intimate relationships with customers** across hierarchies, in key sectors that will drive the **development of innovative, customer-focused solutions and value-added services**.
@@ -1,9 +0,0 @@
1
- ---
2
- title: Legal information
3
- layout: content-page
4
- sidebar: brand
5
- tags: brand
6
- version: 0.0.1
7
- status: 'Placeholder'
8
- ---
9
- In development
@@ -1,12 +0,0 @@
1
- ---
2
- title: Brand Strategy
3
- layout: content-page
4
- sidebar: brand
5
- status: 'Placeholder'
6
- version: 0.0.1
7
- tags: brand
8
- ---
9
-
10
- Our brand identity visualizes and mirrors Malvern Panalytical’s stature and position as a global leader in the materials characterization market.
11
-
12
- The **pragmatic implementation** of the brand identity enables everyone throughout the Malvern Panalytical organization to understand and deliver on the promises implied by the brand. The designs and ideas create a recognizable but straightforward signage program for Malvern Panalytical which expresses **its promise, personality, and values**.