-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
18 lines (17 loc) · 918 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: default
---
{% for post in paginator.posts %}
<h1><a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">{{ post.title }}</a></h1>
<div class="postitem">
{% for cat in post.categories %}
<a href="/{{ cat | xml_escape | downcase }}/" class="no-decoration"><code class="language-plaintext highlighter-rouge">{{ cat | xml_escape }}</code></a>
{% endfor %}
{% for tag in post.tags %}
<code class="posttag"><a href="/tags/#{{ tag | replace: " " , "-" | downcase }}" class="no-decoration">{{ tag | xml_escape }}</a></code>
{% endfor %}
</div>
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time>
<br>
<a style="font-style: italic; text-shadow: none; text-align: center;">{{ post.content | strip_html | truncatewords:50 }}</a>
{% endfor %}