Mercurial Hosting > luan
diff website/src/pil.html.luan @ 562:7cc9d4a53d3b
remove SimplyHTML from documentation
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Wed, 24 Jun 2015 14:20:00 -0600 |
parents | 7bc63886d4f2 |
children | ca169567ce07 |
line wrap: on
line diff
--- a/website/src/pil.html.luan Tue Jun 23 16:45:16 2015 -0600 +++ b/website/src/pil.html.luan Wed Jun 24 14:20:00 2015 -0600 @@ -1,5 +1,4 @@ local Io = require "luan:Io" -local Html = require "luan:Html" local Http = require "luan:http/Http" local Shared = require "site:/Shared" @@ -9,18 +8,16 @@ %> <html> <head> - <% Html.simply_html_head() %> <title>Programming in Lua</title> + <style> + @import "/site.css"; + </style> </head> <body> - <div container> - <% Shared.header() %> - <h1 margin-bottom="1em">Programming in Lua</h1> + <% Shared.header() %> + <h1>Programming in Lua</h1> - <p>Even though <a href="http://www.lua.org/pil/">Programming in Lua</a> is about Lua, not Luan, it still serves as an excellent introduction to Luan since the languages are so close.</p> - - </div> - <% Html.simply_html_body_bottom() %> + <p>Even though <a href="http://www.lua.org/pil/">Programming in Lua</a> is about Lua, not Luan, it still serves as an excellent introduction to Luan since the languages are so close.</p> </body> </html> <%