-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.html
More file actions
35 lines (35 loc) · 876 Bytes
/
Copy patharchive.html
File metadata and controls
35 lines (35 loc) · 876 Bytes
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
---
layout: page
title: Archive
permalink: /archive/
---
<!-- Slider Start -->
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>Archive</h1>
<p> <a href="{{ site.baseurl }}/blog">All Posts</a></p>
<p> <a href="{{ site.baseurl }}/posts">Posts by Date & Tag</a></p>
</div>
</div>
</div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
{% for category in site.categories %}
<h1>{{ category[0] }}</h3>
<ul>
{% for post in category[1] %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
{% endfor %}
</div>
</div>
</div>
</div>