Update templates to use CDN
This commit is contained in:
parent
4af5fc07b4
commit
97f2564293
3 changed files with 56 additions and 44 deletions
|
|
@ -1,26 +1,34 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{% load static %}
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>500 - Server Error</title>
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'css/uikit.min.css' %}">
|
||||
<script src="{% static 'js/uikit.min.js' %}"></script>
|
||||
<script src="{% static 'js/uikit-icons.min.js' %}"></script>
|
||||
<meta http-equiv="refresh" content="3;url=/" />
|
||||
</head>
|
||||
<body>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>500 - Server Error</title>
|
||||
|
||||
<div class="uk-section uk-section-large uk-flex uk-flex-middle uk-text-center" style="height: 100vh;">
|
||||
<div class="uk-container">
|
||||
<span uk-icon="icon: bolt; ratio: 4" class="uk-text-danger"></span>
|
||||
<h1 class="uk-heading-medium uk-text-bold uk-margin-small-top">500</h1>
|
||||
<p class="uk-text-large uk-text-muted">Oops! Something went wrong with the server.</p>
|
||||
<a href="/" class="uk-button uk-button-primary uk-margin-top">
|
||||
<span uk-icon="home"></span> Return to homepage
|
||||
</a>
|
||||
</div>
|
||||
<!-- UIkit CSS -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.23.6/dist/css/uikit.min.css" />
|
||||
|
||||
<!-- UIkit JS -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/uikit@3.23.6/dist/js/uikit.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/uikit@3.23.6/dist/js/uikit-icons.min.js"></script>
|
||||
|
||||
<!-- Redirect to homepage after 3s -->
|
||||
<meta http-equiv="refresh" content="3;url=/" />
|
||||
</head>
|
||||
<body class="uk-background-muted uk-light">
|
||||
|
||||
<div class="uk-section uk-section-large uk-flex uk-flex-middle uk-text-center uk-background-secondary" style="height: 100vh;">
|
||||
<div class="uk-container">
|
||||
<span uk-icon="icon: bolt; ratio: 4" class="uk-text-danger uk-animation-fade"></span>
|
||||
<h1 class="uk-heading-medium uk-heading-hero@s uk-text-bold uk-margin-small-top">500</h1>
|
||||
<p class="uk-text-large uk-text-muted">
|
||||
Oops! Something went wrong on our end.<br>
|
||||
We’re working to fix it — you’ll be redirected shortly.
|
||||
</p>
|
||||
<a href="/" class="uk-button uk-button-primary uk-margin-top">
|
||||
<span uk-icon="home"></span> Return to homepage
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue