Skip to content
Snippets Groups Projects
Commit 45af9d87 authored by Christopher Krawietz's avatar Christopher Krawietz
Browse files

added 404 content

parent 96c0b632
Branches
Tags
No related merge requests found
<template> <template>
<div class="theme-container"> <div class="theme-container">
<div class="theme-content"> <div class="theme-content">
<h1>404</h1> <div class="u-background--gradient-itvsh-10 u-paddingTop--r4 u-paddingBottom--r4">
<div class="u-container">
<blockquote>{{ getMsg() }}</blockquote> <section class="u-limitWidth-12 u-align-center">
<div class="GridCol1Main-row u-row">
<RouterLink to="/"> <div class="GridCol1Main-col u-col u-stack--2">
Take me home. <lottie-animation class="u-align-center" :path="$withBase('./img/development.json')" :speed="0.8" :width="256"/>
</RouterLink> </div>
</div>
</section>
</div>
</div>
<div class="u-background--white u-paddingTop--r4 u-paddingBottom--r4">
<div class="u-container">
<section class="u-limitWidth-6 u-align-center">
<div class="GridCol1Main-row u-row">
<div class="GridCol1Main-col u-col u-stack--2">
<h1 id="main-title" class="Base-h1">Nanu?<br/>Der gewünschte Inhalt wurde nicht an der erwarteten Stelle gefunden</h1>
<p class="Base-p description">Dafür kann es viele Gründe geben: Seiten wurden verschoben, umbenannt, gelöscht oder jemand hat auf dem Server mal zu gründlich feucht durchgewischt.<br/><br/> Nutzen Sie einfach die Suche, um den gewünschten Inhalt an seinem neuen Ort zu finden.</p>
</div>
</div>
</section>
</div>
</div>
</div> </div>
</div> </div>
</template> </template>
<script>
const msgs = [
`There's nothing here.`,
`How did we get here?`,
`That's a Four-Oh-Four.`,
`Looks like we've got some broken links.`
]
export default {
methods: {
getMsg () {
return msgs[Math.floor(Math.random() * msgs.length)]
}
}
}
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment