11 lines
354 B
HTML
11 lines
354 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 %}
|
|
{% autoescape false %}
|
|
{{ body }}
|
|
{% endautoescape %}
|
|
{% endblock %}
|