khguide/templates/pages/kh2/drops.html

24 lines
618 B
HTML
Raw Permalink Normal View History

2025-02-08 13:35:55 +02:00
{% 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>
2025-02-08 13:35:55 +02:00
{% endblock %}
{% block content %}
2025-02-09 13:51:00 +02:00
{% include "components/kh2/only-tracked-filter.html" %}
<br />
{% include "components/kh2/kind-filters.html" %}
<br />
2025-02-08 13:35:55 +02:00
{% for category in drops %}
{% call macros::drop("shard") %}
{% call macros::drop("stone") %}
{% call macros::drop("gem") %}
{% call macros::drop("crystal") %}
{% endfor %}
{% endblock %}