-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #371 from ExaWorks/add_404_page
Fix 404 page (missing tabs property was making it render funny).
- Loading branch information
Showing
3 changed files
with
34 additions
and
5 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,11 +1,20 @@ | ||
--- | ||
permalink: /404.html | ||
layout: default | ||
tab: 100 | ||
--- | ||
|
||
<div class="container"> | ||
<h1>404</h1> | ||
<div v-if="isDocsPage()"> | ||
<h1>404</h1> | ||
<p><strong>Page not found</strong></p> | ||
<p>This version of the documentation does not contain this page. Please go to the <a :href="getMainDocsPage()">main documentation page</a>. | ||
</div> | ||
<div v-else> | ||
|
||
<p><strong>Page not found :(</strong></p> | ||
<p>The requested page could not be found.</p> | ||
<h1>404</h1> | ||
|
||
<p><strong>Page not found</strong></p> | ||
<p>The requested page could not be found.</p> | ||
</div> | ||
</div> |
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