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.
16 lines
543 B
16 lines
543 B
<nav>
|
|
<ul>
|
|
<li><a routerLink="/" routerLinkActive="active" ariaCurrentWhenActive="page">{{ 'title' | transloco }}</a></li>
|
|
<li><a routerLink="/recipe/add" routerLinkActive="active" ariaCurrentWhenActive="page">{{ 'recipe.add.link' |
|
|
transloco }}</a></li>
|
|
<select (change)="changeLanguage($event)">
|
|
<option value="en">🇬🇧</option>
|
|
<option value="fr">🇫🇷</option>
|
|
<option value="ru">🇷🇺</option>
|
|
</select>
|
|
</ul>
|
|
</nav>
|
|
|
|
<div id="page-wrapper">
|
|
<router-outlet></router-outlet>
|
|
</div> |