Sha256: d32bb98746a98cbf783c61062e91ec66dc6601220950c891700cbe66fdf1c267

Contents?: true

Size: 1.69 KB

Versions: 6

Compression:

Stored size: 1.69 KB

Contents

{% raw %}
<section class="row no-gutters justify-content-center">
  <header class="col-10 mb-3">
    <h1>{{ q | capitalize }}</h1>
  </header>

  <div class="col-10 container">
    <div class="row justify-content-start row-cols-1 row-cols-md-2">
      {% for post in results %}
        {%- if site.ignored_layouts contains post.layout -%}{%- continue -%}{%- endif -%}
        {%- assign height = site.i18n.post.height -%}

        <article class="col d-flex flex-column mb-3">
          <a href="{{ post.url }}">
            <picture>
              <img
                class="u-photo w-100 fit-cover h-{{ height }}"
                loading="lazy"
                itemprop="image"
                src="{{ post.image.path | default: 'public/placeholder.png' }}"
                alt="{{ post.image.description | default: post.title }}" />
            </picture>
          </a>

          <div class="pl-3 pr-3 pb-3 d-flex flex-column">
            <header class="position-relative">
              <h1 class="f-4 mt-3">
                <a
                  class="black line-clamp-5"
                  href="{{ post.url }}">
                  <span>{{ post.title }}</span>
                </a>
              </h1>

              <p>
                <time datetime="{{ post.date }}">
                  {{ post.date | date: site.i18n.date.format }}
                </time>
              </p>

              <p>
                {% for category in post.categories %}
                  <a href="{{ category.url }}" class="badge badge-primary">{{ category.title }}</a>
                {% endfor %}
              </p>
            </header>
          </div>
        </article>
      {% endfor %}
    </div>
  </div>
</section>
{% endraw %}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
observatorio-jekyll-theme-0.1.7 assets/templates/results.html
observatorio-jekyll-theme-0.1.6 assets/templates/results.html
observatorio-jekyll-theme-0.1.5 assets/templates/results.html
observatorio-jekyll-theme-0.1.4 assets/templates/results.html
observatorio-jekyll-theme-0.1.3 assets/templates/results.html
observatorio-jekyll-theme-0.1.2 assets/templates/results.html