forked from metanorma/metanorma.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom-intro.html
44 lines (40 loc) · 1.41 KB
/
custom-intro.html
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
34
35
36
37
38
39
40
41
42
43
44
<section class="summary">
<p>
<strong>Meet Metanorma:</strong>
an open-source framework for writing & publishing standardization documents
with the focus on semantic authoring and flexible output support.
</p>
</section>
<section class="flavors switchable-flavors">
<h2 class="title">Get started <strong>writing standards with Metanorma</strong>:</h2>
<div class="items">
{% for fl in layout.flavors.bodies %}
<a href="{{ fl.path | relative_url }}"
{% if fl.experimental %}class="experimental"{% endif %}
{% if fl.description %}title="{{ fl.description }}"{% endif %}>
<article class="fl">
<header>{{ fl.name }}</header>
</article>
</a>
{% endfor %}
{% for fl in layout.flavors.corporate %}
<a href="{{ fl.path | relative_url }}"
{% if fl.experimental %}class="experimental"{% endif %}
{% if fl.description %}title="{{ fl.description }}"{% endif %}>
<article class="fl">
<header>{{ fl.name }}</header>
</article>
</a>
{% endfor %}
</div>
</section>
<section class="flavors">
<h2 class="title">Customize and <strong>publish standards using Metanorma</strong>:</h2>
<div class="items">
<a class="sample" href="{{ "/builder/" | relative_url }}">
<article class="flavor">
<header>Create your flavor</header>
</article>
</a>
</div>
</section>