mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 17:42:08 +00:00
27 lines
697 B
HTML
27 lines
697 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block extra_head %}
|
|
<link data-modernizer="boost-legacy-docs-extra-head" href="{% static 'css/docsstyles.css' %}" rel="stylesheet" />
|
|
{% comment %}
|
|
These style tweaks ensure that legacy doc pages are rendered decently.
|
|
Specifically, the <img> tag is heavily used in nav bar for tutorial navigation.
|
|
{% endcomment %}
|
|
<style data-modernizer="boost-legacy-docs-extra-head">
|
|
img {
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content_header %}
|
|
<div id="boost-legacy-docs-header">
|
|
{{ block.super }}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="boost-legacy-docs-body">
|
|
</div>
|
|
{% endblock %}
|