1<!doctype html>
2<html lang="{{lang}}">
3<head>
4    <title>{{ title }}</title>
5    {{> head-partial }}
6    {{> page-side-md-collapsable-head }}
7</head>
8<body>
9{{>page-header-partial}}
10<div id="page-core" class="{{ layout-container-class }} position-relative">
11    <aside id="page-side" class="d-print-none">
12        {{>page-side-md-collapsable }}
13    </aside>
14    <main id="page-main">
15        <div id="main-content">
16            {{!--No main-header as the index generally contains a cover image
17            If we add the main-header, we will then ends up with 2 images--}}
18            {{{ main-content-html }}}
19        </div>
20    </main>
21    {{> railbar-partial }}
22</div>
23
24{{>page-footer-partial}}
25{{>body-beforeend-partial}}
26</body>
27</html>
28