-
Notifications
You must be signed in to change notification settings - Fork 8
/
global.html
28 lines (27 loc) · 917 Bytes
/
global.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
---
layout: default
title: Global codes
permalink: /global/
---
<div class="container-fluid mt-4">
<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 %}
{% unless cc.global-glyph-code %}
{% continue %}
{% endunless %}
{% if cc.layout != 'cc' %}
{% continue %}
{% endif %}
{% if cc.exclude %}
{% continue %}
{% endif %}
{% include cc-card.html %}
{% endfor %}
</div>
</div>