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'/>
12 <link rel='stylesheet' href='{% static "bigly/styles.css" %}'/>
17 <h2>make links big again</h2>
19 <form action='{% url "embiggen" %}' method='get'>
20 <input type='url' name='link' autofocus></input>
21 <label for='link'>Link</label>
22 <input type='checkbox' name='remove_utm' checked></input>
23 <label for='remove_utm'>Remove UTM Parameters</label>
24 <input type='submit' value='Embiggen'></input>
27 <script src='{% static "bigly/scripts.js" %}'></script>