24 lines
654 B
HTML
24 lines
654 B
HTML
{% extends "layouts/base.html" %}
|
|
{% import "macros/common/macros.html" as macros %}
|
|
|
|
{% block title %}KH1 - Drops{% endblock %}
|
|
|
|
{% block head %}
|
|
<style>{% include "components/kh2/style.css" %}</style>
|
|
<script type="module" src="/public/scripts/kh1.js?v={{Module::get_js_hash()}}"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "components/common/only-tracked-filter.html" %}
|
|
<br />
|
|
{% include "components/common/kind-filters.html" %}
|
|
<br />
|
|
|
|
{% for drop in drops %}
|
|
{% call macros::drop("shard") %}
|
|
{% call macros::drop("stone") %}
|
|
{% call macros::drop("gem") %}
|
|
{% call macros::drop("crystal") %}
|
|
{% endfor %}
|
|
{% endblock %}
|