Mercurial Hosting > luan
view website/src/docs.html.luan @ 1173:bdbd1d12c1f2
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 11 Feb 2018 16:31:02 -0700 |
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