Mercurial Hosting > luan
view blog/src/index.html.luan @ 717:64f9f41cd1bf
Added tag 0.19 for changeset 28fedb32ab19
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 23 May 2016 19:19:28 -0600 |
parents | ca169567ce07 |
children | 1460d297e960 |
line wrap: on
line source
local Luan = require "luan:Luan.luan" local error = Luan.error local ipairs = Luan.ipairs or error() local Time = require "luan:Time.luan" local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Post = require "site:/lib/Post.luan" return function() local query = Http.request.parameter.query Io.stdout = Http.response.text_writer() %> <html> <head> <style> @import "/site.css"; </style> </head> <body> <h1><a href="/">Demo Blog App</a></h1> <form> <input name=query type=text value="<%= query or "" %>"> <input type=submit value=Search> </form> <div><a href="new">Make New Post</a></div> <% local posts = query and Post.search(query) or Post.get_all() for _, post in ipairs(posts) do %> <a name="p<%= post.id %>"> <h2><%= post.subject %></h2> <p><%= Time.format(post.date) %> - <a href="edit?post=<%= post.id %>">Edit</a></p> <pre><%= post.content %></pre> <hr> <% end %> </body> </html> <% end