11 lines
321 B
HTML
11 lines
321 B
HTML
{% extends 'base.template.html' -%}
|
|
|
|
{% block body %}
|
|
{% include "includes/what-it-does.html" %}
|
|
{% include "includes/security-notes.html" %}
|
|
{% include "includes/deprecation.html" %}
|
|
{% block overview %}{% endblock %}
|
|
{% include "includes/how-to-use.html" %}
|
|
{% block details %}{% endblock %}
|
|
{% endblock %}
|