mirror of
https://github.com/mgrove36/bbc-young-reporter.git
synced 2026-03-03 19:37:05 +00:00
25 lines
723 B
HTML
25 lines
723 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
<link href="/css/article-list.css" rel="stylesheet">
|
|
<link href="/css/home.css" rel="stylesheet">
|
|
<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">
|
|
{{ content }}
|
|
</div>
|
|
</main>
|
|
{% include footer.html %}
|
|
</div>
|
|
</body>
|
|
</html>
|