aboutsummaryrefslogtreecommitdiffstats
path: root/templates/about.html
blob: e7226a8e578a74b9157a47e090fbc699b5b35fcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}

{% block nav_about %}active{% endblock %}

{% block header %}

<header>
  <div class="panel" id="title">
    <h1>{{ locale.text("name").unwrap() }}</h1>
  </div>
</header>

{% endblock header %}

{% block content %}

<div class="content panel">
  {{ locale.text("about-content").unwrap()|safe }}
</div>

{% endblock content %}