{% extends "base_template.html" %} {% block head %} {% endblock %} {% block body %}

Across the Country

in 90 Days:

A Travelogue of the Quixotic Trip I took on my Bicycle from Seattle to New York

{% if args.is_historical_period %} {% include 'introduction.html' %} {% else %}

>> YOU ARE VIEWING A REAL TIME HISTORIC REPLAY OF THIS 2018 TRIP <<

      Today is: {{ args.todays_date }} 

{% endif %}
{% for town in args.towns %} {% if town.visits %} {% else %} {% endif %}
{% if town.visits %}

{{town.city}}. x{{town.visits + 1}}

{% else %}

{{town.city}}.

{% endif %} {% if town.photos %} {% if town.photos|length == 1 %} {% else %} {% endif %} {% endif %} {% set city_html = 'stops/' + town.id + '.html' %} {% include city_html ignore missing %}
{% endfor %}
{% endblock %}