Sha256: 6379ae2ba4164e23c65596b552d6b72f4ecdd298bf31cbf6c3e088154940a49d

Contents?: true

Size: 587 Bytes

Versions: 1

Compression:

Stored size: 587 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

1 entries across 1 versions & 1 rubygems

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