comparison website/src/manual.html.luan @ 1324:1660136ac451

website - remove Shared.luan
author Franklin Schmidt <fschmidt@gmail.com>
date Thu, 07 Feb 2019 22:38:46 -0700
parents 3860ed4b8552
children
comparison
equal deleted inserted replaced
1323:3860ed4b8552 1324:1660136ac451
1 local Luan = require "luan:Luan.luan" 1 local Luan = require "luan:Luan.luan"
2 local Io = require "luan:Io.luan" 2 local Io = require "luan:Io.luan"
3 local Html = require "luan:Html.luan" 3 local Html = require "luan:Html.luan"
4 local Http = require "luan:http/Http.luan" 4 local Http = require "luan:http/Http.luan"
5 local Shared = require "site:/Shared.luan"
6 5
7 6
8 return function() 7 return function()
9 Io.stdout = Http.response.text_writer() 8 Io.stdout = Http.response.text_writer()
10 %> 9 %>
16 @import "/site.css"; 15 @import "/site.css";
17 </style> 16 </style>
18 </head> 17 </head>
19 <body> 18 <body>
20 19
21 <% Shared.header() %> 20 <div small><a href="/">Luan</a></div>
22 21
23 <h1>Luan Reference Manual</h1> 22 <h1>Luan Reference Manual</h1>
24 23
25 <p small> 24 <p small>
26 Original copyright &copy; 2015 Lua.org, PUC-Rio. 25 Original copyright &copy; 2015 Lua.org, PUC-Rio.