diff options
| author | Max | 2017-05-15 13:04:36 +0200 |
|---|---|---|
| committer | Max | 2017-05-15 13:04:36 +0200 |
| commit | 82b14feb2ca7796dc6a5c280c41680a803957273 (patch) | |
| tree | de61608c06d7cd2ffc28d54a022b71c32e598270 | |
| parent | 00fc2808d2d04aa6fef96d965b21df31b62e6f2f (diff) | |
| download | iamfabulous.de-82b14feb2ca7796dc6a5c280c41680a803957273.tar.gz | |
Commits the 50x error pages again.
| -rw-r--r-- | layouts/error/500.html | 37 | ||||
| -rw-r--r-- | layouts/error/502.html | 37 | ||||
| -rw-r--r-- | layouts/error/503.html | 37 | ||||
| -rw-r--r-- | layouts/error/504.html | 37 |
4 files changed, 148 insertions, 0 deletions
diff --git a/layouts/error/500.html b/layouts/error/500.html new file mode 100644 index 0000000..f780401 --- /dev/null +++ b/layouts/error/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/error/502.html b/layouts/error/502.html new file mode 100644 index 0000000..8947c54 --- /dev/null +++ b/layouts/error/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/error/503.html b/layouts/error/503.html new file mode 100644 index 0000000..c1178a8 --- /dev/null +++ b/layouts/error/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/error/504.html b/layouts/error/504.html new file mode 100644 index 0000000..c4911f5 --- /dev/null +++ b/layouts/error/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"}} + |
