mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 05:32:08 +00:00
19 lines
447 B
HTML
19 lines
447 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block title %}{{ frontmatter.title }}{% endblock %}
|
|
{% block description %}{{ frontmatter.description }}{% endblock %}
|
|
{% block keywords %}{{ frontmatter.keywords }}{% endblock %}
|
|
{% block author %}{{ frontmatter.author }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="py-0 px-3 mb-3 md:py-6 md:px-0">
|
|
|
|
<div class="mb-6 md:mb-0">
|
|
{{ content|safe }}
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|