Make /_config/*.jst use ES6 superclass calls, fix failure to await the superclass...
[challenger_site.git] / conclusions.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 {'Conclusions'}
11
12       p {'Though STS-51L may have been a failure, it caused substantial improovement in the safety of the Space Shuttle. It highlighted many flaws in the Space Shuttle and NASA’s process for analysing the risk of launching. A presidential commission was started to review these things, and in the 32 month gap between the disaster and the next space shuttle launch, many things improved. Overall, the mission may not have achieved its goals, but it raised awareness of the risk of space exploration, and highlighted that a ‘near enough is good enough’ approach is not acceptable in this field.'}
13       img.center-block(src="/images/pres.jpg" height="600px") {}
14
15     },
16     // scripts
17     async _out => {}
18   )
19 }