Fix for showing Job title and LinkedIn URL
Small fix for ensuring the job title and linkedin url show up from the markdown files.pull/1/head
parent
593d6e5fba
commit
757ff239fb
|
@ -34,9 +34,9 @@ bodyClass: page-team-list
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="team-meta">
|
<div class="team-meta">
|
||||||
<h2 class="team-name">{{ team.title }}</h2>
|
<h2 class="team-name">{{ team.title }}</h2>
|
||||||
<p class="team-description">{{ team.Jobtitle }}</p>
|
<p class="team-description">{{ team.jobtitle }}</p>
|
||||||
{% if team.Linkedinurl %}
|
{% if team.linkedinurl %}
|
||||||
<a target="_blank" href="{{ team.Linkedinurl }}">Linked In</a>
|
<a target="_blank" href="{{ team.linkedinurl }}">LinkedIn</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="team-content">{{ team.content }}</div>
|
<div class="team-content">{{ team.content }}</div>
|
||||||
|
|
Loading…
Reference in New Issue