-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit fixes or works around all the errors that prevent the 11ty site from building at all. This commit: - Fixes all date metadata in blog posts, to conform to YAML date formats - Implements placeholder filters (usually returning the input or a TODO message) so there are no missing filter errors. - Sets sitewide layout path so we can remove `layouts/` from all the layout metadata. - Moves some assets around to link them correctly - Updates filter parameters to have quotes around strings, instead of Jekyll's bare params - Deletes unpublished joke authors The site is not building *correctly* or outputting the correct pages/content.
- Loading branch information
Showing
130 changed files
with
277 additions
and
735 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 |
---|---|---|
|
@@ -4,3 +4,4 @@ README.md | |
.github | ||
config | ||
docs | ||
spec |
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,13 @@ | ||
{ | ||
"admi.js": "/assets/_common/js/admin.js", | ||
"ap.js": "/assets/_common/js/app.js", | ||
"inde.html": "/assets/presentations/presentation-README/index.html", | ||
"admin.js": "/assets/js/admin-3AAZDPS4.js", | ||
"admin.map": "/assets/js/admin-3AAZDPS4.js.map", | ||
"app.js": "/assets/js/app-VJ5WPKYD.js", | ||
"app.map": "/assets/js/app-VJ5WPKYD.js.map", | ||
"external.js": "/assets/js/external-links.js", | ||
"uswds.js": "/assets/js/uswds-init.js", | ||
"styles.css": "/assets/styles/styles-YNYM6ERT.css", | ||
"styles.map": "/assets/styles/styles-YNYM6ERT.css.map" | ||
} |
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,11 +1,11 @@ | ||
{% assign include_image = include.image | default: page.image %} | ||
{% assign include_image_alt = include.image | default: page.image_alt | default "" %} | ||
{% assign include_image_alt = include.image | default: page.image_alt | default: "" %} | ||
{% assign include_figcaption = include.image_figcaption | default: page.image_figcaption %} | ||
|
||
{% unless page.hero == false %} | ||
{% if page.hero %} | ||
<figure class="post-feature_image" role="img" title="{{ include_image_alt }}" style="background-image: url('{{ site.baseurl }}{{ include_image }}')"> | ||
{% if include_figcaption %} | ||
<figcaption>{{- include_figcaption -}}</figcaption> | ||
{% endif %} | ||
</figure> | ||
{% endunless %} | ||
{% 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
layout: layouts/default | ||
layout: default | ||
--- | ||
|
||
{% comment %} | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
layout: layouts/base | ||
layout: base | ||
--- | ||
|
||
{% comment %} | ||
|
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
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,5 +1,5 @@ | ||
--- | ||
layout: layouts/base | ||
layout: base | ||
--- | ||
|
||
{% comment %} | ||
|
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.