-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwelcome.stories.twig
33 lines (30 loc) · 1.03 KB
/
welcome.stories.twig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{#
/**
* @file
* Welcome story template.
*/
#}
<div class="story-welcome">
<div class="story-welcome__inner">
{% include '@molecules/logo/logo.twig' with {
theme: 'light',
logos: logos,
} only %}
{% include '@atoms/heading/heading.twig' with {
theme: 'dark',
content: 'A design system by <a class="ct-content-link ct-theme-dark" href="https://salsa.digital/">Salsa Digital</a>.',
level: 4,
modifier_class: 'ct-text-align-center',
} only %}
{% include '@atoms/paragraph/paragraph.twig' with {
theme: 'dark',
content: 'Welcome to the CivicTheme design system, an open-source, atomic design-based, true design system developed to help you quickly and efficiently build websites.',
modifier_class: 'ct-text-align-center',
} only %}
{% include '@atoms/paragraph/paragraph.twig' with {
theme: 'dark',
content: 'CivicTheme provides an atomic design, component based framework to build and easily manage website assets and components.',
modifier_class: 'ct-text-align-center',
} only %}
</div>
</div>