mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-25 21:13:43 +00:00
83 lines
3.4 KiB
HTML
83 lines
3.4 KiB
HTML
{% extends "layouts/base.html" %}
|
|
{% block title %}Error 500 {% endblock %}
|
|
<!-- Element injected in the BODY element -->
|
|
{% block body_class %}
|
|
sidebar-mini
|
|
{% endblock body_class %}
|
|
<!-- Specific Page CSS goes HERE -->
|
|
{% block stylesheets %}
|
|
<!-- Google Font: Source Sans Pro -->
|
|
<link rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="/static/assets/plugins/fontawesome-free/css/all.min.css">
|
|
<!-- Theme style -->
|
|
<link rel="stylesheet" href="/static/assets/css/adminlte.min.css">
|
|
{% endblock stylesheets %}
|
|
{% block content %}
|
|
<div class="content-wrapper">
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<div class="container-fluid">
|
|
<div class="row mb-2">
|
|
<div class="col-sm-6">
|
|
<h1>500 Error Page</h1>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<ol class="breadcrumb float-sm-right">
|
|
<li class="breadcrumb-item">
|
|
<a href="#">Home</a>
|
|
</li>
|
|
<li class="breadcrumb-item active">
|
|
500 Error Page
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /.container-fluid -->
|
|
</section>
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
<div class="error-page">
|
|
<h2 class="headline text-danger">500</h2>
|
|
<div class="error-content">
|
|
<h3>
|
|
<i class="fas fa-exclamation-triangle text-danger"></i>
|
|
Oops! Something went wrong.
|
|
</h3>
|
|
<p>
|
|
We will work on fixing that right away.
|
|
Meanwhile, you may
|
|
<a href="../../index.html">return to dashboard</a>
|
|
or try using the search form.
|
|
</p>
|
|
<form class="search-form">
|
|
<div class="input-group">
|
|
<input type="text" name="search" class="form-control" placeholder="Search">
|
|
<div class="input-group-append">
|
|
<button type="submit" name="submit" class="btn btn-danger">
|
|
<i class="fas fa-search"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<!-- /.input-group -->
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<!-- /.error-page -->
|
|
</section>
|
|
<!-- /.content -->
|
|
</div>
|
|
{% endblock content %}
|
|
<!-- Specific Page JS goes HERE -->
|
|
{% block javascripts %}
|
|
<!-- jQuery -->
|
|
<script src="/static/assets/plugins/jquery/jquery.min.js"></script>
|
|
<!-- Bootstrap 4 -->
|
|
<script src="/static/assets/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="/static/assets/js/adminlte.min.js"></script>
|
|
<!-- AdminLTE for demo purposes -->
|
|
<script src="/static/assets/js/demo.js"></script>
|
|
{% endblock javascripts %}
|