diff options
Diffstat (limited to 'web/templates')
-rw-r--r-- | web/templates/base.html | 1 | ||||
-rw-r--r-- | web/templates/corporation.html | 15 |
2 files changed, 15 insertions, 1 deletions
diff --git a/web/templates/base.html b/web/templates/base.html index ffbe99b..b05a4fa 100644 --- a/web/templates/base.html +++ b/web/templates/base.html @@ -2,6 +2,7 @@ <html> <head> <link rel="stylesheet" type="text/css" href="/css/base.css" /> + {% block css %}{% end %} <script src="//ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools.js"></script> <script> window.ykill = { diff --git a/web/templates/corporation.html b/web/templates/corporation.html index 66eceb2..8e8e7fa 100644 --- a/web/templates/corporation.html +++ b/web/templates/corporation.html @@ -4,8 +4,21 @@ <script src="/static/js/corporation.js"></script> {% end %} +{% block css %} + <link rel="stylesheet" type="text/css" href="/css/corporation.css" /> +{% end %} + {% block main %} -<div id="kills"></div> +<table id="kills"> + <tr> + <th class="time">time</th> + <th class="system">system</th> + <th class="victim_portrait"></th> + <th class="victim">victim</th> + <th class="killer_portrait"></th> + <th class="killer">killer(s)</th> + </tr> +</table> {% end %} |