-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathindex.html
32 lines (29 loc) · 994 Bytes
/
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
---
layout: default
---
<div class="home">
<h1 class="page-heading">All Creatures</h1>
<p id="creatureSearch">Search by name: <input type="search" id="jetsSearch"></p>
<dl class="tag-list">
<dt>Challenge Rating:</dt>
{% for level in site.data.levels %}
<dd>
<a href="#{{level.tag}}">{{level.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" 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>