templates/public/base.html (36 lines of code) (raw):
<!DOCTYPE html lang="en">
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta
http-equiv="X-UA-Compatible"
content="IE=Edge,chrome=1 text/html; charset=UTF-8"
/>
<link
rel="icon"
type="image/png"
href="https://www.theguardian.com/favicon.ico"
/>
<link rel="stylesheet" type="text/css" href="{{ '%sstatic/materialize.min.css' %path }}" />
<link rel="stylesheet" type="text/css" href="{{ '%sstatic/public.css' %path }}" />
</head>
<body>
<header role="banner" class="header row">
<div class="header__wrapper">
<div class="header__gu-logo">
{% include 'guardian-logo.html' %}
</div>
</div>
</header>
</body>
{% block content %}{% endblock %}
<footer class="page-footer row">
<div class="container gu-padding">
<div class="gu-copyright">
© 2019 Guardian News and Media Limited or its
affiliated companies. All rights reserved.
</div>
</div>
</footer>
</html>