2025-06-25 02:15:27 +03:00
|
|
|
{% extends "layouts/base.html" %}
|
|
|
|
|
{% import "macros/common/macros.html" as macros %}
|
|
|
|
|
|
|
|
|
|
{% block title %}KH1 - Drops{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block head %}
|
2025-06-29 16:20:23 +03:00
|
|
|
<link rel="stylesheet" href="{{ crate::find_hash("/public/styles/kh1/drops.css") }}"></link>
|
2025-06-29 15:18:43 +03:00
|
|
|
<script
|
|
|
|
|
type="module"
|
|
|
|
|
src="{{ crate::find_hash("/public/scripts/kh1/drops.js") }}"
|
|
|
|
|
></script>
|
2025-06-25 02:15:27 +03:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2025-06-25 13:44:08 +03:00
|
|
|
{% include "components/common/only-tracked-filter.html" %}
|
2025-06-25 02:15:27 +03:00
|
|
|
<br />
|
2025-06-25 13:44:08 +03:00
|
|
|
{% include "components/common/kind-filters.html" %}
|
2025-06-25 02:15:27 +03:00
|
|
|
<br />
|
2025-06-25 13:44:08 +03:00
|
|
|
|
2025-06-26 01:08:13 +03:00
|
|
|
{% for drop in drops %}
|
2025-06-25 02:15:27 +03:00
|
|
|
{% call macros::drop("shard") %}
|
|
|
|
|
{% call macros::drop("stone") %}
|
|
|
|
|
{% call macros::drop("gem") %}
|
|
|
|
|
{% call macros::drop("crystal") %}
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endblock %}
|