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 | |
parent | 0dea8f430e4905da98d7009bdf111e0965fedd22 (diff) | |
download | ykill-29d0528ec6ff9cf61af3bab2feb71dcb3625240a.tar.xz |
most expensive kills on homepage
Diffstat (limited to 'web/templates')
-rw-r--r-- | web/templates/base.html | 15 | ||||
-rw-r--r-- | web/templates/home.html | 15 |
2 files changed, 20 insertions, 10 deletions
diff --git a/web/templates/base.html b/web/templates/base.html index 5573839..9f3e0de 100644 --- a/web/templates/base.html +++ b/web/templates/base.html @@ -15,13 +15,16 @@ {% block js %}{% end %} </head> <body> - <div id="wrapper"> - <div id="topbar"> - <div id="title"></div> - <div id="nav"> - </div> + <div id="topbar"> + <h1><a href="/">u r ded</a></h1> + <div id="nav"> </div> - + <form method="get" action="/search"> + <input type="search" name="q"> + <input type="submit" value="search"> + </form> + </div> + <div id="wrapper"> {% block main %}{% end %} </div> </body> 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 %} |