forked from mmistakes/minimal-mistakes
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
- Loading branch information
1 parent
21e07bd
commit f851ee6
Showing
17 changed files
with
131 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{% assign document = post | default: page %} | ||
{% if document.read_time or document.show_date %} | ||
<p class="page__meta"> | ||
{% if document.show_date and document.date %} | ||
{% assign date = document.date %} | ||
<span class="page__meta-date"> | ||
<i class="far {% if include.type == 'grid' and document.read_time and document.show_date %}fa-fw {% endif %}fa-calendar-alt" aria-hidden="true"></i> | ||
<time datetime="{{ date | date_to_xmlschema }}">{{ date | date: "%B %-d, %Y" }}</time> | ||
</span> | ||
{% endif %} | ||
|
||
{% if document.read_time and document.show_date %}<span class="page__meta-sep"></span>{% endif %} | ||
|
||
{% if document.read_time %} | ||
{% assign words_per_minute = document.words_per_minute | default: site.words_per_minute | default: 200 %} | ||
{% assign words = document.content | strip_html | number_of_words %} | ||
|
||
<span class="page__meta-readtime"> | ||
<i class="far {% if include.type == 'grid' and document.read_time and document.show_date %}fa-fw {% endif %}fa-clock" aria-hidden="true"></i> | ||
{% if words < words_per_minute %} | ||
{{ site.data.ui-text[site.locale].less_than | default: "less than" }} 1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} | ||
{% elsif words == words_per_minute %} | ||
1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} | ||
{% else %} | ||
{{ words | divided_by: words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }} | ||
{% endif %} | ||
</span> | ||
{% endif %} | ||
</p> | ||
{% endif %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: "Posts by Category (grid view)" | ||
layout: categories | ||
permalink: /categories-grid/ | ||
entries_layout: grid | ||
author_profile: true | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
|
||
{% for post in site.pages %} | ||
{% include archive-single.html %} | ||
{% endfor %} | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: "Posts by Tag (grid view)" | ||
permalink: /tags-grid/ | ||
layout: tags | ||
entries_layout: grid | ||
author_profile: true | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: "Posts by Year (grid view)" | ||
permalink: /year-archive-grid/ | ||
layout: posts | ||
entries_layout: grid | ||
author_profile: true | ||
--- |