1 2 3 4 5 6 7 8 9 10 11 12 13
|
ngOnInit(): void {
this.title.setTitle('ma page');
this.meta.addTag({name: 'description', content: 'site web développé en Angular 10 et divers tutoriaux sur les frameworks Angular, Symfony'});
// Twitter metadata
this.meta.addTag({name: 'twitter:card', content: 'summary'});
this.meta.addTag({name: 'twitter:site', content: '@AngularUniv'});
this.meta.addTag({name: 'twitter:title', content: 'site web en Angular 10'});
this.meta.addTag({name: 'twitter:description', content: 'site web développé en Angular 10'});
this.meta.addTag({name: 'twitter:text:description', content: 'site web développé en Angular 10 '});
this.meta.addTag({name: 'twitter:image', content: 'https://avatars3.githubusercontent.com/u/166245?v=3&s=200'}); |
Partager