-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathblogmap.htm
More file actions
42 lines (30 loc) · 874 Bytes
/
blogmap.htm
File metadata and controls
42 lines (30 loc) · 874 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
36
37
38
39
40
41
42
---
layout: default
title: Blogmap
---
<div class="posts" style="padding-bottom: 40px;">
<h1 class="post-title">Blogmap</h1>
{% for post in site.posts %}
<span class="post-date" style="display:inline-block; width:100px; margin:auto; padding:0; font-size:10px; text-align: right;">{{ post.date | date_to_string }}</span>
<a href="{{ site.url }}{{ post.url }}"/>{{ post.title }}</a>
<br>
{% endfor %}
</div>
<!--
<id>{{ site.url }}{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
<div class="posts">
{% for post in paginator.posts %}
<div class="post">
<h1 class="post-title">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h1>
<span class="post-date">{{ post.date | date_to_string }}</span>
{{ post.content }}
</div>
{% endfor %}
</div>
-->