{% if flags.has_notices %}
{% for notice_section in vars.insight_notices %}
{% if notice_section.count > 0 %}
{{ notice_section.title }}
({{ notice_section.count }})
|
{% for notice in notice_section.messages %}
|
{{ notice.title }}: |
⚠ {{ notice.message }}
{% if notice.rec is defined %}
☛
{{ notice.rec|default('') }}
{% endif %}
|
{% if notice.href is not empty %}
{{ notice.action|default( strings.more_info ) }} ↗
{% endif %}
|
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
There are no important security notices at this time. This is a wonderful thing! :)
{% endif %}