diff --git a/aircox/templates/aircox/program_detail.html b/aircox/templates/aircox/program_detail.html
new file mode 100644
index 0000000..fb2f154
--- /dev/null
+++ b/aircox/templates/aircox/program_detail.html
@@ -0,0 +1,90 @@
+{% extends "aircox/basepage_detail.html" %}
+{% load static i18n humanize honeypot aircox %}
+{% comment %}
+Base template used to display a Page
+
+Context:
+- page: page
+- parent: parent page
+{% endcomment %}
+
+{% block header_crumbs %}
+{{ block.super }}
+{% if page.category %}
+{% if parent %} / {% endif %} {{ page.category.title }}
+{% endif %}
+{% endblock %}
+
+{% block top-nav-tools %}
+{% has_perm page page.change_permission_codename simple=True as can_edit %}
+{% if can_edit %}
+
+
+
+
+ {% translate "Edit" %}
+
+{% endif %}
+{% endblock %}
+
+{% block main %}
+{{ block.super }}
+
+{% block comments %}
+{% if comments or comment_form %}
+
+ {{ comment.nickname }}
+
+ {% translate "Comments" %}
+
+ {% for comment in comments %}
+
+ {{ comment.content }}
+