aboutsummaryrefslogtreecommitdiff
path: root/wwwroot/index.html
blob: ae3f1a70c9d87d74b2026d5f7a0660163de68ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## include "00_header.tmpl"
## if exists("blog_post")
<a href="{{ blog_post.filename }}">{{ blog_post.title }}</a><br>
    {{ blog_post.publishDate }} by {{ blog_post.author }}<br>
{{ blog_post.content }}
## endif
## if exists("blog_listing") and length("blog_listing") > 0
## for entry in blog_listing
    {{ loop.index1 }}
    &nbsp;<a href="{{ entry.filename }}">{{ entry.title }}</a> by {{ entry.author }}<br>
    &nbsp;&nbsp;&nbsp;&nbsp;published {{ entry.publishDate }}<br>
## if not loop.is_last
    <br>
## endif
## endfor
## endif
## include "01_footer.tmpl"