aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/about.html
blob: 9a695a6a81293ea26bc0f339b63d1774d7c9852b (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
26
27
28
29
30
{% extends "frame.html" %}
{% block body %}


<section>
<div class="page-header">
    <h1>
        About
    </h1>
</div>
<div class="row">
    <div class="span6">
        <div>
            <p>pathod is developed by <a href="http://corte.si">Aldo
            Cortesi</a>.</p>
        </div>

        <div>
            <ul>
                <li>email: <a href="mailto:aldo@corte.si">aldo@corte.si</a></li>
                <li>twitter: <a href="http://twitter.com/cortesi">@cortesi</a></li>
                <li>github: <a href="https://github.com/cortesi">github.com/cortesi</a></li>
            </ul>
        </div>
    </div>
</div>
</section>


{% endblock %}