summaryrefslogtreecommitdiffstats
path: root/web/templates/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'web/templates/home.html')
-rw-r--r--web/templates/home.html15
1 files changed, 11 insertions, 4 deletions
diff --git a/web/templates/home.html b/web/templates/home.html
index 34fe371..07ec4f2 100644
--- a/web/templates/home.html
+++ b/web/templates/home.html
@@ -1,8 +1,15 @@
{% extends "base.html" %}
+{% block js %}
+ <script src="/static/js/home.js"></script>
+{% end %}
+
+{% block css %}
+ <link rel="stylesheet" type="text/css" href="/css/home.css" />
+{% end %}
+
{% block main %}
-<form method="get" action="/search">
- <input type="text" name="q">
- <input type="submit">
-</form>
+<table id="expensive">
+ <caption>most expensive kills</caption>
+</table>
{% end %}