home.html 288 B

123456789101112131415
  1. {% extends "base.html" %}
  2. {% block js %}
  3. <script src="/static/js/home.js"></script>
  4. {% end %}
  5. {% block css %}
  6. <link rel="stylesheet" type="text/css" href="/css/home.css" />
  7. {% end %}
  8. {% block main %}
  9. <table id="expensive">
  10. <caption>most expensive kills</caption>
  11. </table>
  12. {% end %}