24 lines
618 B
HTML
24 lines
618 B
HTML
{% extends "layouts/base.html" %}
|
|
{% import "macros/kh2/macros.html" as macros %}
|
|
|
|
{% block title %}KH2 - Drops{% endblock %}
|
|
|
|
{% block head %}
|
|
<style>{% include "components/kh2/style.css" %}</style>
|
|
<script>{% include "components/kh2/script.js" %}</script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% include "components/kh2/only-tracked-filter.html" %}
|
|
<br />
|
|
{% include "components/kh2/kind-filters.html" %}
|
|
<br />
|
|
|
|
{% for category in drops %}
|
|
{% call macros::drop("shard") %}
|
|
{% call macros::drop("stone") %}
|
|
{% call macros::drop("gem") %}
|
|
{% call macros::drop("crystal") %}
|
|
{% endfor %}
|
|
{% endblock %}
|