mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 01:04:28 +01:00
Canonical url is now in index.html as default.
This commit is contained in:
parent
caf5ae944a
commit
eac605f181
@ -9,7 +9,7 @@ import { StateService } from 'src/app/services/state.service';
|
|||||||
styleUrls: ['./app.component.scss']
|
styleUrls: ['./app.component.scss']
|
||||||
})
|
})
|
||||||
export class AppComponent implements OnInit {
|
export class AppComponent implements OnInit {
|
||||||
link: HTMLLinkElement;
|
link: HTMLElement = document.getElementById('canonical');
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
public router: Router,
|
public router: Router,
|
||||||
@ -28,19 +28,8 @@ export class AppComponent implements OnInit {
|
|||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this.router.events.subscribe((val) => {
|
this.router.events.subscribe((val) => {
|
||||||
if (val instanceof NavigationEnd) {
|
if (val instanceof NavigationEnd) {
|
||||||
this.updateCanonicalUrlElement('https://mempool.space' + location.pathname);
|
this.link.setAttribute('href', 'https://mempool.space' + (location.pathname === '/' ? '' : location.pathname));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
updateCanonicalUrlElement(url: string) {
|
|
||||||
if (!this.link) {
|
|
||||||
this.link = window.document.createElement('link');
|
|
||||||
this.link.setAttribute('rel', 'canonical');
|
|
||||||
window.document.head.appendChild(this.link);
|
|
||||||
}
|
|
||||||
this.link.setAttribute('href', url);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
<link rel="icon" type="image/png" sizes="16x16" href="/resources/favicons/favicon-16x16.png">
|
<link rel="icon" type="image/png" sizes="16x16" href="/resources/favicons/favicon-16x16.png">
|
||||||
<link rel="manifest" href="/resources/favicons/site.webmanifest">
|
<link rel="manifest" href="/resources/favicons/site.webmanifest">
|
||||||
<link rel="shortcut icon" href="/resources/favicons/favicon.ico">
|
<link rel="shortcut icon" href="/resources/favicons/favicon.ico">
|
||||||
|
<link id="canonical" rel="canonical" href="https://mempool.space">
|
||||||
|
|
||||||
<meta name="msapplication-TileColor" content="#000000">
|
<meta name="msapplication-TileColor" content="#000000">
|
||||||
<meta name="msapplication-config" content="/resources/favicons/browserconfig.xml">
|
<meta name="msapplication-config" content="/resources/favicons/browserconfig.xml">
|
||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
Loading…
Reference in New Issue
Block a user