khguide/templates/pages/kh2/drops.html

27 lines
701 B
HTML
Raw Normal View History

2025-02-08 13:35:55 +02:00
{% extends "layouts/base.html" %}
{% import "macros/common/macros.html" as macros %}
2025-02-08 13:35:55 +02:00
{% block title %}KH2 - Drops{% endblock %}
{% block head %}
<link rel="stylesheet" href="{{ crate::find_hash("/public/styles/kh2/drops.css") }}"></link>
<script
type="module"
src="{{ crate::find_hash("/public/scripts/kh2/drops.js") }}"
></script>
2025-02-08 13:35:55 +02:00
{% endblock %}
{% block content %}
{% include "components/common/only-tracked-filter.html" %}
2025-02-09 13:51:00 +02:00
<br />
{% include "components/common/kind-filters.html" %}
2025-02-09 13:51:00 +02:00
<br />
2025-02-08 13:35:55 +02:00
{% for drop in drops %}
2025-02-08 13:35:55 +02:00
{% call macros::drop("shard") %}
{% call macros::drop("stone") %}
{% call macros::drop("gem") %}
{% call macros::drop("crystal") %}
{% endfor %}
{% endblock %}