-
Notifications
You must be signed in to change notification settings - Fork 73
/
index.html
44 lines (40 loc) · 1.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: default
---
<div class="home">
<h1 class="page-heading">All Spells</h1>
<p id="spellSearch">Search by name: <input type="search" id="jetsSearch"></p>
<dl class="tag-list">
<dt>Spell tier:</dt>
{% for level in site.data.levels %}
<dd>
<a href="#{{level.tag}}">{{level.name}}</a>
</dd>
{% endfor %}
</dl>
<dl class="schools-list">
<dt>Spell schools:</dt>
<dd>
<a class="spell-school selected" name="all">All</a>
</dd> |
{% for spellSchool in site.data.schools %}
<dd>
<a class="spell-school" name="{{ spellSchool.tag }}">{{ spellSchool.name }}</a>
</dd>
{% endfor %}
</dl>
{% for level in site.data.levels %}
<a id="{{level.tag}}"></a>
<h2 class="post-list-head jetsHide">{{level.title}}</h2>
<ul class="post-list jetsContent">
{% assign post_list = site.tags.[{{level.tag}}] | sort: 'title' %}
{% for post in post_list %}
<li>
<a class="post-link" tags="{{ post.tags | join " " }}" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
<a class="post-meta jetsHide" href="#top">Back to top ↑</a>
{% endfor %}
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>