Rename /_lib/navbar.jst to /_lib/sidebar.jst, reinstate /_lib/navbar.jst from NDCODE...
[nick_site.git] / index.html.jst
1 return async env => {
2   //let breadcrumbs = await _require('/_lib/breadcrumbs.jst')
3   let sidebar = await _require('/_lib/sidebar.jst')
4
5   await sidebar(
6     env,
7     // head
8     async _out => {},
9     // body
10     async _out => {
11       //await breadcrumbs(env, _out)
12
13       h4.mt-3 {'About this site'}
14
15       p {
16         'This is my personal site and contains my musings—which can be on topics such as politics and economics, building things, breadmaking or other recipes, film reviews, homeschooling my children, or whatever I am enthused about at any given time.'
17       }
18
19       h4 {'About Dr. Nick'}
20  
21       p {
22         'By profession I am an engineer and software/hardware/web developer, I publish on those technical topics '
23         a(href="https://www.ndcode.org") {'here'}
24         ' and so this site will contain items of a more personal or opinionated nature. I’ll also publish here any amateur efforts in other technical fields.'
25       }
26     },
27     // scripts
28     async _out => {}
29   )
30 }