Make /_config/*.jst use ES6 superclass calls, fix failure to await the superclass...
[challenger_site.git] / references.html.jst
1 return async env => {
2   let navbar = await _require('/navbar.jst')
3
4   await navbar(
5     env,
6     // head
7     async _out => {},
8     // body
9     async _out => {
10       h1 {'References'}
11
12       table.table {
13         tr {
14           th {'Author/Organisation'}
15           th {'Date Published'}
16           th {'Title'}
17           th {'Website'}
18           th {'Date Visited'}
19           th {'URL'}
20         }
21         tr {
22           td {'NASA'}
23           td {'2005'}
24           td {'NASA - STS-51L Mission Profile'}
25           td {'NASA Website'}
26           td {'6/6/20'}
27           td {'https://www.nasa.gov/mission_pages/shuttle/shuttlemissions/archives/sts-51L.html'}
28         }
29         tr {
30           td {'NASA'}
31           td {'2003'}
32           td {'The Aeronautics of the Space Shuttle'}
33           td {'NASA Website'}
34           td {'12/6/20'}
35           td {'https://www.nasa.gov/audience/forstudents/9-12/features/F_Aeronautics_of_Space_Shuttle.html'}
36         }
37         tr {
38           td {'NASA'}
39           td {'2019'}
40           td {'50 Years Ago: After Apollo, What? Space Task Group Report to President Nixon'}
41           td {'NASA Website'}
42           td {'14/6/20'}
43           td {'https://www.nasa.gov/feature/50-years-ago-after-apollo-what-space-task-group-report-to-president-nixon'}
44         }
45         tr {
46           td {'Bret Copeland'}
47           td {'2016'}
48           td {'How to land the Space SHuttle... from Space'}
49           td {'Youtube'}
50           td {'4/6/20'}
51           td {'https://www.youtube.com/watch?v=Jb4prVsXkZU'}
52         }
53         tr {
54           td {'American Society of Civil Engineers'}
55           td {'2015'}
56           td {'Space Shuttle Challenger Disaster: Ethics Case Study No. 1'}
57           td {'Youtube'}
58           td {'7/6/20'}
59           td {'https://www.youtube.com/watch?v=QbtY_Wl-hYI'}
60         }
61         tr {
62           td {'Wikipedia Contributors'}
63           td {'Last Edited 3/6/20'}
64           td {'Space Shuttle Challenger Disaster'}
65           td {'Wikipedia'}
66           td {'5/6/20'}
67           td {'https://en.wikipedia.org/wiki/Space_Shuttle_Challenger_disaster'}
68         }
69         tr {
70           td {'Wikipedia Contributors'}
71           td {'Last Edited 9/6/20'}
72           td {'Astronaut ranks and positions'}
73           td {'Wikipedia'}
74           td {'9/6/20'}
75           td {'https://en.wikipedia.org/wiki/Astronaut_ranks_and_positions#:~:text=Space%20Shuttle,Shuttle%20with%20assistance%20from%20Pilot.'}
76         }
77         tr {
78           td {'Editors of Encyclopedia Britannica'}
79           td {'2009'}
80           td {'Challenger Disaster'}
81           td {'Encyclopedia Britannica'}
82           td {'11/6/20'}
83           td {'https://www.britannica.com/event/Challenger-disaster'}
84         }
85
86       }
87     },
88     // scripts
89     async _out => {}
90   )
91 }