Mercurial Hosting > luan
view website/src/docs.html.luan @ 947:64f3d8dae31d
simplify SelectChannelEndPoint
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 11 Oct 2016 21:33:40 -0600 |
parents | ca169567ce07 |
children | 5dbb552075ff |
line wrap: on
line source
local Io = require "luan:Io.luan" local Http = require "luan:http/Http.luan" local Shared = require "site:/Shared.luan" return function() Io.stdout = Http.response.text_writer() %> <html> <head> <title>Luan Documentation</title> <style> @import "/site.css"; div[link] { margin: 0.5em 0; } </style> </head> <body> <% Shared.header() %> <h1>Luan Documentation</h1> <div link><a href="tutorial.html">Tutorial</a></div> <div link><a href="pil.html">Programming in Lua (book)</a></div> <div link><a href="manual.html">Reference Manual</a></div> <div link><a href="diff.html">How Luan differs from Lua</a></div> </body> </html> <% end