-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcategories.html
29 lines (27 loc) · 877 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
---
title: Categories
permalink: "/categories/"
layout: page
description: We help you to reach your milestones and improve sales.
background: "/img/bg-about.jpg"
---
<div id="archives">
{% for category in site.categories %}
<div class="archive-group">
{% capture category_name %}{{ category | first }}{% endcapture %}
<div id="#{{ category_name | slugize }}"></div>
<p></p>
<h1 class="category-head">{{ category_name }}</h1>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<div class="card">
<a href="{{ site.baseurl }}{{ post.url }}" class="container">
<h4><strong>{{post.title}}</strong></h4>
<p><strong>{{ post.subtitle }}</strong></p>
<p>{{ post.excerpt | strip_html | truncatewords: 60 }}</p>
</a>
</div>
{% endfor %}
</div>
{% endfor %}
</div>