mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
25 lines
1.6 KiB
HTML
25 lines
1.6 KiB
HTML
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block extra_head %}
|
|
<link href="{% static 'css/styles.css' %}" rel="stylesheet" />
|
|
<link rel="preload" data-modernizer="boost-legacy-docs-extra-head" href="{% static 'css/fonts.css' %}" rel="stylesheet" />
|
|
{% if not skip_use_boostlook %}
|
|
<link rel="preload" data-modernizer="boost-legacy-docs-extra-head" href="{% static 'css/boostlook.css' %}" rel="stylesheet" />
|
|
{% endif %}
|
|
{% 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.<style data-modernizer="boost-legacy-docs-extra-head">
|
|
img {
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
{% endcomment %}
|
|
{% endblock %}
|
|
|
|
{% block content_header %}
|
|
<div id="boost-legacy-docs-header">{{ block.super }}</div>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="boost-legacy-docs-body"></div>
|
|
{% endblock %}
|