Added 404 placeholder, social media links

This commit is contained in:
Daniel J. Summers 2017-08-04 19:11:44 -05:00
parent 1cca89eb40
commit c354a348ad
3 changed files with 48 additions and 1 deletions

View File

@ -0,0 +1,39 @@
<template lang="pug">
article
page-title(title="Not Found (404)")
h1 Not Found (404)
p.
Looks like you've stumbled into the part of this site where we have no content to give you. Of course, you could
have hit an actual link that we moved, but missed setting up redirection for it. If that is the case, one of the
links below may be what you need.
ul
li.
The #[strong Linux Software Repository] used to be at #[tt /linux/software], but can now be found at
#[a(href="//hosted.djs-consulting.com/software") https://hosted.djs-consulting.com/software]. This
includes the OpenSUSE ISOs, SQLDeveloper .deb packages, and Xine RPMs.
li.
The #[strong My Linux Adventure] and #[strong DJS Consulting Tech Blog] blogs used to be at #[tt /linux/blog],
but both have been combined into the latter, and can be found at
#[a(href="//techblog.djs-consulting.com") https://techblog.djs-consulting.com].
li.
#[strong Kathie York]'s portfolio, formerly at #[tt /hosted/kathieyork], is now at
#[a(href="//hosted.djs-consulting.com/kathieyork") https://hosted.djs-consulting.com/kathieyork].
li.
#[strong Daniel J. Summers]'s personal site, formerly at #[tt /personal] (and a really ancient copy at
#[tt /old_personal]), is now at #[a(href="//daniel.summershome.org") https://daniel.summershome.org].
li.
The #[strong Not So Extreme Makeover: Community Edition] archive site, previously at
#[tt /archived/notsoextreme_org], can now be found at
#[a(href="//hosted.djs-consulting.com/archive/notsoextreme_org") https://hosted.djs-consulting.com/archive/notsoextreme_org].
</template>
<script>
import PageTitle from './PageTitle.vue'
export default {
name: 'four-oh-four',
components: {
PageTitle
}
}
</script>

View File

@ -1,5 +1,11 @@
<template lang="pug">
aside
p
strong.sidebar-name Connect with Us
br
a(href="https://twitter.com/DJS_Consulting" title="DJS_Consulting on Twitter") Twitter
| &nbsp;&bull;&nbsp;
a(href="https://www.facebook.com/pages/DJS-Consulting/262368048575" title="DJS Consulting on Facebook") Facebook
sidebar-category(v-for="category in cats" v-bind:category="category" v-bind:key="category.id")
</template>

View File

@ -4,6 +4,7 @@ import Router from 'vue-router'
import Home from '@/components/Home'
import Application from '@/components/Application'
import ApplicationList from '@/components/ApplicationList'
import FourOhFour from '@/components/FourOhFour'
import Linux from '@/components/linux/Linux'
import Averatec from '@/components/linux/Averatec'
@ -19,6 +20,7 @@ export default new Router({
{ path: '/applications', name: 'ApplicationList', component: ApplicationList },
{ path: '/linux/installing-wbel4-rhel4-on-an-averatec-6200-laptop', name: 'Averatec', component: Averatec },
{ path: '/linux/xine-rpms-for-el-x86_64-architecture', name: 'XineRPMs', component: XineRPMs },
{ path: '/linux', name: 'Linux', component: Linux }
{ path: '/linux', name: 'Linux', component: Linux },
{ path: '*', name: 'FourOhFour', component: FourOhFour }
]
})