20 lines
422 B
Django/Jinja
20 lines
422 B
Django/Jinja
<h3 class="fs-3">Apache</h3>
|
|
|
|
{% if data['apache']['audit'] %}
|
|
<h5 class="fs-5">SSL</h5>
|
|
{% include 'apache-ssl.html.j2' %}
|
|
|
|
<div style="margin-bottom: 15pt"></div>
|
|
|
|
<h5 class="fs-5">Signature</h5>
|
|
{% include 'apache-signature.html.j2' %}
|
|
|
|
<div style="margin-bottom: 15pt"></div>
|
|
|
|
<h5 class="fs-5">Indexes</h5>
|
|
{% include 'apache-indexes.html.j2' %}
|
|
|
|
{% else %}
|
|
{{ data['apache']['msg'] }}
|
|
{% endif %}
|