Starting a basic app
[bigly] / src / bigly / templates / bigly / index.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     <h1>bigly</h1>
17     <h2>make links big again</h2>
18     Hello, world
19
20     <div id='app'>
21       <noscript>
22         Foo
23       </noscript>
24     </div>
25
26     <script src='bigly/scripts.js'></script>
27   </body>
28 </html>
29