view examples/blog/src/index.html.luan @ 1217:4c2972f4d862

.html in examples
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 20 Mar 2018 15:43:16 -0600
parents 5dbb552075ff
children bc40bc9aab3a
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 Parsers = require "luan:Parsers.luan"
local bbcode_to_html = Parsers.bbcode_to_html or error()
local Html = require "luan:Html.luan"
local html_encode = Html.encode or error()
local Http = require "luan:http/Http.luan"
local Post = require "site:/lib/Post.luan"


return function()
	local query = Http.request.parameters.query

	Io.stdout = Http.response.text_writer()
%>
<!doctype html>
<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.html">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.html?post=<%= post.id %>">Edit</a></p>
			<pre><%= bbcode_to_html(html_encode(post.content)) %></pre>
			<hr>
			<%
		end
		%>

	</body>
</html>
<%
end