1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-26 11:16:12 +04:00

tabler v1

This commit is contained in:
chomik
2019-03-12 22:09:15 +01:00
parent 79f7d92872
commit ab3aec2eeb
3320 changed files with 148049 additions and 207078 deletions

25
pages/_layouts/error.html Normal file
View File

@@ -0,0 +1,25 @@
---
layout: base
---
{% assign error = site.data.errors[page.error] %}
<div class="d-flex min-h-full align-items-center justify-content-center">
<div class="text-center p-4">
{% if page.error == 'maintenance' %}
<div class="display-3 text-muted mb-3">{% include ui/icon.html icon="settings" class="icon-thin" %}</div>
<h1 class="h2 mb-3">{{ error }}</h1>
<p class="h4 text-muted font-weight-normal mb-5">Well be back shortly!</p>
{% else %}
<div class="display-3 text-muted mb-3">{{ page.error }}</div>
<h1 class="h2 mb-3">Oops&hellip; You just found an error page</h1>
<p class="h4 text-muted font-weight-normal mb-5">{{ error }}</p>
<a class="btn btn-primary" href="javascript:history.back()">
{% include ui/icon.html icon="arrow-left" class="mr-1" %} Go back
</a>
{% endif %}
</div>
</div>