Skip to content
Snippets Groups Projects
Commit bcfda9e0 authored by Chris Lawton's avatar Chris Lawton
Browse files

removing section element from person page and indenting

parent 7c3af9bb
No related branches found
No related tags found
No related merge requests found
...@@ -19,28 +19,26 @@ ...@@ -19,28 +19,26 @@
<h4 class="heading heading--person-introduction">{{ page.introduction }}</h4> <h4 class="heading heading--person-introduction">{{ page.introduction }}</h4>
{% endif %} {% endif %}
<section class="main-body"> {% include_block page.biography %}
{% include_block page.biography %}
{% if page.website %} {% if page.website %}
<p class="list list--contact"><span>Website:</span> <a href="{{ page.website }}">{{ page.website }}</a></p> <p class="list list--contact"><span>Website:</span> <a href="{{ page.website }}">{{ page.website }}</a></p>
{% endif %} {% endif %}
{% if page.email %} {% if page.email %}
<p class="list list--contact"><span>Email:</span> <a href="{{ page.email }}">{{ page.email }}</a></p> <p class="list list--contact"><span>Email:</span> <a href="{{ page.email }}">{{ page.email }}</a></p>
{% endif %} {% endif %}
{% with contact_details=page.contact_details.all %} {% with contact_details=page.contact_details.all %}
{% if contact_details %} {% if contact_details %}
{% for contact in contact_details %} {% for contact in contact_details %}
<p class="list list--contact"><span>{{ contact.method_display }}:</span> {{ contact.contact_detail }}</p> <p class="list list--contact"><span>{{ contact.method_display }}:</span> {{ contact.contact_detail }}</p>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% endwith %} {% endwith %}
{% include "utils/includes/funding.html" %} {% include "utils/includes/funding.html" %}
</section>
</div> </div>
<div> <div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment