diff --git a/src/app/pagenotfound/pagenotfound.component.html b/src/app/pagenotfound/pagenotfound.component.html new file mode 100644 index 0000000000..cf6047e6df --- /dev/null +++ b/src/app/pagenotfound/pagenotfound.component.html @@ -0,0 +1,10 @@ +
+

404

+

{{"404.page-not-found" | translate}}

+
+

{{"404.help" | translate}}

+
+

+ {{"404.link.home-page" | translate}} +

+
\ No newline at end of file diff --git a/src/app/pagenotfound/pagenotfound.component.scss b/src/app/pagenotfound/pagenotfound.component.scss new file mode 100644 index 0000000000..da97dd7a62 --- /dev/null +++ b/src/app/pagenotfound/pagenotfound.component.scss @@ -0,0 +1 @@ +@import '../../styles/variables.scss'; diff --git a/src/app/pagenotfound/pagenotfound.component.ts b/src/app/pagenotfound/pagenotfound.component.ts new file mode 100644 index 0000000000..f0e78be45b --- /dev/null +++ b/src/app/pagenotfound/pagenotfound.component.ts @@ -0,0 +1,21 @@ +import { Component } from '@angular/core'; + + +@Component({ + selector: 'ds-pagenotfound', + styleUrls: ['./pagenotfound.component.css'], + templateUrl: './pagenotfound.component.html' +}) +export class PageNotFoundComponent { + + data: any = {}; + + constructor() { + this.universalInit(); + } + + universalInit() { + + } + +}