Add the ability to redirect to the resulting link, some styling
[bigly] / src / bigly / templates / bigly / _base.html
1 {% load static %}
2 <!doctype html>
3 <html lang='en'>
4   <head>
5     <title>bigly</title>
6
7     <meta charset='utf-8'/>
8     <meta name='viewport' content='width=device-width, initial-scale=1'/>
9     <meta name='description' content='A tool for unshortening links that have been shortened with a link shortener.'/>
10     <meta name='author' content='David Kerkeslager'/>
11
12     <link rel='stylesheet' href='{% static "bigly/styles.css" %}'/>
13   </head>
14
15   <body>
16     <main>
17       {% block body %}
18       {% endblock %}
19     </main>
20
21     <footer>
22       <section>&copy; {% now "Y" %} David Kerkeslager</section>
23       <section>All code for this site is released under the AGPL version 3.</section>
24     </footer>
25   </body>
26 </html>