-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: contributing info for updating dates, style upgrades & new block…
…quote styles
- Loading branch information
Showing
20 changed files
with
621 additions
and
117 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/page__date.html |
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 |
---|---|---|
@@ -1,6 +1,24 @@ | ||
<!-- prettier-ignore-file --> | ||
|
||
{% assign date_format = site.date_format | default: "%B %-d, %Y" %} | ||
{% if page.last_modified_at %} | ||
<p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time class="dt-published" datetime="{{ page.last_modified_at | date: "%Y-%m-%d" }}">{{ page.last_modified_at | date: date_format }}</time></p> | ||
{% if page.last_modified %} | ||
<p class="page__date"> | ||
<strong> | ||
<i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> | ||
{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }} | ||
</strong> | ||
<time class="dt-published" datetime="{{ page.last_modified | date: '%Y-%m-%d' }}"> | ||
{{ page.last_modified | date: date_format }} | ||
</time> | ||
</p> | ||
{% elsif page.date %} | ||
<p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: date_format }}</time></p> | ||
<p class="page__date"> | ||
<strong> | ||
<i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> | ||
{{ site.data.ui-text[site.locale].date_label | default: "Updated:" }} | ||
</strong> | ||
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}"> | ||
{{ page.date | date: date_format }} | ||
</time> | ||
</p> | ||
{% endif %} |
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 @@ | ||
<blockquote | ||
class="highlight-quote {% if include.class %}{{ include.class }}{% endif %}" | ||
> | ||
<p class="quote">{{ include.quote }}</p> | ||
<footer> | ||
{% if include.author %}<strong>~{{ include.author }}{% endif %}</strong>{% | ||
if include.event %}, <em>{{ include.event }}</em>{% endif %} | ||
</footer> | ||
</blockquote> |
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
Oops, something went wrong.