39 lines
645 B
HTML
39 lines
645 B
HTML
{% extends "layouts/base.html" %}
|
|
{% import "macros/kh2/macros.html" as macros %}
|
|
|
|
{% block title %}KH2 - Drops{% endblock %}
|
|
|
|
{% block head %}
|
|
<style>
|
|
.category {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.enemies {
|
|
display: flex;
|
|
|
|
.drop {
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
margin-right: 8px;
|
|
|
|
span {
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% for category in drops %}
|
|
{% call macros::drop("shard") %}
|
|
{% call macros::drop("stone") %}
|
|
{% call macros::drop("gem") %}
|
|
{% call macros::drop("crystal") %}
|
|
{% endfor %}
|
|
{% endblock %}
|