Sha256: 18fcbec3ad8a86986e84ba15c54f493b737af2f2966d1170c62862a15811340e
Contents?: true
Size: 559 Bytes
Versions: 9
Compression:
Stored size: 559 Bytes
Contents
<div class="team"> {% for person in site.data.team %} <div> <p class="team-entry"> <strong class="team-entry__name">{{ person.name }}</strong> {% if person.img %} {% assign img_path = person.img %} {% else %} {% assign img_path = person.name | downcase | split: ' ' | join: '' %} {% endif %}</p> <p> <img class="team-entry__img" src="/assets/images/team/{{ img_path }}.jpg" alt="Bild von {{ person.name }}"> <em>{{ person.position }}</em><br> {{ person.text }}</p> </div> {% endfor %} </div>
Version data entries
9 entries across 9 versions & 1 rubygems