This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/pages/nav-bar/nav-bar.component.html
RakVhalate ccef7fb86f
All checks were successful
continuous-integration/drone/push Build is passing
Added one button
2022-12-04 02:40:33 +10:00

11 lines
274 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<nav>
<a routerLink = "">Напоминание </a>
<br>
<a routerLink = "about">О нас </a>
<br>
Доски:
<div>
<a *ngFor="let board of boardsToList" routerLink = "threads" title="{{board.BoardExplainedName}}">{{board.BoardName}}</a>
</div>
</nav>