mirror of
https://github.com/mgrove36/bbc-young-reporter.git
synced 2026-03-03 03:17:07 +00:00
54 lines
1.2 KiB
HTML
54 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
{% include head.html %}
|
|
|
|
<body class="is-preload">
|
|
|
|
{% include header.html %}
|
|
|
|
{% include cookie-notice.html %}
|
|
|
|
{% assign image-counter = 0 %}
|
|
|
|
<!-- Heading -->
|
|
<div id="heading">
|
|
<h1>{{ page_title }}</h1>
|
|
<p class="inner">{{ page_description }}</p>
|
|
</div>
|
|
|
|
<section class="heading-image-caption">
|
|
<div class="inner">
|
|
<p class="image-caption">{{ page.image-caption }} • © {{ page.copyright }}</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Main -->
|
|
<section id="main" class="wrapper">
|
|
<div class="inner">
|
|
<div class="content">
|
|
<b><p><time class="timeago" datetime="{{ page.date | date: '%Y-%m-%d' }}T{{ page.date | date: '%H:%M:%S' }}">{{ page.date | date: '%d/%m/%Y' }}</time> • by {{ page.authors }}</p></b>
|
|
<p class="article-description-mobile"><b>{{ page.description }}</b></p>
|
|
<p>{{ content }}</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer id="footer">
|
|
<div class="inner">
|
|
{% include footer.html %}
|
|
</div>
|
|
</footer>
|
|
|
|
{% include scripts.html %}
|
|
|
|
</body>
|
|
|
|
<style>
|
|
#heading {
|
|
background-image: linear-gradient(rgba(17, 17, 17, 0.25), rgba(17, 17, 17, 0.25)), url("/images{{ page.url | remove: '.html' | remove: '/articles' }}.jpg");
|
|
}
|
|
</style>
|
|
|
|
</html> |