-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add top-level index.html for dev only (not GH Pages / W3C site) (#4076)
- Adds extremely simple top-level `index.html` - Updates `.eleventyignore` to allow for top-level HTML files, while still ignoring top-level files that shouldn't be built - Adds condition to `CustomLiquid.ts` to avoid processing pages outside of `techniques` or `understanding` - Adds considerations to the Eleventy config when targeting GH Pages or w3.org, to clear any preexisting output folder and to avoid outputting top-level `index.html`
- Loading branch information
1 parent
bf4b123
commit e4469d7
Showing
6 changed files
with
86 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*.* | ||
*.md | ||
11ty/ | ||
acknowledgements.html | ||
acknowledgements/ | ||
conformance-challenges/ | ||
guidelines/ | ||
|
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,14 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<title>Web Content Accessibility Guidelines {{ versionDecimal }}</title> | ||
</head> | ||
<body> | ||
<h1>Web Content Accessibility Guidelines {{ versionDecimal }}</h1> | ||
<ul> | ||
<li><a href="techniques/">Techniques</a></li> | ||
<li><a href="understanding/">Understanding Docs</a></li> | ||
</ul> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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