diff --git a/_includes/home_guide_promo.html b/_includes/home_guide_promo.html
index 9ed4535..48d8cd7 100644
--- a/_includes/home_guide_promo.html
+++ b/_includes/home_guide_promo.html
@@ -23,7 +23,7 @@
Read our Practitioner's Guides
{{ item.summary }}
diff --git a/_layouts/post.html b/_layouts/post.html
index 79b3570..22470e8 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -61,21 +61,44 @@
-
-
- {% include profile.html profile=page.profile author=page.author %}
-
-
-
by {{ page.author }}
-
{{ page.role }}
+
+
+
+ {% include profile.html profile=page.profile author=page.author %}
+
+
+
by {{ page.author }}
+
{{ page.role }}
+
+ {% if page.bio %}
+
+
+ {{ page.bio }}
+
+ {% endif %}
- {% if page.bio %}
-
- {{ page.bio }}
+ {% for secondary_author in page.secondary_authors %}
+
+
+
+ {% include profile.html profile=secondary_author.profile author=secondary_author.author %}
+
+
+
by {{ secondary_author.author }}
+
{{ secondary_author.role }}
+
- {% endif %}
+ {% if secondary_author.bio %}
+
+
+ {{ secondary_author.bio }}
+
+ {% endif %}
+
+ {% endfor %}
+