templates: moved pages to pages
This commit is contained in:
parent
5b8fef624d
commit
f22563b3ec
6 changed files with 21 additions and 38 deletions
29
crates/ezidam/templates/pages/error.html.tera
Normal file
29
crates/ezidam/templates/pages/error.html.tera
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{% extends "base" %}
|
||||
|
||||
{% block page %}
|
||||
<body class=" border-top-wide border-primary d-flex flex-column">
|
||||
<script src="/js/demo-theme.min.js"></script>
|
||||
<div class="page page-center">
|
||||
<div class="container-tight py-4">
|
||||
<div class="empty">
|
||||
<div class="empty-header">{{ http_code }}</div>
|
||||
<p class="empty-title">{{ http_reason }}</p>
|
||||
<p class="empty-subtitle text-muted">
|
||||
{{ message }}
|
||||
</p>
|
||||
<div class="empty-action">
|
||||
<a href="/" class="btn btn-primary">
|
||||
<!-- Download SVG icon from http://tabler-icons.io/i/arrow-left -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l14 0" /><path d="M5 12l6 6" /><path d="M5 12l6 -6" /></svg>
|
||||
Take me home
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Libs JS -->
|
||||
<!-- Tabler Core -->
|
||||
<script src="/js/tabler.min.js" defer></script>
|
||||
<script src="/js/demo.min.js" defer></script>
|
||||
</body>
|
||||
{% endblock page %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue