Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
787 B

/*
* Squidex Headless CMS
*
* @license
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
*/
import { Location } from '@angular/common';
import { Component } from '@angular/core';
@Component({
selector: 'sqx-not-found-page',
template: `
<sqx-title message="Not Found"></sqx-title>
<div class="landing-page">
<img class="splash-image" src="~/../squid.svg?title=Not Found&text=This%20is%20not%20the%20page%20you%20are%20looking%20for!&background=white&small" />
<a href="#" (click)="back()">Back to previous page.</a>
</div>
`
})
export class NotFoundPageComponent {
constructor(
private readonly location: Location
) {
}
public back() {
this.location.back();
}
}