-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Karolis Rusenas
committed
Aug 18, 2015
1 parent
e0e8171
commit f0098c3
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{% extends "base.html" %} | ||
|
||
{% block body %} | ||
<section class="content-header"> | ||
<h1> | ||
Analytics got error while doing some analytics | ||
</h1> | ||
<ol class="breadcrumb"> | ||
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> | ||
<li class="active">500 error</li> | ||
</ol> | ||
</section> | ||
|
||
<!-- Main content --> | ||
<section class="content"> | ||
|
||
<div class="error-page"> | ||
<h2 class="headline text-red">500</h2> | ||
<div class="error-content"> | ||
<h3><i class="fa fa-warning text-red"></i> Oops! Something went wrong.</h3> | ||
<p> | ||
{{ error }} | ||
</p> | ||
</div> | ||
</div><!-- /.error-page --> | ||
|
||
</section><!-- /.content --> | ||
|
||
{% end body %} |