
This patch cleans up various parts of the security role docs: * Updates README files * Uses jinja2 includes rather than sphinx includes (faster builds) * Adds sphinx refs for each STIG control and implementation status * Adds ToC's to pages that didn't have them * Updated getting started and special notes guide * Makes deviations more clear Change-Id: I1eed2705c64a857bd94577dbe735f2516ca87732
25 lines
554 B
Django/Jinja
25 lines
554 B
Django/Jinja
{% set page_title = "Review All STIG Controls" %}
|
|
{{ "=" * page_title | length }}
|
|
{{ page_title }}
|
|
{{ "=" * page_title | length }}
|
|
|
|
Navigating the list
|
|
===================
|
|
|
|
Use your browser's search function (usually CTRL-f or ⌘-f) to find the
|
|
security configuration in the full list shown here. You can search for STIG
|
|
ID numbers, such as ``V-38463``, or for particular topics, like ``audit``.
|
|
|
|
----
|
|
|
|
{% for stig_id in stig_ids | sort %}
|
|
.. _stig-{{ stig_id }}:
|
|
|
|
{% include "template_doc.j2" %}
|
|
|
|
{% if not loop.last %}
|
|
----
|
|
{% endif %}
|
|
|
|
{% endfor %}
|