-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue-157, bug fixed, seo optimization
- Loading branch information
GrandShow
authored and
GrandShow
committed
Jun 22, 2020
1 parent
cbde205
commit d691a99
Showing
46 changed files
with
247 additions
and
207 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
import {Title} from '@angular/platform-browser'; | ||
|
||
@Component({ | ||
selector: 'app-admin', | ||
templateUrl: './admin.component.html', | ||
styleUrls: ['./admin.component.sass'] | ||
styleUrls: ['./admin.component.sass'], | ||
}) | ||
export class AdminComponent implements OnInit { | ||
|
||
constructor() { } | ||
constructor(private titleService: Title) {} | ||
|
||
ngOnInit(): void { | ||
this.titleService.setTitle('Admin panel'); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
import {Component, OnInit} from '@angular/core'; | ||
import {Title} from '@angular/platform-browser'; | ||
|
||
@Component({ | ||
selector: 'app-error-page', | ||
templateUrl: './error-page.component.html', | ||
styleUrls: ['./error-page.component.sass'] | ||
styleUrls: ['./error-page.component.sass'], | ||
}) | ||
export class ErrorPageComponent implements OnInit { | ||
|
||
constructor() { } | ||
constructor(private titleService: Title) {} | ||
|
||
ngOnInit(): void { | ||
this.titleService.setTitle('Oops, something went wrong'); | ||
} | ||
|
||
} |
Oops, something went wrong.