Make /_config/*.jst use ES6 superclass calls, fix failure to await the superclass...
[challenger_site.git] / space_shuttle_origins.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 {'Space Shuttle Origins'}
11
12       p {'After WWII, the Joint Intelligence Objectives Agency was established. It carried out Operation Paperclip, which was a secret US program to relocate German scientists, technicians and engineers to the United States to be employed by the Government. One of these people was rocket scientist Wernher von Braun, who had been developing ballistic missiles for Hitler. His plan for practical, human space exploration was basically: a reusable spacecraft, a manned space station built using the spacecraft, using the space station as a base for missions to the Moon and eventually Mars. This 1950s vision was called the von Braun Paradigm, and was very influential in America’s space program.'}
13
14       img.center-block(src="/images/vtwo.jpg" height="400px") {}
15
16       p {'This plan was all well and good, but the Apollo missions became the number one priority. NASA fell back on older technologies to get a man to the moon as quickly as possible, however after Apollo 11, this goal was complete. As NASA continued with some Apollo missions, President Nixon ordered a report to be made from the Space Task Group about the future of the American space program, which he received on September 15 1969. The report was highly ambitious and overall recommended NASA follow the von Braun Paradigm. There were three options:'}
17
18       ul {
19         li {
20           'Option 1'
21           ul {
22             li {'NASA’s funding more than doubled by 1980'}
23             li {'Space shuttle'}
24             li {'50-person space station (orbiting Earth)'}
25             li {'Lunar base'}
26             li {'Lunar space station'}
27             li {'Manned mission to Mars in the mid 1980s.'}
28           }
29         }
30         li {
31           'Option 2'
32           ul {
33             li {'Similar funding for NASA which would gradually grow'}
34             li {'Space shuttle'}
35             li {'Space station (orbiting Earth)'}
36             li {'Manned Mars mission by 1986'}
37             li {'Overall smaller unmanned research than Option 1'}
38           }
39         }
40         li {
41         'Option 3'
42           ul {
43             li {'Very similar to Option 2, though no timeline or guarantee of manned Mars mission'}
44           }
45         }
46       }
47       img.center-block(src="/images/iss.jpg" height="400px") {}
48       p {'In the end, Nixon only gave funding to NASA to develop the space shuttle, officially the Space Transportation System.'}
49     },
50     // scripts
51     async _out => {}
52   )
53 }