-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
6 changed files
with
88 additions
and
11 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 |
---|---|---|
|
@@ -10,7 +10,6 @@ var/cache | |
var/log | ||
var/data.db | ||
|
||
.env | ||
.env.* | ||
|
||
public/build | ||
|
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
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
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,28 @@ | ||
{% extends 'base.html.twig' %} | ||
|
||
{% block content %} | ||
<section class="hero"> | ||
<div class="hero__inner"> | ||
<h1 data-animate="title" class="text-center uppercase"> | ||
Oops :( | ||
</h1> | ||
</div> | ||
</section> | ||
|
||
<section class="page-content__wrapper"> | ||
<div class="page-content__inner"> | ||
<section> | ||
<div class="max-w-3xl"> | ||
<div class="mx-auto space-y-16 text-lg text-left"> | ||
<div class="space-y-8"> | ||
<p class="text-base text-center font-light text-waterloo dark:text-santa md:mt-5"> | ||
<b class="inline-block mb-4">THE PAGE YOU WERE LOOKING FOR DOESN'T EXIST.</b><br> | ||
Checkout for any URL misspelling or <a href="/" class="link">return to the homepage</a>. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
</section> | ||
{% endblock %} |
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,28 @@ | ||
{% extends 'base.html.twig' %} | ||
|
||
{% block content %} | ||
<section class="hero"> | ||
<div class="hero__inner"> | ||
<h1 data-animate="title" class="text-center uppercase"> | ||
Page not found | ||
</h1> | ||
</div> | ||
</section> | ||
|
||
<section class="page-content__wrapper"> | ||
<div class="page-content__inner"> | ||
<section> | ||
<div class="max-w-3xl"> | ||
<div class="mx-auto space-y-16 text-lg text-left"> | ||
<div class="space-y-8"> | ||
<p class="text-base text-center font-light text-waterloo dark:text-santa md:mt-5"> | ||
<b class="inline-block mb-4">THE PAGE YOU WERE LOOKING FOR DOESN'T EXIST.</b><br> | ||
Checkout for any URL misspelling or <a href="/" class="link">return to the homepage</a>. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
</section> | ||
{% endblock %} |
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,28 @@ | ||
{% extends 'base.html.twig' %} | ||
|
||
{% block content %} | ||
<section class="hero"> | ||
<div class="hero__inner"> | ||
<h1 data-animate="title" class="text-center uppercase"> | ||
INTERNAL SERVER ERROR | ||
</h1> | ||
</div> | ||
</section> | ||
|
||
<section class="page-content__wrapper"> | ||
<div class="page-content__inner"> | ||
<section> | ||
<div class="max-w-3xl"> | ||
<div class="mx-auto space-y-16 text-lg text-left"> | ||
<div class="space-y-8"> | ||
<p class="text-base text-center font-light text-waterloo dark:text-santa md:mt-5"> | ||
<b class="inline-block mb-4">THE PAGE YOU WERE LOOKING FOR DOESN'T EXIST.</b><br> | ||
Checkout for any URL misspelling or <a href="/" class="link">return to the homepage</a>. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</div> | ||
</section> | ||
{% endblock %} |