| 1234567891011121314151617181920 | <html>	<head>		<title>{% block title %}My Bike Ride{% endblock %}</title>		<link rel="stylesheet" type="text/css" href="/static/style.css">		{% block head %}		{% endblock %}		<link rel="shortcut icon" href="https://img.icons8.com/ios/50/000000/bicycle.png">		<!-- Potted Plant icon by Icons8 -->	</head>	<body>		<div id="stops" class="leftnav"><a href="/stops">See the Stops.</a></div>		<div id="map" class="leftnav"><a href="/map">See the Map.</a></div>		<div id="faq" class="leftnav"><a href="/faq">See the FAQ.</a></div>		<div id="hls" class="leftnav"><a href="/highlights">Highlights.</a></div>		<div id="gloss" class="leftnav"><a href="/glossary">Glossary.</a></div>		<div id="rand" class="leftnav"><a href="/random">Random Stop.</a></div>		{% block body %}		{% endblock %}	</body></html>
 |