Refactor page meta (#2641)
* Rename include * Add grid view test pages * Rename `.post__meta-sep` and use CSS to add line break * Improve collection grid archive * Improve page grid archive * Enable `grid` * Don't show date icon if there is no `date` value * Add blank line at EOF * Add space * Wrap date and reading time in named `span` elements
This commit is contained in:
7
test/_pages/category-archive-grid.md
Normal file
7
test/_pages/category-archive-grid.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: "Posts by Category (grid view)"
|
||||
layout: categories
|
||||
permalink: /categories-grid/
|
||||
entries_layout: grid
|
||||
author_profile: true
|
||||
---
|
28
test/_pages/collection-archive-grid.html
Normal file
28
test/_pages/collection-archive-grid.html
Normal file
@ -0,0 +1,28 @@
|
||||
---
|
||||
layout: archive
|
||||
title: "Posts by Collection (grid view)"
|
||||
permalink: /collection-archive-grid/
|
||||
entries_layout: grid
|
||||
author_profile: true
|
||||
---
|
||||
|
||||
{% assign entries_layout = page.entries_layout | default: 'list' %}
|
||||
{% capture written_label %}'None'{% endcapture %}
|
||||
|
||||
{% for collection in site.collections %}
|
||||
{% unless collection.output == false or collection.label == "posts" %}
|
||||
<section class="taxonomy__section">
|
||||
{% capture label %}{{ collection.label }}{% endcapture %}
|
||||
{% if label != written_label %}
|
||||
<h2 id="{{ label | slugify }}" class="archive__subtitle">{{ label }}</h2>
|
||||
{% capture written_label %}{{ label }}{% endcapture %}
|
||||
{% endif %}
|
||||
<div class="entries-{{ entries_layout }}">
|
||||
{% for post in collection.docs %}
|
||||
{% include archive-single.html type=entries_layout %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
||||
</section>
|
||||
{% endunless %}
|
||||
{% endfor %}
|
@ -17,7 +17,7 @@ author_profile: true
|
||||
{% endunless %}
|
||||
{% for post in collection.docs %}
|
||||
{% unless collection.output == false or collection.label == "posts" %}
|
||||
{% include archive-single.html %}
|
||||
{% include archive-single.html type=page.entries_layout %}
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
9
test/_pages/edge-case-grid.md
Normal file
9
test/_pages/edge-case-grid.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
title: Edge Case (grid view)
|
||||
layout: category
|
||||
permalink: /categories/edge-case-grid/
|
||||
taxonomy: Edge Case
|
||||
entries_layout: grid
|
||||
---
|
||||
|
||||
Sample post listing for the category `Edge Case`.
|
9
test/_pages/markup-grid.md
Normal file
9
test/_pages/markup-grid.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
title: Markup (grid view)
|
||||
layout: tag
|
||||
permalink: /tags/markup-grid/
|
||||
taxonomy: markup
|
||||
entries_layout: grid
|
||||
---
|
||||
|
||||
Sample post listing for the tag `markup`.
|
16
test/_pages/page-archive-grid.html
Normal file
16
test/_pages/page-archive-grid.html
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
layout: archive
|
||||
title: "Page Archive"
|
||||
permalink: /page-archive-grid/
|
||||
entries_layout: grid
|
||||
author_profile: false
|
||||
---
|
||||
|
||||
{% assign entries_layout = page.entries_layout | default: 'list' %}
|
||||
<section class="taxonomy__section">
|
||||
<div class="entries-{{ entries_layout }}">
|
||||
{% for post in site.pages %}
|
||||
{% include archive-single.html type=entries_layout %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</section>
|
@ -7,4 +7,4 @@ author_profile: false
|
||||
|
||||
{% for post in site.pages %}
|
||||
{% include archive-single.html %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
7
test/_pages/tag-archive-grid.md
Normal file
7
test/_pages/tag-archive-grid.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: "Posts by Tag (grid view)"
|
||||
permalink: /tags-grid/
|
||||
layout: tags
|
||||
entries_layout: grid
|
||||
author_profile: true
|
||||
---
|
7
test/_pages/year-archive-grid.md
Normal file
7
test/_pages/year-archive-grid.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: "Posts by Year (grid view)"
|
||||
permalink: /year-archive-grid/
|
||||
layout: posts
|
||||
entries_layout: grid
|
||||
author_profile: true
|
||||
---
|
Reference in New Issue
Block a user