{% extends "base.html" %} {% block title %}Destinations in {{ state.state_name }}{% endblock %} {% block content %}

Destinations in {{ state.state_name }}

{% for destination in destinations %}
{{ destination.description }}
{{ destination.destination_name }}

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

View Packages
{% endfor %}
{% endblock %}