diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/403.html | 8 | ||||
-rw-r--r-- | templates/404.html | 8 | ||||
-rw-r--r-- | templates/500.html | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/templates/403.html b/templates/403.html index c853fef1..6b5fc084 100644 --- a/templates/403.html +++ b/templates/403.html @@ -1,9 +1,9 @@ {% extends "base.html" %} {% block content %} - <div class="box"> - <h2>403 - Access Forbidden</h2> - Sorry, the page you've requested is not available. - </div> + <div id="error-page" class="box 403"> + <h2>403 - Access Forbidden</h2> + <p>Sorry, the page you've requested is not available.</p> + </div> {% endblock %} diff --git a/templates/404.html b/templates/404.html index 9e389ba9..33271c66 100644 --- a/templates/404.html +++ b/templates/404.html @@ -2,9 +2,9 @@ {% block title %}Arch Linux - Page Not Found{% endblock %} {% block content %} - <div class="box"> - <h2>404 - Page Not Found</h2> - Sorry, the page you've requested does not exist. - </div> + <div id="error-page" class="box 404"> + <h2>404 - Page Not Found</h2> + <p>Sorry, the page you've requested does not exist.</p> + </div> {% endblock %} diff --git a/templates/500.html b/templates/500.html index 9566fc29..7f040638 100644 --- a/templates/500.html +++ b/templates/500.html @@ -1,9 +1,9 @@ {% extends "base.html" %} {% block content %} - <div class="box"> - <h2>500 - Internal Server Error</h2> - Something has gone horribly wrong. Back away slowly. - </div> + <div id="error-page" class="box 500"> + <h2>500 - Internal Server Error</h2> + <p>Something has gone horribly wrong. Back away slowly.</p> + </div> {% endblock %} |