1<!doctype html>
2<html lang="{{lang}}">
3<head>
4    <title>{{ title }}</title>
5    {{> head-partial }}
6</head>
7<body class="{{body-classes}}">
8{{>page-header-partial}}
9{{!-- no layout-container-class, the bar component takes care of it --}}
10<div id="page-core" class="position-relative">
11    <main id="main-content">
12        {{{ main-content-html }}}
13    </main>
14</div>
15{{>page-footer-partial}}
16{{!-- Railbar at the end to paint over the footer. It happens when a page without a lot of content is shown such as a slot --}}
17{{> railbar-partial }}
18{{>body-beforeend-partial}}
19</body>
20</html>
21