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