spells
Version:
360 Spells of 360 Colors
24 lines (22 loc) • 620 B
HTML
{% extends 'layout.html' %}
{% block content %}
<h1 class="title">360 Spells of 360 Colors</h1>
<div class="container clearfix">
<div
class="spell spell-large"
style="border-color: {{ spell.color }}"
title="{{ spell.name }}"
>
<i
class="spell_icon fa {{ spell.icon }}"
style="color: {% if spell.cost === 999 %}#333{% else %}{{ spell.color }}{% endif %}"
></i>
</div>
<div class="spell_name_container">
<h2 class="spell_name">{{ spell.name }}</h2>
</div>
</div>
<div class="container">
<pre class="spell_content"><code>{{spell|json(4)}}</code></pre>
</div>
{% endblock %}