--- permalink: courses.html --- Courses | ISS Training Academy {% include "header.njk" %}

Courses

Choose a pathway. Build verified capability.

This page is data-driven. Update data/courses.csv, then run a standard build/deploy. No template edits required for routine course updates.

{% for cat in courses.categories %}

Pathway

{{ cat.name }}

Overview

{% if cat.key == "psira" %}
Security patrol training
{% elif cat.key == "tactical" %}
Tactical response training
{% elif cat.key == "firearms" %}
Firearms training
{% elif cat.key == "k9" %}
K9 training
{% elif cat.key == "digital" %}
Digital and monitoring technology
{% endif %}

{{ cat.description }}

Courses in this pathway: {{ cat.courses.length }}

Apply / Register {% if cat.key == "digital" %} Digital & Cyber {% else %} Branches / Contact {% endif %}

Course list

{% if cat.courses and cat.courses.length %}
    {% for c in cat.courses %}
  • {{ c.name }} — {{ c.duration }} · {{ c.mode }} {% if c.blurb %}
    {{ c.blurb }}
    {% endif %}
  • {% endfor %}
{% else %}

No courses listed yet for this pathway. Add rows to data/courses.csv.

{% endif %}
{% endfor %}

Public Course Library

{% include "footer.njk" %}