39435-vm/core/templates/core/calendar_embed.html
Flatlogic Bot 693107e079 v1
2026-04-02 16:02:38 +00:00

22 lines
859 B
HTML

{% extends "base.html" %}
{% block title %}Embeddable Calendar Widget{% endblock %}
{% block content %}
<section class="embed-section">
<div class="container-fluid px-md-4 px-lg-5">
<div class="embed-shell-card">
<div class="embed-header d-flex flex-column flex-md-row justify-content-between gap-3 align-items-md-center">
<div>
<span class="eyebrow-pill">Embeddable widget</span>
<h1 class="section-title mb-2">Where to find us</h1>
<p class="section-copy mb-0">Tap a date to see the event name, time window, and event link.</p>
</div>
<a class="btn btn-ghost" href="{% url 'calendar_page' %}" target="_blank" rel="noopener">Open full page</a>
</div>
{% include "core/includes/calendar_widget.html" with calendar_variant="embed" %}
</div>
</div>
</section>
{% endblock %}