diff options
| author | Veikka Kähkönen <veikka.kahkonen@corefactory.com> | 2017-11-30 22:33:49 +0200 |
|---|---|---|
| committer | Veikka Kähkönen <veikka.kahkonen@corefactory.com> | 2017-11-30 22:33:49 +0200 |
| commit | 8b3b50735686fbf31c5cb2a2ef8a24739dd55dcf (patch) | |
| tree | 5c86476f01af30692e01483ad65fe3e6468cf655 /_layouts | |
| parent | fcd92389b0130ce05e47d61008a6008ee94cdd57 (diff) | |
Add support for extra info in people_generic layout
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/people_generic.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/_layouts/people_generic.html b/_layouts/people_generic.html index 515e437..ee7b34a 100644 --- a/_layouts/people_generic.html +++ b/_layouts/people_generic.html @@ -28,6 +28,11 @@ layout: page {% endif %} <img class="contact__photo" style="max-height:200px; margin: 0 auto;" src="{{ picture_path | absolute_url }}" alt=""> <h4 class="contact__person_name contact__person_name--generic">{{ member.name }}</h4> + {% if member.extra_info %} + <div class="contact__section"> + <span>{{ member.extra_info }}</span> + </div> + {% endif %} {% if member.email %} <div class="contact__section"> {% assign email_tokens = member.email | split: '@' %} |
