diff --git a/source/_includes/availability.html.twig b/source/_includes/availability.html.twig
index 78e2612d..39370c2a 100644
--- a/source/_includes/availability.html.twig
+++ b/source/_includes/availability.html.twig
@@ -2,8 +2,10 @@
Availability
- {% for key, availability in site.availability %}
- {% include 'availability/' ~ availability with { value: key } %}
+ {% for type, value in site.availability %}
+ -
+ {% include 'availability/' ~ value %}
+
{% endfor %}
diff --git a/source/_includes/availability/limited.html.twig b/source/_includes/availability/limited.html.twig
index 7ac76700..eca6174e 100644
--- a/source/_includes/availability/limited.html.twig
+++ b/source/_includes/availability/limited.html.twig
@@ -1,6 +1,2 @@
-
-
-
- {{ value == 'full' ? 'Currently have limited full-time capacity' }}
- {{ value == 'part' ? 'Currently have limited part-time capacity' }}
-
+
+Currently have limited {{ type }}-time capacity.
diff --git a/source/_includes/availability/no.html.twig b/source/_includes/availability/no.html.twig
index 60e46ec9..256df14a 100644
--- a/source/_includes/availability/no.html.twig
+++ b/source/_includes/availability/no.html.twig
@@ -1,6 +1,2 @@
-
-
-
- {{ value == 'full' ? 'Currently no spare full-time capacity.' }}
- {{ value == 'part' ? 'Currently no spare part-time capacity.' }}
-
+
+Currently no spare {{ type }}-time capacity.
diff --git a/source/_includes/availability/yes.html.twig b/source/_includes/availability/yes.html.twig
index 0d858578..350e7b0f 100644
--- a/source/_includes/availability/yes.html.twig
+++ b/source/_includes/availability/yes.html.twig
@@ -1,6 +1,2 @@
-
-
-
- {{ value == 'full' ? 'Currently have available full-time capacity' }}
- {{ value == 'part' ? 'Currently have available part-time capacity' }}
-
+
+Currently have available {{ type }}-time capacity.