blob: 07ec4f207727f7e63a724ec20821598f6957f4d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 %}
<table id="expensive">
<caption>most expensive kills</caption>
</table>
{% end %}
|