Sha256: de57ecab992363df828188ef1e6908d2e1101d4468ff4c89c7488df466c4d3ea

Contents?: true

Size: 449 Bytes

Versions: 1

Compression:

Stored size: 449 Bytes

Contents

<div class="team">
{% for person in site.data.team %}
<div>
  <p class="team-entry">
    <strong class="team-entry__name">{{ person.name }}</strong>
    {% assign img_path = person.name | downcase | split: ' ' | join: '' %}
    <img class="team-entry__img"
         src="/assets/images/team/{{ img_path }}.jpg"
         alt="Bild von {{ person.name }}"></p>
  <p><em>{{ person.position }}</em><br>
  {{ person.text }}</p>
</div>
{% endfor %}
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
okf-pub-theme-0.2.10 _includes/team.html