Files
docker-compose/dev/templates/home.tmpl

33 lines
1.1 KiB
Cheetah

{{template "base/head" .}}
<div role="main" aria-label="{{if .IsSigned}}{{ctx.Locale.Tr "dashboard"}}{{else}}{{ctx.Locale.Tr "home"}}{{end}}" class="page-content home">
<div class="tw-mb-8 tw-px-8">
<div class="center">
<img class="logo" width="220" height="220" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{ctx.Locale.Tr "logo"}}">
<div class="hero">
<h1 class="ui icon header title tw-text-balance">
{{AppName}}
</h1>
<h2 class="tw-text-balance">Git with a cup of tea</h2>
</div>
</div>
</div>
<div class="ui stackable middle very relaxed page grid">
<div class="sixteen wide center column">
<h1 class="hero ui icon header">
{{svg "octicon-git-branch"}} dev.pivoine.art
</h1>
<p class="large tw-text-balance">
A painless self-hosted Git service for development and collaboration.
</p>
{{if not .IsSigned}}
<div class="tw-mt-8">
<a class="ui primary button" href="{{AppSubUrl}}/user/login">
{{svg "octicon-sign-in"}} Sign In
</a>
</div>
{{end}}
</div>
</div>
</div>
{{template "base/footer" .}}