diff options
author | raylu <raylu@gridium.com> | 2013-10-22 22:22:26 -0700 |
---|---|---|
committer | raylu <raylu@gridium.com> | 2013-10-22 22:22:26 -0700 |
commit | 29d0528ec6ff9cf61af3bab2feb71dcb3625240a (patch) | |
tree | 74e0b143e576fee14a217f74e8cf414b70e75c40 /web/templates/home.html | |
parent | 0dea8f430e4905da98d7009bdf111e0965fedd22 (diff) | |
download | ykill-29d0528ec6ff9cf61af3bab2feb71dcb3625240a.tar.xz |
most expensive kills on homepage
Diffstat (limited to 'web/templates/home.html')
-rw-r--r-- | web/templates/home.html | 15 |
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 %} |