mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
18 lines
682 B
HTML
18 lines
682 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Boost Calendar
|
|
{% endblock %}
|
|
|
|
{% block content_wrapper %}
|
|
<div class="flex justify-center items-center mb-4 mt-8">
|
|
<h1 class="text-3xl">Boost Calendar</h1>
|
|
</div>
|
|
<div class="container px-4 my-4 mx-auto">
|
|
<div class="section-body">
|
|
<p>Below is a community maintained calendar of Boost related events. The release managers try to keep the release related portion of the calendar up to date.</p>
|
|
<iframe src="https://www.google.com/calendar/embed?src={{ boost_calendar }}&ctz=America/Chicago" class="c1" width="100%" height="600" frameborder="0" scrolling="no"></iframe>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|