Commit 522d737a authored by Dennis Willers's avatar Dennis Willers 🏀

Fix Impressum and Rules Content

parent c2aa9d56
Pipeline #385 passed with stages
in 5 minutes and 46 seconds
...@@ -54,3 +54,16 @@ ...@@ -54,3 +54,16 @@
Impressum vom <a href="https://www.impressum-generator.de">Impressum Generator</a> der <a href="https://www.kanzlei-hasselbach.de/standorte/bonn/">Kanzlei Hasselbach, Bonn</a> Impressum vom <a href="https://www.impressum-generator.de">Impressum Generator</a> der <a href="https://www.kanzlei-hasselbach.de/standorte/bonn/">Kanzlei Hasselbach, Bonn</a>
</mat-card-content> </mat-card-content>
</mat-card> </mat-card>
<br>
<br>
<br>
<mat-card class="transparent">
<mat-card-subtitle>Tabooh-Version: 2.0</mat-card-subtitle>
<mat-card-subtitle>Zuletzt geändert am: 15.02.2021</mat-card-subtitle>
<mat-card-content>
<button mat-raised-button color="primary" (click)="goToStartpage()">Zur Startseite</button>
</mat-card-content>
</mat-card>
<br>
<br>
<br>
import { Component, OnInit } from '@angular/core'; import { Component, OnInit } from '@angular/core';
import {Router} from '@angular/router';
@Component({ @Component({
selector: 'app-impressum', selector: 'app-impressum',
...@@ -7,9 +8,12 @@ import { Component, OnInit } from '@angular/core'; ...@@ -7,9 +8,12 @@ import { Component, OnInit } from '@angular/core';
}) })
export class ImpressumComponent implements OnInit { export class ImpressumComponent implements OnInit {
constructor() { } constructor(private router: Router) { }
ngOnInit(): void { ngOnInit(): void {
} }
goToStartpage(): void {
this.router.navigate(['']);
}
} }
...@@ -115,7 +115,7 @@ ...@@ -115,7 +115,7 @@
</li> </li>
<li> <li>
Bei einer <b><a class="redfont">falschen Eingabe</a></b> habt ihr die <b>Möglichkeit</b>,<br> Bei einer <b><a class="redfont">falschen Eingabe</a></b> habt ihr die <b>Möglichkeit</b>,<br>
<b>nach</b> einer <b>Runde</b> die <b>Antworten</b> im dargestellten <b>Spielverlauf azupassen</b>. <b>nach</b> einer <b>Runde</b> die <b>Antworten</b> im dargestellten <b>Spielverlauf anzupassen</b>.
</li> </li>
</ul> </ul>
</mat-card-content> </mat-card-content>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment