Starting a basic app
[bigly] / src / bigly / templates / bigly / index.html
diff --git a/src/bigly/templates/bigly/index.html b/src/bigly/templates/bigly/index.html
new file mode 100644 (file)
index 0000000..4178319
--- /dev/null
@@ -0,0 +1,29 @@
+{% load static %}
+<!doctype html>
+<html lang='en'>
+  <head>
+    <title>bigly</title>
+
+    <meta charset='utf-8'/>
+    <meta name='viewport' content='width=device-width, initial-scale=1'/>
+    <meta name='description' content='A tool for unshortening links that have been shortened with a link shortener.'/>
+    <meta name='author' content='David Kerkeslager'/>
+
+    <link rel='stylesheet' href='{% static "bigly/styles.css" %}'/>
+  </head>
+
+  <body>
+    <h1>bigly</h1>
+    <h2>make links big again</h2>
+    Hello, world
+
+    <div id='app'>
+      <noscript>
+        Foo
+      </noscript>
+    </div>
+
+    <script src='bigly/scripts.js'></script>
+  </body>
+</html>
+