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

Version Path
okf-pub-theme-0.2.21 _includes/team.html
okf-pub-theme-0.2.20 _includes/team.html
okf-pub-theme-0.2.19 _includes/team.html
okf-pub-theme-0.2.18 _includes/team.html
okf-pub-theme-0.2.17 _includes/team.html
okf-pub-theme-0.2.16 _includes/team.html
okf-pub-theme-0.2.15 _includes/team.html
okf-pub-theme-0.2.14 _includes/team.html
okf-pub-theme-0.2.13 _includes/team.html