package templates
import "gitgud/internal/domain"
templ repoHeader(repo *domain.Repository, active string) {
@gitLogo("size-5")
if repo.IsPrivate {
private
} else {
public
}
}
templ repoTab(href, label string, current bool) {
if current {
{ label }
} else {
{ label }
}
}
templ branchSwitcher(repo *domain.Repository, ref string, branches []string) {
▾
}