diff options
| author | Max | 2017-05-15 12:57:35 +0200 |
|---|---|---|
| committer | Max | 2017-05-15 12:57:35 +0200 |
| commit | eacf80cacc473fe46cb74799c5937f78642726a9 (patch) | |
| tree | e346054136bdd837d3dc63885eff0c1a51798226 | |
| parent | b9c8a048055c1fb559eb591754b89e61155a616a (diff) | |
| download | iamfabulous.de-eacf80cacc473fe46cb74799c5937f78642726a9.tar.gz | |
Commits 50x error pages.
| -rw-r--r-- | layouts/500.html | 37 | ||||
| -rw-r--r-- | layouts/502.html | 37 | ||||
| -rw-r--r-- | layouts/503.html | 37 | ||||
| -rw-r--r-- | layouts/504.html | 37 |
4 files changed, 148 insertions, 0 deletions
diff --git a/layouts/500.html b/layouts/500.html new file mode 100644 index 0000000..f780401 --- /dev/null +++ b/layouts/500.html @@ -0,0 +1,37 @@ +{{partial "header.tmpl" .}} +<div class="row"> + <header><p>500 - something went wrong</p></header> +</div> + +<div class="container journal content"> + <div class="row"> + <div class="twelve columns article"> + <ul> + <li class="journal-li"> + <div class="margin-top">Oops, something went wrong. Reload the page or try again.</div> + <br> + <pre> +_ ___ _.--. +\`.|\..----...-'` `-._.-'_.-'` +/ ' ` , __.--' +)/' _/ \ `-_, / +`-'" `"\_ ,_.-;_.-\_ ', + _.-'_./ {_.' ; / + {_.-``-' {_/ + ~~~~~~ ~~~~~ + </pre> + </li> + </ul> + </div> + </div> +</div> + +<div class="container"> + <div class="row center"> + <p class="twelve columns" style="margin-top: 20px"> + <a class="button" href="{{$.Site.BaseURL}}" title="back to index">click to go back</a> + </p> + </div> +</div> +{{partial "footer.tmpl"}} + diff --git a/layouts/502.html b/layouts/502.html new file mode 100644 index 0000000..8947c54 --- /dev/null +++ b/layouts/502.html @@ -0,0 +1,37 @@ +{{partial "header.tmpl" .}} +<div class="row"> + <header><p>502 - bad gateway</p></header> +</div> + +<div class="container journal content"> + <div class="row"> + <div class="twelve columns article"> + <ul> + <li class="journal-li"> + <div class="margin-top">Oops, the requested service is offline. Reload the page or try again.</div> + <br> + <pre> +_ ___ _.--. +\`.|\..----...-'` `-._.-'_.-'` +/ ' ` , __.--' +)/' _/ \ `-_, / +`-'" `"\_ ,_.-;_.-\_ ', + _.-'_./ {_.' ; / + {_.-``-' {_/ + ~~~~~~ ~~~~~ + </pre> + </li> + </ul> + </div> + </div> +</div> + +<div class="container"> + <div class="row center"> + <p class="twelve columns" style="margin-top: 20px"> + <a class="button" href="{{$.Site.BaseURL}}" title="back to index">click to go back</a> + </p> + </div> +</div> +{{partial "footer.tmpl"}} + diff --git a/layouts/503.html b/layouts/503.html new file mode 100644 index 0000000..c1178a8 --- /dev/null +++ b/layouts/503.html @@ -0,0 +1,37 @@ +{{partial "header.tmpl" .}} +<div class="row"> + <header><p>503 - service unavailable</p></header> +</div> + +<div class="container journal content"> + <div class="row"> + <div class="twelve columns article"> + <ul> + <li class="journal-li"> + <div class="margin-top">Oops, the page is unavailable. Reload the page or try again.</div> + <br> + <pre> +_ ___ _.--. +\`.|\..----...-'` `-._.-'_.-'` +/ ' ` , __.--' +)/' _/ \ `-_, / +`-'" `"\_ ,_.-;_.-\_ ', + _.-'_./ {_.' ; / + {_.-``-' {_/ + ~~~~~~ ~~~~~ + </pre> + </li> + </ul> + </div> + </div> +</div> + +<div class="container"> + <div class="row center"> + <p class="twelve columns" style="margin-top: 20px"> + <a class="button" href="{{$.Site.BaseURL}}" title="back to index">click to go back</a> + </p> + </div> +</div> +{{partial "footer.tmpl"}} + diff --git a/layouts/504.html b/layouts/504.html new file mode 100644 index 0000000..c4911f5 --- /dev/null +++ b/layouts/504.html @@ -0,0 +1,37 @@ +{{partial "header.tmpl" .}} +<div class="row"> + <header><p>504 - time out</p></header> +</div> + +<div class="container journal content"> + <div class="row"> + <div class="twelve columns article"> + <ul> + <li class="journal-li"> + <div class="margin-top">Oops, the requested service is offline. Reload the page or try again.</div> + <br> + <pre> +_ ___ _.--. +\`.|\..----...-'` `-._.-'_.-'` +/ ' ` , __.--' +)/' _/ \ `-_, / +`-'" `"\_ ,_.-;_.-\_ ', + _.-'_./ {_.' ; / + {_.-``-' {_/ + ~~~~~~ ~~~~~ + </pre> + </li> + </ul> + </div> + </div> +</div> + +<div class="container"> + <div class="row center"> + <p class="twelve columns" style="margin-top: 20px"> + <a class="button" href="{{$.Site.BaseURL}}" title="back to index">click to go back</a> + </p> + </div> +</div> +{{partial "footer.tmpl"}} + |
