diff options
author | sanine <sanine.not@pm.me> | 2023-01-12 17:29:28 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-01-12 17:29:28 -0600 |
commit | f9f8a3206298363059601f6c389584426962e5e4 (patch) | |
tree | b0ed2fd393a1064c01aabdce548e9f84215a8c57 /data/index.md | |
parent | 655cd79991ec9204afb9f5acf52495c13af14d25 (diff) |
wrong branch :c
Diffstat (limited to 'data/index.md')
-rw-r--r-- | data/index.md | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/data/index.md b/data/index.md deleted file mode 100644 index c419830..0000000 --- a/data/index.md +++ /dev/null @@ -1,30 +0,0 @@ -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, -} |