Add a basic link embiggener
[bigly] / src / bigly / templates / bigly / link_info.html
diff --git a/src/bigly/templates/bigly/link_info.html b/src/bigly/templates/bigly/link_info.html
new file mode 100644 (file)
index 0000000..bdd5265
--- /dev/null
@@ -0,0 +1,23 @@
+{% 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>
+    <table>
+      <tr>
+        <td>Link:</td>
+        <td><a href='{{ link }}'>{{ link }}</a></td>
+      </tr>
+    </table>
+  </body>
+</html>