mempool/frontend/src/app/components/docs/docs.component.html

49 lines
1.3 KiB
HTML
Raw Normal View History

<div class="container-xl">
<div class="text-center">
2021-12-09 17:49:36 +04:00
<h2 i18n="documentation.title">Documentation</h2>
<ul ngbNav #nav="ngbNav" [(activeId)]="activeTab" class="nav-tabs">
2022-03-24 08:55:20 -04:00
<li [ngbNavItem]="0" *ngIf="showFaqTab">
<a ngbNavLink [routerLink]="['/docs/faq' | relativeUrl]">FAQ</a>
2022-03-24 08:55:20 -04:00
<ng-template ngbNavContent>
<app-api-docs [whichTab]="'faq'"></app-api-docs>
2022-03-24 08:55:20 -04:00
</ng-template>
</li>
2022-03-24 08:55:20 -04:00
<li [ngbNavItem]="1">
<a ngbNavLink [routerLink]="['/docs/api/rest' | relativeUrl]">API - REST</a>
<ng-template ngbNavContent>
<app-api-docs [whichTab]="'rest'"></app-api-docs>
</ng-template>
</li>
2022-03-24 08:55:20 -04:00
<li [ngbNavItem]="2" *ngIf="showWebSocketTab">
<a ngbNavLink [routerLink]="['/docs/api/websocket' | relativeUrl]">API - WebSocket</a>
<ng-template ngbNavContent>
<app-api-docs [whichTab]="'websocket'"></app-api-docs>
</ng-template>
</li>
</ul>
<div id="main-tab-content" [ngbNavOutlet]="nav" class="mt-2"></div>
<br>
<div id="footer" class="text-center">
<a [routerLink]="['/terms-of-service']" i18n="shared.terms-of-service|Terms of Service">Terms of Service</a>
|
<a [routerLink]="['/privacy-policy']" i18n="shared.privacy-policy|Privacy Policy">Privacy Policy</a>
</div>
</div>
</div>