-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: add styling for 404 page and finalise text sizing
- Loading branch information
1 parent
df9062e
commit 140e071
Showing
7 changed files
with
54 additions
and
31 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
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,12 +1,12 @@ | ||
{% block content %} | ||
<div id="notfound"> | ||
<h1 id="notfound-error">404: Page not found</h1> | ||
<hr class="title-underline" /> | ||
<p id="notfound-message"> | ||
Oops! We can't seem to find the page you are looking for.<a | ||
href="{{ config.base_url | safe }}" | ||
>TODO: Fix this place, man.</a | ||
> | ||
</p> | ||
</div> | ||
{% extends "base.html" %} {% block content %} | ||
<h1 id="content-list-title">Page Not Found</h1> | ||
<hr class="title-underline" /> | ||
<p id="notfound-message"> | ||
It looks like the page you're trying to access does not exist. | ||
<br /> | ||
<br /> | ||
<a class="decorated-link" href="{{ config.base_url | safe }}" | ||
>Click here to go back to the home page</a | ||
>. | ||
</p> | ||
{% endblock content %} |
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