scrapple/templates/base.html
2022-12-07 18:05:58 -06:00

32 lines
1.3 KiB
HTML

<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.min.css">
<style type="text/css">
header { background: #476930; color: #ddd; }
header a.logo { color: #ddd; }
a.button { background: #476930; color: #ddd; }
a.button:hover { color: #476930; background: #ddd; }
footer { background: #476930; color: #ddd; }
.location-header { border: 1px solid #476930; border-radius: 3px; padding: 1em; }
.location-header-label { font-weight: bold; clear: both; }
.location-header-value { clear: both; }
.block-text { font-size: 120%; padding: 0 2em; }
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<a href="#" class="logo">Chicago Parks</a>
<a href="/" class="button">Home</a>
<a href="/parks" class="button">Parks</a>
<a href="/about" class="button">About</a>
</header>
{% block base %}
{% endblock %}
<footer>
<p>This site is created for the express purpose of <a href="/about" style="color: #fff;">demonstrating scraping techniques</a>. No information contained on this site is meant to be taken as useful in any way.</p>
</footer>
</body>
</html>