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 %}
		
			Day {{town.day}} thru Day {{town.day + town.visits}} -- {{town.date_}} until {{town.final_date}}
		
		{% else %}
		
			Day {{town.day}} -- {{town.date_}}
		
		{% endif %}
		
		{% if town.visits %}
			
{{town.city}}. x{{town.visits + 1}}
		{% else %}
			
{{town.city}}.
		{% endif %}
		{% if town.photos %}
			{% if town.photos|length == 1 %}
				
![]()
			{% else %}
				
					
					
						{% for i in range(town.photos|length) %}
							{% if i == 0 %}
								
							{% else %}
								
							{% endif %}
						{% endfor %}
					
					{% for i in range(town.photos|length) %}
						{% if i == 0 %}
							
								![]()
								{% if town.photos[i].comments %}
									
										{{ town.photos[i].comments }}
									 
								{% endif %}
							
 
						{% else %}
							
								![]()
								{% if town.photos[i].comments %}
									
										{{ town.photos[i].comments }}
									 
								{% endif %}
							
 
						{% endif %}
					{% endfor %}
					
 
			{% endif %}
		{% endif %}
		{% set city_html = 'stops/' + town.id + '.html' %}
		{% include city_html ignore missing %}
		
	{% endfor %}
 
 {% endblock %}