mirror of
https://github.com/mgrove36/bbc-young-reporter.git
synced 2026-03-03 03:17:07 +00:00
29 lines
811 B
HTML
29 lines
811 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<body>
|
|
<!-- cookie notice is included automatically -->
|
|
{% include cookie-notice.html %}
|
|
|
|
<!-- content of navbar is included via jQuery -->
|
|
{% include navbar.html %}
|
|
|
|
<div class="mdc-drawer-app-content">
|
|
{% include top-app-bar.html %}
|
|
|
|
<main class="main-content" id="main-content">
|
|
<div class="mdc-top-app-bar--short-fixed-adjust">
|
|
<h2 class="mdc-typography--headline2">{{ page.title }}</h2>
|
|
{{ content }}
|
|
</div>
|
|
</main>
|
|
{% include footer.html %}
|
|
</div>
|
|
</body>
|
|
<style>
|
|
.mdc-top-app-bar--short-fixed-adjust {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</html>
|