-
Notifications
You must be signed in to change notification settings - Fork 8
/
dex.html
49 lines (49 loc) · 2.21 KB
/
dex.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
45
46
47
48
49
---
layout: default
title: Glyphdex
permalink: /dex/
---
<div class="container-fluid mt-4">{% assign isoDate = site.time | date: '%Y-%m-%dT%H:%M:%SZ' %}
<h5>Still in progress, things might change</h5>
<p>Use this page to keep track of what glyphs you already have, currently in progress,
will make it work more like <a target="_blank" href="https://wf.xuerian.net/#wishlist">wf.xuerian.net</a>.
</p>
<p>To "save" your list you need to copy / bookmark the url after you check all the glyphs
you already have and just keep updating that.
</p>
<input class="form-control" id="filter" type="text" placeholder="Search...">
<hr>
<div class="row justify-content-center cc-list" id="partner-list">
{% assign collection = site.collections | where: 'label', 'wf-partner' | first %}
{% for cc in collection.docs %}
{% if cc.title == 'Template' %}
{% continue %}
{% endif %}
{% if cc.layout != 'cc' %}
{% continue %}
{% endif %}
{% unless cc.glyphwave %}
{% continue %}
{% endunless %}
{% if cc.exclude %}
{% continue %}
{% endif %}
<div>
<div class="card text-white">
<img class="card-img glyph-bg lazyload" src="{{ site.baseDataUrl }}/bg.png" data-src="{{ site.baseDataUrl }}/latest/{{ cc.glyphurl }}?s" alt="{{ cc.glyphname }}">
<div class="card-img-overlay">
<div class="float-right">
<label class="container" style="padding: 0.5em;">
<input type="checkbox" data-ccid="{{ cc.ccid }}">
<span class="checkmark"></span>
</label>
</div>
<div class="card-footer">
<span>{{ cc.glyphname }}</span>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>