use base template for new paste creation page
[phorkie.git] / data / templates / base.htm
1 <!DOCTYPE html>
2 <html>
3  <head>
4   <link rel="stylesheet" href="phorkie.css" />
5   <title>{% block title %}{% endblock %} - Phorkie</title>
6  </head>
7  <body>
8   <nav>
9    <ul>
10     <a href="/">New paste</a>
11     <a href="/list">List all</a>
12     <a href="/search">Search</a>
13    </ul>
14   </nav>
15   <article>{% block content %}{% endblock %}</article>
16  </body>
17 </html>