mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 11:43:51 +00:00
10 lines
293 B
HTML
10 lines
293 B
HTML
<nav>
|
|
<a [title]="'homeLink' | i18n" href="/">{{ 'home' | i18n }}</a>
|
|
<a [title]="'aboutLink' | i18n" href="/about">{{ 'about' | i18n }}</a>
|
|
</nav>
|
|
<main>
|
|
<p>{{ 'itemCount' | i18n:count }}</p>
|
|
<span>{{ 'camelCaseKey' | i18n }}</span>
|
|
<div>{{ 'snake_case_key' | i18n }}</div>
|
|
</main>
|