x
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<section class="view-component-preview-component ap-t-page--zero">
<div class="view-component-preview-component__container">
<div class="ap-l-section ap-c-timeline">
<div class="ap-l-container ap-c-timeline__content">
<h2>Project timeline 2022/2023</h2>
<ol class="ap-c-timeline__items">
<li>
<h3>Phase 1: Design</h3>
<h4>12 September – 28 October 2022</h4>
<p>Experiments that pass Phase 2 testing are awarded ‘flight status’ and are deployed on board the ISS.</p>
</li>
<li>
<h3>Phase 2: Create</h3>
<h4>12 September – 28 October 2022</h4>
<p>Experiments that pass Phase 2 testing are awarded ‘flight status’ and are deployed on board the ISS.</p>
</li>
</ol>
</div>
</div>
</div>
</section>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
c(
'site/timeline',
{
heading: 'Project timeline 2022/2023'
},
use_mz_theme: true
) do |component|
component.with_timeline_item do
component.render(
timeline_item(heading: 'Phase 1: Design')
)
end
component.with_timeline_item do
component.render(
timeline_item(heading: 'Phase 2: Create')
)
end
end