-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathblog.html
More file actions
19 lines (17 loc) · 707 Bytes
/
blog.html
File metadata and controls
19 lines (17 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{(header.html)}
<article class="content">
<h3 class="lined"><span class="date muted">{{ created }}</span></h3>
{* content *}
</article>
<div class="content also">
<hr class="featurette-divider">
<h6 class="also muted">Also read</h6>
<ul class="blog-post-list unstyled">
{% for date, ptitle in itersort(posts) do %}
{% if ptitle ~= title then %}
<li><span><a href="/{{ptitle}}">{{filename2title(ptitle)}}</a><span class="date"> {{ blogdate(date) }}</span></a></li>
{% end %}
{% end %}
<li><span><a href="/about">My lua micro web framework</a> <span class="date">10.11.2012</span></span></li>
</ul>
{(footer.html)}