summaryrefslogtreecommitdiff
path: root/data/index.lua
diff options
context:
space:
mode:
Diffstat (limited to 'data/index.lua')
-rw-r--r--data/index.lua30
1 files changed, 30 insertions, 0 deletions
diff --git a/data/index.lua b/data/index.lua
new file mode 100644
index 0000000..c419830
--- /dev/null
+++ b/data/index.lua
@@ -0,0 +1,30 @@
+local tk = require 'toolkit'
+
+function get_blog_links()
+ local links = '<ul>\n'
+ local pages = tk.pages('blog/')
+ table.sort(pages, function(a, b) return a.date > b.date end)
+ for _, page in pairs(pages) do
+ links = links ..
+ string.format('<li><a href="%s">[%s] %s</a></li>\n', page.href, page.date, page.title)
+ end
+ return links..'</ul>'
+end
+
+
+local md = string.format([[
+home
+====
+
+welcome to sanine.net!
+
+%s
+
+[subscribe via rss](/rss.xml)
+]], get_blog_links())
+
+return {
+ title='home',
+ layout='base',
+ markdown=md,
+}