-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.njk
63 lines (51 loc) · 1.13 KB
/
index.njk
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: layouts/home.njk
title: CryptPad Blueprints
---
<article class="block roadmap">
<h2>Roadmap</h2>
<pre class="mermaid">
graph LR
{% for item in collections.roadmap %}
{% set i = item.data %}
{% if i.linkto %}{% for l in i.linkto %}
{{i.id}}({{i.title}}){% if i.style %}:::{{i.style}}{% endif %}-->{{l}}
{% endfor %}{% else %}
{{i.id}}({{i.title}}){% if i.style %}:::{{i.style}}{% endif %}
{% endif %}{% endfor %}
{% for item in collections.roadmap %}
{% set i = item.data %}
click {{i.id}} href "{{item.url}}"
{% endfor %}
subgraph Legend
u("User Story"):::user-story
r("Recommendation"):::recommendation
p("Prototype"):::prototype
end
classDef user-story fill:#c8d6ff
classDef recommendation fill:#ffdeca
classDef prototype fill:#E4CAFF
</pre>
</article>
<!--
#FFD4D4,
#FFDECA,
#FFE69C,
#DBFFB7,
#AFFDC2,
#C9FFFE,
#C8D6FF,
#E4CAFF;
-->
<!-- <style>
.nodeLabel {
text-decoration: underline;
color: blue !important;
}
</style> -->
<script type="module">
import mermaid from '/node_modules/mermaid/dist/mermaid.esm.mjs';
mermaid.initialize({
startOnLoad: true,
});
</script>