{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Boost Libraries" %}{% endblock %} {% block description %}{% trans "Explore our comprehensive list of Boost C++ Libraries and discover tools for multithreading, image processing, testing, and more." %}{% endblock %} {% block content %}
{% include "libraries/includes/library_preferences.html" %} {% if object_list %} {# alert for non-current Boost versions #} {% include "libraries/includes/version_alert.html" %} {# Libraries list #}
{% for library_version in object_list %} {% include "libraries/_library_grid_list_item.html" %} {% endfor %}
{# end libraries list #} {% if page_obj.paginator %} {# pagination #}
{% if page_obj.has_previous %} << First < Previous {% endif %} {% if page_obj.has_next %} Next > Last >> {% endif %}
{# end pagination #} {% endif %} {% else %}
No library records available at this time. Check back later.
{% endif %}
{% endblock %}