Upgrade to nick_site commit f981fa57, adds alerts and inactive sidebar option
[ndcode_site.git] / projects / jst / index.html.jst
1 return async env => {
2   let breadcrumbs = await _require('/_lib/breadcrumbs.jst')
3   let navbar = await _require('/_lib/navbar.jst')
4
5   await navbar(
6     env,
7     // head
8     async _out => {},
9     // body
10     async _out => {
11       await breadcrumbs(env, _out)
12
13       p {
14         i {'Under construction.'}
15       }
16     },
17     // scripts
18     async _out => {}
19   )
20 }