Files
bbc-young-reporter/_layouts/404.html
Matthew Grove 57533947c2 Update 404 page
Text is now center-aligned
2019-02-05 07:18:34 +00:00

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>