mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
63 lines
2.5 KiB
HTML
63 lines
2.5 KiB
HTML
{% load static humanize avatar_tags %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{% if base_uri %}
|
|
<base href="{{ base_uri }}">
|
|
{% endif %}
|
|
<title>
|
|
{% block title %}Boost{% endblock %}
|
|
</title>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="description" content="{% block description %}{% endblock %}" />
|
|
<meta name="keywords" content="{% block keywords %}{% endblock %}" />
|
|
<meta name="author"
|
|
content="{% block author %}Boost C++ Libraries{% endblock %}" />
|
|
<link rel="icon" href="{% static 'img/favicon.svg' %}" type="image/svg+xml">
|
|
<link rel="icon" href="{% static 'img/favicon.ico' %}" type="image/x-icon" sizes="any">
|
|
<link rel="icon" href="{% static 'img/favicon.png' %}" type="image/png" sizes="48x48">
|
|
<link rel="shortcut icon" href="{% static 'img/favicon.ico' %}" type="image/x-icon">
|
|
<link rel="apple-touch-icon" href="{% static 'img/apple-touch-icon.png' %}">
|
|
<link rel="manifest" href="{% static 'img/site.webmanifest' %}">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
|
|
rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono&display=swap"
|
|
rel="stylesheet">
|
|
<link rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" />
|
|
<!-- TODO bring this local if we like it -->
|
|
<script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
|
|
<script src="{% static 'js/boost-gecko/main.C3hPHS6-.js' %}" defer></script>
|
|
{% block extra_head %}
|
|
<link href="{% static 'css/styles.css' %}" rel="stylesheet" />
|
|
{% endblock %}
|
|
{% block css %}
|
|
<style>
|
|
@page {
|
|
margin: 0;
|
|
size: 279.4mm 215.9mm;
|
|
}
|
|
|
|
.pdf-page {
|
|
background-size: cover;
|
|
padding: 10mm;
|
|
height: 215.9mm;
|
|
width: 279.4mm;
|
|
page-break-after: always;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
{% endblock css %}
|
|
</head>
|
|
<body>
|
|
{% block content %}
|
|
{% endblock content %}
|
|
</body>
|
|
</html>
|