forked from CryptoConsortium/CCSS
-
Notifications
You must be signed in to change notification settings - Fork 3
/
1_aspects.html
85 lines (70 loc) · 2.93 KB
/
1_aspects.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
layout: default
title: Details
permalink: /Details/
---
{% assign aspects_sorted = '101-KeySeedGeneration|102-WalletCreation|103-KeyStorage|104-KeyUsage|105-KeyCompromiseProtocol|106-KeyholderGrantRevokePoliciesAndProcedures|201-SecurityAuditsAndPentests|202-DataSanitizationPolicy|203-ProofOfReserve|204-AuditLogs' | split: '|' %}
<div class="home">
<ul class="aspect-list" name="top">
{% for current_aspect in aspects_sorted %}
{% assign aspect = site.data.aspects[current_aspect] %}
{% if category != aspect.category %}
{% assign category = aspect.category %}
<li>{{category}}</li>
{% endif %}
<li><a href='#{{aspect.id}}'>{{aspect.id}} {{aspect.title}}</a></li>
{% endfor %}
</ul>
<ul class="post-list">
{% for current_aspect in aspects_sorted order:ascending %}
{% assign aspect = site.data.aspects[current_aspect] %}
<li> <a name="{{ aspect.id }}"></a>
<h1> {{ aspect.id }} {{ aspect.title }}
<div class="contribution-links">
<a href="https://github.com/CryptoConsortium/CCSS/edit/master/_data/aspects/{{ aspect.file }}.yml">Edit</a>
| <a href="https://github.com/CryptoConsortium/CCSS/commits/master/_data/aspects/{{ aspect.file }}.yml">History</a>
| <a href="https://github.com/CryptoConsortium/CCSS/issues/new?body=Source%20File%3A%20{{ aspect.file }}%0A%0A">Discuss</a>
| <a href="#top">Top</a>
</div>
</h1>
{{ aspect.description | replace:'](#','](../Definitions#' | markdownify }}
<p>
<h3> Aspect Components Include </h3>
<ul class="component-list">
{% for part in aspect.components %}
<li>{{part.id}} {{ part.title_short }}</li>
{% endfor %}
</ul>
</p>
<p>
<ul class="post-list">
<li>
<h2> <img class='level' src='/CCSS/images/CCSS_1_Color_Dark.png'/> </h2>
<ul class="level-list">
{% for part in aspect.level_one %}
<li>{{ part | replace:'](#','](../Definitions#' | markdownify }}</li>
{% endfor %}
</ul>
</li>
<li>
<h2> <img class='level' src='/CCSS/images/CCSS_2_Color_Dark.png'/> </h2>
<ul class="level-list">
{% for part in aspect.level_two %}
<li>{{ part | replace:'](#','](../Definitions#' | markdownify }}</li>
{% endfor %}
</ul>
</li>
<li>
<h2> <img class='level' src='/CCSS/images/CCSS_3_Color_Dark.png'/> </h2>
<ul class="level-list">
{% for part in aspect.level_three %}
<li>{{ part | replace:'](#','](../Definitions#' | markdownify }}</li>
{% endfor %}
</ul>
</li>
</ul>
</p>
</li>
{% endfor %}
</ul>
</div>