mirror of
https://github.com/mgrove36/bbc-young-reporter.git
synced 2026-03-03 11:27:06 +00:00
31 lines
1.2 KiB
HTML
31 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{% include head.html %}
|
|
{% include article-page-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">
|
|
{% include article-heading.html %}
|
|
<div class="article-content">
|
|
<iframe class="video" src="https://www.youtube.com/embed/{{ page.video-id }}" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
|
|
<figcaption class="mdc-typography--caption-text">{{ page.video-caption }}</figcaption>
|
|
{{ content }}
|
|
</div>
|
|
<div class="splitter"></div>
|
|
</div>
|
|
</main>
|
|
{% include footer.html %}
|
|
{% include top-scroll-button.html %}
|
|
</div>
|
|
</body>
|
|
</html>
|