2021-05-22 18:29:40 +00:00
< html >
< head >
2021-06-04 02:06:16 +00:00
< meta charset = "utf-8" >
2021-05-22 18:29:40 +00:00
< link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/mini.css/3.0.1/mini-default.min.css" >
2022-12-08 00:03:46 +00:00
< style type = "text/css" >
header { background: #476930; color: #ddd; }
header a.logo { color: #ddd; }
a.button { background: #476930; color: #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 >
2021-05-22 18:29:40 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< / head >
< body >
< header >
2022-12-07 06:11:21 +00:00
< a href = "#" class = "logo" > Chicago Parks< / a >
2021-05-22 18:29:40 +00:00
< a href = "/" class = "button" > Home< / a >
2022-12-07 06:11:21 +00:00
< a href = "/parks" class = "button" > Parks< / a >
2021-05-22 18:29:40 +00:00
< a href = "/about" class = "button" > About< / a >
< / header >
{% block base %}
{% endblock %}
2022-12-08 00:03:46 +00:00
< footer >
2021-05-22 18:29:40 +00:00
< 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 >