~xdavidwu/xdavidwu.link

7d3b5e504de3a208880e4c62271c8fe2391a86d8 — Michael Rose 6 years ago 8fdbf62
Configure entries layout `list` or `grid`

Switch between list or grid view by adding `entries_layout` to YAML Front Matter.
M _layouts/categories.html => _layouts/categories.html +1 -1
@@ 38,7 38,7 @@ layout: archive
        <h2 class="archive__subtitle">{{ category[0] }}</h2>
        <div class="entries-{{ page.entries_layout | default: 'list' }}">
          {% for post in category.last %}
            {% include archive-single.html %}
            {% include archive-single.html type=page.entries_layout %}
          {% endfor %}
        </div>
        <a href="#page-title" class="back-to-top">{{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} &uarr;</a>

M _layouts/category.html => _layouts/category.html +2 -2
@@ 4,6 4,6 @@ layout: archive

{{ content }}

<div class="entries-{{ page.entries_layout | default: 'list' }}">
  {% include posts-category.html taxonomy=page.taxonomy %}
<div class="entries-{{ page.entries_layout }}">
  {% include posts-category.html taxonomy=page.taxonomy type=page.entries_layout %}
</div>

M _layouts/collection.html => _layouts/collection.html +2 -2
@@ 4,6 4,6 @@ layout: archive

{{ content }}

<div class="entries-{{ page.entries_layout | default: 'list' }}">
  {% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order %}
<div class="entries-{{ page.entries_layout }}">
  {% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order type=page.entries_layout %}
</div>

M _layouts/posts.html => _layouts/posts.html +1 -1
@@ 21,7 21,7 @@ layout: archive
    <h2 class="archive__subtitle">{{ year.name }}</h2>
    <div class="entries-{{ page.entries_layout | default: 'list' }}">
      {% for post in year.items %}
        {% include archive-single.html %}
        {% include archive-single.html type=page.entries_layout %}
      {% endfor %}
    </div>
    <a href="#page-title" class="back-to-top">{{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} &uarr;</a>

M _layouts/tag.html => _layouts/tag.html +1 -1
@@ 5,5 5,5 @@ layout: archive
{{ content }}

<div class="entries-{{ page.entries_layout | default: 'list' }}">
  {% include posts-tag.html taxonomy=page.taxonomy %}
  {% include posts-tag.html taxonomy=page.taxonomy type=page.entries_layout %}
</div>

M _layouts/tags.html => _layouts/tags.html +1 -1
@@ 38,7 38,7 @@ layout: archive
        <h2 class="archive__subtitle">{{ tag[0] }}</h2>
        <div class="entries-{{ page.entries_layout | default: 'list' }}">
          {% for post in tag.last %}
            {% include archive-single.html %}
            {% include archive-single.html type=page.entries_layout %}
          {% endfor %}
        </div>
        <a href="#page-title" class="back-to-top">{{ site.data.text[site.locale].back_to_top | default: 'Back to Top' }} &uarr;</a>