2024-09-29 02:15:18 +03:00
|
|
|
{% extends "layouts/base.html" %}
|
|
|
|
|
|
2025-01-31 15:40:23 +02:00
|
|
|
{% block title %}DDD - Spirit Boards{% endblock %}
|
2024-09-29 02:15:18 +03:00
|
|
|
|
|
|
|
|
{% block head %}
|
2025-06-29 16:20:23 +03:00
|
|
|
<link rel="stylesheet" href="{{ crate::find_hash("/public/styles/ddd/boards.css") }}"></link>
|
2024-09-29 02:15:18 +03:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% for board in boards %}
|
2024-10-06 01:01:04 +03:00
|
|
|
<h1>{{+ board.spirit +}}</h1>
|
|
|
|
|
{% include "components/ddd/abilities.html" %}
|
|
|
|
|
{% include "components/ddd/dispositions.html" %}
|
|
|
|
|
{% include "components/ddd/board.html" %}
|
2024-09-29 02:15:18 +03:00
|
|
|
{% endfor %}
|
|
|
|
|
{% endblock %}
|