-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAllPosts.html
More file actions
27 lines (24 loc) · 846 Bytes
/
Copy pathAllPosts.html
File metadata and controls
27 lines (24 loc) · 846 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
---
layout: default
title: All Posts
permalink: AllPosts.html
---
<div class="home">
<h1>Mainly three types of posts</h1>
<p>
<ul>
<li><a href="/tags/Webflowwalk.html">Webflowwalk</a> : result of my web navigation of the moment to spot things that seems interesting to look at</li>
<li><a href="/tags/Handrail.html">Handrail</a> : tips, hint on personnal usage of tool. Let me find it later</li>
<li><a href="/tags/Zoomon.html">Zoomon</a> : some investigation on specific subjects</li>
</ul>
</p>
<h1>Posts</h1>
<ul class="posts">
{% for post in site.posts %}
<li>
<span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>