aboutsummaryrefslogtreecommitdiff
path: root/layouts/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/list.html')
-rw-r--r--layouts/list.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/list.html b/layouts/list.html
new file mode 100644
index 0000000..f0329d5
--- /dev/null
+++ b/layouts/list.html
@@ -0,0 +1,13 @@
+<extend template="main.html"/>
+<div id="main">
+ <h1 var="$page.title"></h1>
+
+ <p var="$page.content"></p>
+
+ <ul>
+ <li loop="$site.pages()">
+ <span class="date" var="$loop.it.date.format('02-Jan-2006')"></span>
+ <a href="$loop.it.permalink()" var="$loop.it.title"></a>
+ </li>
+ </ul>
+</div> \ No newline at end of file