{% extends "base.html" %} {% block title %}Day Tours - LKgetaways{% endblock %} {% block inner_hero_background %}/static/images/day-tours-inner.avif{% endblock %} {% block inner_hero_title %}Day Tours{% endblock %} {% block inner_hero_subtitle %} {% endblock %} {% block content %}

Day Tours

{% for tour in tours %}
{{ tour.name }}
{{ tour.name }}

{{ tour.description[:100] }}...

Duration: {{ tour.duration }}

Price: ${{ tour.price }}

View Details
{% endfor %}
{% endblock %}