-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategories.html
30 lines (29 loc) · 978 Bytes
/
categories.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
---
layout: page
title: Categories
excerpt: "Keeps taps on what the DataFox engineering team does to build the best CRM orchestration platform"
hero:
bg: tags
---
<div class="tags-expo">
<div class="tags-expo-list">
{% for tag in site.categories %}
<a href="#{{ tag[0] | slugify }}" class="post-tag mrm mbm nowrap"><i class="fa fa-tag"></i> {{ tag[0] }}</a>
{% endfor %}
</div>
<hr/>
<div class="tags-expo-section">
{% for tag in site.categories %}
<h2 id="{{ tag[0] | slugify }}">{{ tag[0] }}</h2>
<ul class="tags-expo-posts list-none">
{% for post in tag[1] %}
<li>
<a class="post-title" href="{{ site.baseurl }}{{ post.url }}">
{{ post.title }} · <small class="post-date">[{{ post.date | date: "%b %-d, %Y" }}]</small>
</a>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>