0
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local ipairs = Luan.ipairs or error()
|
1
|
4 local parse = Luan.parse or error()
|
|
5 local Io = require "luan:Io.luan"
|
|
6 local uri = Io.uri or error()
|
0
|
7
|
|
8
|
|
9 local Shared = {}
|
|
10
|
|
11 function Shared.head()
|
|
12 %>
|
|
13 <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
14 <style>
|
|
15 @import "/site.css";
|
|
16 </style>
|
|
17 <%
|
|
18 end
|
|
19
|
|
20 local function header(crumbs)
|
|
21 %>
|
|
22 <div header>
|
|
23 <a href="/">Reactionary Chat</a>
|
|
24 <% for _, crumb in ipairs(crumbs or {}) do %>
|
|
25 / <%=crumb%>
|
|
26 <% end %>
|
|
27 </div>
|
|
28 <%
|
|
29 end
|
|
30 Shared.header = header
|
|
31
|
|
32 function Shared.private_header()
|
|
33 header{
|
|
34 [[<a href="/private/">private</a>]]
|
|
35 [[<a href="/private/tools/">tools</a>]]
|
|
36 }
|
|
37 end
|
|
38
|
1
|
39 local config_file = uri("site:/private/local/config.luano")
|
|
40 Shared.config_file = config_file
|
|
41
|
|
42 do
|
|
43 if config_file.exists() then
|
|
44 Shared.config = parse( config_file.read_text() )
|
|
45 else
|
|
46 Shared.config = {
|
|
47 mail_server = {
|
|
48 host = "smtpcorp.com"
|
|
49 port = 465
|
|
50 username = "xxx"
|
|
51 password = "xxx"
|
|
52 }
|
|
53 }
|
|
54 end
|
|
55 end
|
|
56
|
0
|
57 return Shared
|