Sha256: 7856a9739585a8c6de56772cdea06a2b6861d89148d56e4926daa6db28f94388

Contents?: true

Size: 1.04 KB

Versions: 6

Compression:

Stored size: 1.04 KB

Contents

{%- assign integrantes = site.posts | where: 'layout', 'integrante' -%}
{%- assign about = site.posts | find: 'layout', 'about' -%}

<section id="integrantes" class="container" itemscope itemtype="https://schema.org/Organization">
  <meta itemprop="name" content="{{ about.title }}" />
  <meta itemprop="url" content="{{ site.url }}" />

  <div class="row justify-content-center row-cols-1 row-cols-md-3">
    {% for post in integrantes %}
      <article
        itemprop="member"
        itemscope
        itemtype="https://schema.org/Person"
        id="{{ post.slug }}"
        class="col text-center mb-3">

        {%- include_cached picture.html image=post.image default_description=post.title height=15 width=15 extra='border border-white rounded-circle'-%}

        <header class="mt-3">
          <h1 class="f-3 text-uppercase p-author h-card" itemprop="name">{{ post.title }}</h1>
          <div class="lead p-job-title" itemprop="jobTitle">{{ post.description | markdownify }}</div>
        </header>
      </article>
    {% endfor %}
  </div>
</section>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
observatorio-jekyll-theme-0.1.7 _includes/archive_layout_integrantes.html
observatorio-jekyll-theme-0.1.6 _includes/archive_layout_integrantes.html
observatorio-jekyll-theme-0.1.5 _includes/archive_layout_integrantes.html
observatorio-jekyll-theme-0.1.4 _includes/archive_layout_integrantes.html
observatorio-jekyll-theme-0.1.3 _includes/archive_layout_integrantes.html
observatorio-jekyll-theme-0.1.2 _includes/archive_layout_integrantes.html