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
Viraat Aryabumi Reddy 2019-05-01 23:02:18 +05:30 committed by GitHub
parent 593d6e5fba
commit 757ff239fb
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>