mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
20 lines
347 B
HTML
20 lines
347 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% block content %}
|
|
<div>
|
|
{{ content|safe }}
|
|
</div>
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|