mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-13 16:09:59 +00:00
28 lines
854 B
Plaintext
28 lines
854 B
Plaintext
|
||
.mt-auto.mb-auto
|
||
.tabby-logo
|
||
h1.tabby-title Tabby
|
||
sup α
|
||
|
||
.list-group.mb-4
|
||
a.list-group-item.list-group-item-action.d-flex.pt-3.pb-3(
|
||
*ngFor='let command of commands; trackBy: buttonsTrackBy',
|
||
(click)='command.run()',
|
||
)
|
||
.d-flex.align-self-center([innerHTML]='sanitizeIcon(command.icon)')
|
||
span {{command.label}}
|
||
|
||
footer.d-flex.align-items-center
|
||
.btn-group.me-auto
|
||
button.btn.btn-link((click)='homeBase.openGitHub()')
|
||
i.fab.fa-github
|
||
span GitHub
|
||
button.btn.btn-link((click)='homeBase.reportBug()')
|
||
i.fas.fa-bug
|
||
span(translate) Report a problem
|
||
|
||
.form-control-static.selectable.no-drag(
|
||
translate='Version: {version}',
|
||
[translateParams]='{ version: this.homeBase.appVersion }'
|
||
)
|