Files
website-v2/templates/boost_development.html
2024-12-23 16:44:06 -05:00

34 lines
2.3 KiB
HTML

{% extends "base.html" %}
{% block title %}Boost Development{% endblock %}
{% block content_wrapper %}
<div class="px-4 mb-8 w-full">
<div class="flex justify-start items-center my-4">
<h1 class="text-3xl">Development</h1>
</div>
<div class="mb-6 p-6 w-full bg-white md:rounded-lg md:shadow-lg dark:text-white text-slate dark:bg-charcoal dark:bg-neutral-700">
<p class="py-2">Boost sources are on <a href="https://github.com/boostorg" class="text-sky-600 dark:text-sky-300 hover:text-orange dark:hover:text-orange">GitHub</a>.</p>
<p class="py-2">
Boost developers constitute a wide array of people throughout much of the world.
Over the years much work has gone into the quantity and quality of the C++ libraries
and tools that make up Boost. There are many ways to become part of the Boost developer
community, all starting with getting involved in the development discussion. But if
you are looking for an "easy" place to get your feet wet is to volunteer
<a href="https://www.boost.org/development/testing.html" class="text-sky-600 dark:text-sky-300 hover:text-orange dark:hover:text-orange">testing</a>
resources. The wonderful people at
<a href="http://www.openhub.net/" class="text-sky-600 dark:text-sky-300 hover:text-orange dark:hover:text-orange">Black Duck Open Hub</a>
provide a peek into what goes into Boost:
</p>
<div class="flex-row md:flex justify-around items-center my-4">
<div><iframe class="mx-auto" src="https://openhub.net/p/boost/widgets/project_languages" style="height: 193px; width: 350px; border: none;" scrolling="no"></iframe></div>
<div><iframe class="mx-auto" src="https://openhub.net/p/boost/widgets/project_cocomo" style="height: 190px; width: 350px; border: none;" scrolling="no"></iframe></div>
</div>
</div>
<div class="p-6 bg-white md:rounded-lg md:shadow-lg dark:text-white text-slate dark:bg-charcoal dark:bg-neutral-700">
<p class="py-2">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 }}&amp;ctz=America/Chicago" class="c1" width="100%" height="600" frameborder="0" scrolling="no"></iframe>
</div>
</div>
{% endblock %}