aboutsummaryrefslogtreecommitdiff
path: root/templates/links.html
diff options
context:
space:
mode:
authorMetroWind <chris.corsair@gmail.com>2025-09-21 21:34:34 -0700
committerMetroWind <chris.corsair@gmail.com>2025-09-21 21:34:34 -0700
commite9686b6ab684785d5f9acbc98942beae94817562 (patch)
tree10ffe1b7b209aee2f0513cd0c42def2c07272ea2 /templates/links.html
parentb2e812941766e11394bdb124ff73d1fe544849a2 (diff)
Implement dir handler. Unit test WIP.HEADmaster
Diffstat (limited to 'templates/links.html')
-rw-r--r--templates/links.html39
1 files changed, 0 insertions, 39 deletions
diff --git a/templates/links.html b/templates/links.html
deleted file mode 100644
index f3b3e3f..0000000
--- a/templates/links.html
+++ /dev/null
@@ -1,39 +0,0 @@
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 {% include "head.html" %}
5 <meta property="og:title" content="shrt">
6 <meta property="og:type" content="website">
7 <meta property="og:url" content="{{ url_for("links") }}">
8 <title>shrt</title>
9 </head>
10 <body>
11 <div id="Body" class="Window">
12 {% include "nav.html" %}
13 <div class="Toolbar">
14 <a class="FloatButton" href="{{ url_for("new-link") }}">➕</a>
15 </div>
16 <div id="Links">
17 <table class="TableView">
18 <thead><tr>
19 <th>Shortcut</th>
20 <th>URL</th>
21 <th>Regexp?</th>
22 <th>Actions</th>
23 </tr></thead>
24 <tbody>
25 {% for link in links %}
26 <tr>
27 <td>{{ link.shortcut }}</td>
28 <td>{{ link.original_url }}</td>
29 <td>{{ link.type_is_regexp_str }}</td>
30 <td><a href="{{ url_for("delete-link", link.id_str) }}">❌</a></td>
31 </tr>
32 {% endfor %}
33 </tbody>
34 </table>
35 </div>
36 {% include "footer.html" %}
37 </div>
38 </body>
39</html>