tabby/tabby-core/src/components/startPage.component.pug
Eugene 1e5cfd1d4b
bootstrap 5 WIP (#7891)
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
2023-02-26 20:42:31 +01:00

27 lines
842 B
Plaintext
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.

.mt-5
.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 }'
)