18 lines
487 B
HTML
18 lines
487 B
HTML
{% extends "layouts/base.html" %}
|
|
|
|
{% block title %}DDD - Spirit Boards{% endblock %}
|
|
|
|
{% block head %}
|
|
<style>{% include "components/ddd/style.css" %}</style>
|
|
<script>{% include "components/ddd/script.js" %}</script>
|
|
{% 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 %}
|