diff --git a/opentech/public/people/templates/people/person_page.html b/opentech/public/people/templates/people/person_page.html index 1e17e42b8cce189eedc642d038785da54e47c252..b1dd88debaf861e7ff22834de2357411860aabd1 100644 --- a/opentech/public/people/templates/people/person_page.html +++ b/opentech/public/people/templates/people/person_page.html @@ -10,9 +10,6 @@ <div class="intro"> <div class="container"> - {% if page.introduction %} - <p>{{ page.introduction }}</p> - {% endif %} {% if page.photo %} {% image page.photo original %} {% endif %} @@ -21,6 +18,10 @@ {% if page.job_title %} <h4 class="heading heading--no-margin">{{ page.job_title }}</h4> {% endif %} + + {% if page.introduction %} + <h4 class="heading heading--person-introduction">{{ page.introduction }}</h4> + {% endif %} {% if page.website %} <p>{{ page.website }}</p> {% endif %}