Sha256: ab3f33ecf9731fd1ec88a10efccbf82a2bb55c3fcc7f19305e10a213f1ab64a4

Contents?: true

Size: 550 Bytes

Versions: 1

Compression:

Stored size: 550 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 %}
    <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.11 _includes/team.html