{% extends "base.html" %} {% block title %}Biking Adventures - Blake Ridgway{% endblock %} {% block content %}

Biking Adventures

Exploring the world on two wheels as an ultra endurance cyclist - powered by real-time Strava data!

Recent Adventures

{% if recent_activities %} {% for activity in recent_activities %}
{{ activity.name }}

Latest ride from Strava - automatically synced!

{{ activity.date }}
{{ activity.distance }}
Miles
{{ activity.elevation }}
Feet
{{ activity.time }}
Duration
{{ activity.avg_speed or 'N/A' }}
Avg MPH
{% endfor %} {% else %}
Loading Strava data...
{% endif %}

2025 Cycling Performance

{% if ytd_stats %}

{{ ytd_stats.distance }}

Miles This Year

{{ ytd_stats.count }}

Rides Completed

{{ ytd_stats.elevation }}

Feet Climbed

{{ ytd_stats.time }}

Hours Riding

{% else %}
Unable to load Strava stats. Please check your API connection.
{% endif %}
My Bikes
Road Bike

Giant TCR Advanced 2

Carbon Frame Aero Racing
Gravel Bike

Canyon Endurace CF SL 8

Endurance All-Road Adventure
Cycling Goals 2025
Annual Distance 5,000 mi
Elevation Gain 250,000 ft
Total Rides 200 rides
Ultra Events 3 events
Data Source

Powered by Strava API

Real-time cycling data automatically synced from my Strava account.

Last updated: Just now

{% endblock %}