make give 404 a matchable route and redirect from owner if necessary

This commit is contained in:
Lisa P 2015-10-13 12:38:22 +02:00
parent e646edbc0e
commit 3c2fbc067e
5 changed files with 8 additions and 10 deletions

View File

@ -75,7 +75,6 @@ Router.map ->
@route 'repositories', path: '/'
# @route 'running', path: '/running'
@route 'error404', path: '/*path'
@route 'error404', path: '/404'
`export default Router`

View File

@ -24,7 +24,6 @@ Route = TravisRoute.extend
message = if error.status == 404
@transitionTo('error404')
# "Couldn't find an owner with login \"#{login}\""
else
"There was an error while loading data, please try again."

View File

@ -112,11 +112,9 @@
display: block
.hill-right
background-image: url(../images/error/404-hills-right.svg)
@include error-position-img(auto 20vw, 99% 58%)
@include error-position-img(auto 20vw, 99% 60%)
@media #{$medium-up}
@include error-position-img(50vw auto, 99% 58%)
@media #{$large-up}
@include error-position-img(50vw auto, 99% 54%)
.error-excavator
background-image: url(../images/error/excavator.svg)
@include error-position-img(auto 25vh, 71% 83%)

View File

@ -1,6 +1,8 @@
<div id="top" class="top">
{{render 'top'}}
</div>
<header id="top" class="top">
<div class="centered">
{{render "top"}}
</div>
</header>
<main class="main main--error" role="main">
{{yield}}

View File

@ -1,5 +1,5 @@
<div class="wrapper">
<header id="top" class="topbar">
<header id="top" class="top">
<div class="centered">
{{render "top"}}
</div>