Merge pull request #2 from viraat/patch-1

Fix for showing Job title and LinkedIn URL in Team page
pull/1/head
Robert Austin 2019-05-02 11:29:44 +10:00 committed by GitHub
commit 2ac512051c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -34,9 +34,9 @@ bodyClass: page-team-list
{% endif %}
<div class="team-meta">
<h2 class="team-name">{{ team.title }}</h2>
<p class="team-description">{{ team.Jobtitle }}</p>
{% if team.Linkedinurl %}
<a target="_blank" href="{{ team.Linkedinurl }}">Linked In</a>
<p class="team-description">{{ team.jobtitle }}</p>
{% if team.linkedinurl %}
<a target="_blank" href="{{ team.linkedinurl }}">LinkedIn</a>
{% endif %}
</div>
<div class="team-content">{{ team.content }}</div>