2015-11-10 08:15:11 +00:00
|
|
|
{% 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 %}
|
2016-03-06 06:23:19 +00:00
|
|
|
{% block content_nav %}
|
|
|
|
{% autoescape false %}
|
|
|
|
{{ toc }}
|
|
|
|
{% endautoescape %}
|
|
|
|
{% endblock %}
|
2015-11-10 08:15:11 +00:00
|
|
|
{% block content %}
|
|
|
|
{% autoescape false %}
|
|
|
|
{{ body }}
|
|
|
|
{% endautoescape %}
|
|
|
|
{% endblock %}
|