forked from CryptoConsortium/CCSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6_definitions.html
25 lines (24 loc) · 891 Bytes
/
6_definitions.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
---
layout: default
title: Definitions
permalink: /Definitions/
---
<div class="home">
<h1 class="page-heading">Definitions</h1>
<ul class="post-list">
{% for definitions_hash in site.data.definitions %}
{% assign def = definitions_hash[1] %}
<li>
<h3 id="{{ def.id }}"> {{ def.term }}
<div class="contribution-links">
<a href="https://github.com/CryptoConsortium/CCSS/edit/master/_data/definitions/{{ def.file }}.yml">Edit</a>
| <a href="https://github.com/CryptoConsortium/CCSS/commits/master/_data/definitions/{{ def.file }}.yml">History</a>
| <a href="https://github.com/CryptoConsortium/CCSS/issues/new?body=Source%20File%3A%20{{ definitions/{{ def.file }}%0A%0A">Discuss</a>
| <a href="#top">Top</a>
</div>
</h3>
<p>{{ def.description | markdownify }}</p>
</li>
{% endfor %}
</ul>
</div>