{% extends "base.html" %} {% block title %}Motorcycle Adventures Romania{% endblock %} {% block head %} {% endblock %} {% block content %}

🏍️ Motorcycle Adventures Romania

Discover epic motorcycle routes, share your adventures, and connect with fellow riders across Romania's stunning landscapes.

πŸ—ΊοΈ Interactive Route Map

{{ posts_with_routes|length }} routes discovered

Click on any route to view the adventure story β€’ Routes are updated live as new trips are shared

{% if current_user.is_authenticated %} Share Your Adventure Logout {% else %} Join Community Login {% endif %}

Latest Adventures

Showing {{ posts.items|length }} of {{ posts.total }} stories
{% if posts.items %}
{% for post in posts.items %}
{% if post.images %}
{{ post.title }}
{% endif %}
{{ post.author.nickname[0].upper() }}

{{ post.author.nickname }}

{{ post.created_at.strftime('%b %d, %Y') }}

{{ post.title }}

{% if post.subtitle %}

{{ post.subtitle }}

{% endif %}

{{ post.content[:120] }}{% if post.content|length > 120 %}...{% endif %}

{% if post.gpx_files %} GPX {% endif %} {{ post.comments.count() }} {{ post.likes.count() }}
Read More β†’
{% endfor %}
{% if posts.pages > 1 %}
{% endif %} {% else %}

No Adventures Yet

Be the first to share your motorcycle adventure and map your route across Romania!

{% if current_user.is_authenticated %} Share Your First Adventure {% else %} Join to Share Adventures {% endif %}
{% endif %}
{% endblock %}