aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/keys.html
blob: a498ae3d864df879b92fad3043106e054f21ea82 (plain)
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
{% extends "base.html" %}

{% block body %}
<div class="gay nav">
  {% include "components/title.html" %}
  {% include "components/links.html" %}
</div>

{% include "components/gay.html" %}

<div class="content">
  <h1>Keys</h1>

  <div class="article">
    {{ page.content }}
    
    <p>Following is a signed key statement:</p>

    <pre class="keys">
      {% include "keys.txt" %}
    </pre>
  </div>
  
</div>
{% endblock %}