Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 970 Bytes

File metadata and controls

35 lines (30 loc) · 970 Bytes

Guidelines

    {% for page in site.pages %} {% if page.resource == true %} {% if page.categories.size == 1 and page.categories[0] == 'Guidelines' %}
  • {{ page.title }} {{ page.description }}
  • {% endif %} {% endif %} {% endfor %}

Risk assessment

    {% for page in site.pages %} {% if page.resource == true %} {% if page.categories contains 'Guidelines' and page.categories contains 'Risk' %}
  • {{ page.title }} {{ page.description }}
  • {% endif %} {% endif %} {% endfor %}

IAM

    {% for page in site.pages %} {% if page.resource == true %} {% if page.categories contains 'Guidelines' and page.categories contains 'IAM' %}
  • {{ page.title }} {{ page.description }}
  • {% endif %} {% endif %} {% endfor %}