Add a basic link embiggener
[bigly] / src / bigly / templates / bigly / link_info.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     <table>
17       <tr>
18         <td>Link:</td>
19         <td><a href='{{ link }}'>{{ link }}</a></td>
20       </tr>
21     </table>
22   </body>
23 </html>