Sha256: 806011b07da805c3f65e45019db7a6ba0fd0492973a5368354a0e30c23b35aaa

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

---
layout: default
---

{% assign collection= site.collections | where: "label", page.collection | first %}
{% assign items = collection.docs | sort: 'order' %}

{% assign highlighted_items= items | where_exp: "item", "item.highlighted == true" %}
{% assign downlighted_items= items | where_exp: "item", "item.downlighted == true" %}
{% assign rest_of_items= items | where_exp: "item", "item.highlighted != true" | where_exp: "item", "item.downlighted != true" %}

{% if highlighted_items %}
  {% for high in highlighted_items %}
    {% include _landing_highlighted_item.html item= high %}
  {% endfor %}
{% endif %}

<!-- Two -->
{% if rest_of_items %}
  <section id="two" class="spotlights">
    {% for item in rest_of_items %}
      {% include _landing_item.html item= item %}
    {% endfor %}
  </section>
{% endif %}

<!-- Three -->
{% if downlighted_items %}
  {% for down in downlighted_items %}
    {% include _landing_downlighted_item.html item= down %}
  {% endfor %}
{% endif %}

<section>
  <div class="inner">
    {{ content }}
  </div>
</section>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fortyone-jekyll-theme-1.2.3 _layouts/landing.html
fortyone-jekyll-theme-1.2.2 _layouts/landing.html
fortyone-jekyll-theme-1.2.1 _layouts/landing.html
fortyone-jekyll-theme-1.2.0 _layouts/landing.html
fortyone-jekyll-theme-1.1.0 _layouts/landing.html