16 lines
446 B
HTML
16 lines
446 B
HTML
{% extends "global/layout.html" %}
|
|
{%- from "global/macros" import render_categories with context -%}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block lastupdated %}{{ meta.lastupdated }}{% endblock %}
|
|
{% block accuratefor %}{{ meta.accuratefor }}{% endblock %}
|
|
{% block content_nav %}
|
|
{% autoescape false %}
|
|
{{ toc }}
|
|
{% endautoescape %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% autoescape false %}
|
|
{{ body }}
|
|
{% endautoescape %}
|
|
{% endblock %}
|