-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
41 lines (31 loc) · 936 Bytes
/
index.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
30
31
32
33
34
35
36
37
38
39
40
41
---
title: Distrø
lang: en
tweets: 7
layout: default
unlocalized: true
---
<div id="posts">
{% for post in site.posts limit:3 %}
<div class="post">
<div class="header"><h2>
<a href="{{ post.url }}">{{ post.title | format_text }}</a>
<span class="author">by <b>{{ post.author | format_text }}</b></span>
<span class="categories">in <b>{{ post.categories | array_to_sentence_string }}</b></span>
<div class="date">{{ post.date | date:"%B %d, %Y" }}</div>
<div style="clear: both"></div>
</h2></div>
<div class="content">
{{ post.content }}
</div>
</div>
{% endfor %}
<div class="archive"><a href="/archive.html">Old posts archive</a></div>
</div>
<div id="twitter">
<a href="https://twitter.com/DistroOS" target="_blank">@DistroOS</a>
<div id="twitter_update_list">
Loading tweets...
</div>
</div>
<div style="clear: both;"></div>