Add home.tmpl
This commit is contained in:
parent
ce74eb8c51
commit
7a724dc306
58
home.tmpl
Normal file
58
home.tmpl
Normal file
@ -0,0 +1,58 @@
|
||||
{{template "base/head" .}}
|
||||
<div class="page-content home">
|
||||
<div class="ui container">
|
||||
<div class="hero">
|
||||
<img class="logo" src="{{StaticUrlPrefix}}/img/logo.svg" />
|
||||
<h1>Nestict Cloud CodeLab</h1>
|
||||
<h2>Your secure, self-hosted Git solution</h2>
|
||||
</div>
|
||||
|
||||
<div class="ui grid">
|
||||
<div class="eight wide column">
|
||||
<div class="item">
|
||||
<img src="{{StaticUrlPrefix}}/img/fire.svg" />
|
||||
<h3>Fast Setup</h3>
|
||||
<p>Get started in minutes. Run the binary for your platform, use our Docker image, or install through your package manager.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="eight wide column">
|
||||
<div class="item">
|
||||
<img src="{{StaticUrlPrefix}}/img/laptop.svg" />
|
||||
<h3>Works Everywhere</h3>
|
||||
<p>Available for Windows, macOS, Linux, ARM, and more. Access your code from any device, anytime.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="eight wide column">
|
||||
<div class="item">
|
||||
<img src="{{StaticUrlPrefix}}/img/rocket.svg" />
|
||||
<h3>Resource Friendly</h3>
|
||||
<p>Runs smoothly on minimal hardware. Perfect for home servers, Raspberry Pi, or any small instance.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="eight wide column">
|
||||
<div class="item">
|
||||
<img src="{{StaticUrlPrefix}}/img/code.svg" />
|
||||
<h3>Community Powered</h3>
|
||||
<p>Built with love by developers for developers. Join our growing community and contribute today!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{if not .IsLogged}}
|
||||
<div class="ui divider"></div>
|
||||
<div class="ui middle very relaxed page grid">
|
||||
<div class="sixteen wide center aligned column">
|
||||
<a class="ui huge primary button" href="{{AppSubUrl}}/user/login">
|
||||
{{.i18n.Tr "home.sign_in"}}
|
||||
</a>
|
||||
{{if .SignUpAllowed}}
|
||||
<a class="ui huge basic button" href="{{AppSubUrl}}/user/sign_up">
|
||||
{{.i18n.Tr "home.sign_up"}}
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
{{template "base/footer" .}}
|
Loading…
x
Reference in New Issue
Block a user