Sha256: 1553e72112b6ee7434994c8e3d3cf088504ff2e94439531a677f9985f6e2041e
Contents?: true
Size: 721 Bytes
Versions: 2
Compression:
Stored size: 721 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> {% if person.text != "" %} {{ person.text }} {% endif %} {% if person.bio != "" %} {{ person.bio }} {% endif %} </p> </div> {% endfor %} </div>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
okf-pub-theme-0.2.24 | _includes/team.html |
okf-pub-theme-0.2.23 | _includes/team.html |