38 lines
1.6 KiB
HTML
38 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Visit{% endblock %}
|
|
{% block visit_active %}active{% endblock %}
|
|
{% block main %}
|
|
<div class="container-md mt-3">
|
|
<div class="row justify-content-around">
|
|
<div class="col-md-7 align-self-center">
|
|
The annual Mystery Weekend at the end of February is a great way
|
|
to explore Langley as many locals take on roles in the mystery and
|
|
businesses hand out clues. There are also prizes to be won for guessing
|
|
the murderer correctly.
|
|
</div>
|
|
<div class="col-md-5">
|
|
<figure class="figure container">
|
|
<img src="static/mysteryposter.jpg" alt="The poster for the 2024 Mystery Weekend" class="figure-img img-fluid visit-img">
|
|
<figcaption class="figure-caption">The poster for the 2024 Mystery Weekend.</figcaption>
|
|
</figure>
|
|
</div>
|
|
</div>
|
|
<div class="row justify-content-around">
|
|
<div class="col-md-5">
|
|
<figure class="figure container">
|
|
<img src="static/orcas.jpg" alt="Orcas resident near Whidbey Island" class="figure-img img-fluid visit-img">
|
|
<figcaption class="figure-caption">Orcas resident near Whidbey Island</figcaption>
|
|
</figure>
|
|
</div>
|
|
<div class="col-md-7 align-self-center">
|
|
The annual Welcome the Whales festival in April and the
|
|
<a href="https://www.orcanetwork.org/langley-whale-center">Langley Whale Center</a>
|
|
celebrate the cetaceans in the Puget Sound around Whidbey Island. These are
|
|
primarily orcas, but there is a small pod of grey whales inhabiting the area,
|
|
and humpbacks can sometimes be seen.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|