-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
39 lines (28 loc) · 996 Bytes
/
about.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
---
layout: default
title: About
---
{% include principles.html %}
<div class="section contact js-fade-in">
<h2>Contact</h2>
<div class="contact__items">
<a href="https://twitter.com/{{ site.twitter }}" class="contact__item contact__item--twitter">
<h4>Twitter</h4>
</a>
<a href="{{ site.gitter }}" class="contact__item contact__item--gitter">
<h4>Gitter</h4>
</a>
<a href="mailto:{{site.email}}" class="contact__item contact__item--email">
<h4>Email</h4>
</a>
</div>
<h2>Code of Conduct</h2>
<p>{% include conduct_header.html %}<br><br>
<a class="btn text center js-expand-coc" href="/conduct.html">Read full Code of Conduct</a></p>
<div class="content content-small centered coc" id="CoC">
<!-- trick thanks to http://wolfslittlestore.be/2013/10/rendering-markdown-in-jekyll/ -->
{% capture conduct %}{% include conduct.html %}{% endcapture %}
{{ conduct | markdownify }}
</div>
{% include license.html %}
</div>