17 lines
466 B
HTML
17 lines
466 B
HTML
{% extends "layouts/base.html" %}
|
|
|
|
{% block title %}DDD - Spirit Boards{% endblock %}
|
|
|
|
{% block head %}
|
|
<link rel="stylesheet" href="{{ crate::find_hash("/public/styles/ddd/boards.css") }}"></link>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for board in boards %}
|
|
<h1>{{+ board.spirit +}}</h1>
|
|
{% include "components/ddd/abilities.html" %}
|
|
{% include "components/ddd/dispositions.html" %}
|
|
{% include "components/ddd/board.html" %}
|
|
{% endfor %}
|
|
{% endblock %}
|