{% extends "base.html" %} {% block title %}{% if category %}{{ category.name }} Tours{% else %}Our Tour Packages{% endif %} - LKgetaways{% endblock %} {% block inner_hero_background %}/static/images/tour-packages-inner.avif{% endblock %} {% block inner_hero_title %} Our {% if category %} {{ category.name }} Tours {% else %} {% if tours_by_category.keys()|length == 1 %} {{ tours_by_category.keys()|first.name }} Tours {% else %} Our Tour Packages {% endif %} {% endif %} {% endblock %} {% block inner_hero_subtitle %}Discover the wonders of Sri Lanka at your own pace, while experiencing the ultimate comfort and convenience.{% endblock %} {% block content %}
{% for category, tours in tours_by_category.items() %}
{% if tours %} {% for tour in tours %} {% include 'partials/tour_card.html' %} {% endfor %} {% else %}

No tours available for {{ category.name }}.

{% endif %}
{% else %}

No tours available.

{% endfor %}
{% endblock %}