Added the homepage template

This commit is contained in:
Nicolai Ort 2020-11-05 17:59:05 +01:00
parent 12dd70f710
commit 16620cb5d1
1 changed files with 39 additions and 0 deletions

39
templates/home.tmpl Normal file
View File

@ -0,0 +1,39 @@
{{template "base/head" .}}
<div class="home">
<div class="ui stackable middle very relaxed page grid">
<div class="sixteen wide center aligned centered column">
<div>
<img class="logo" src="{{StaticUrlPrefix}}/logo_nobg.png" />
</div>
<div class="hero">
<h1 class="ui icon header title">
{{AppName}}
</h1>
</div>
</div>
</div>
<div class="ui stackable middle very relaxed page grid">
<div class="eight wide center column">
<h1 class="hero ui icon header">
{{svg "octicon-rocket"}} Fast version control and deployments
</h1>
<p class="large">
Gitea provides a simple and lightweight git server.<br>
Drone provides simple but powerful CI/CD.
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
{{svg "octicon-code"}} Open Source
</h1>
<p class="large">
Out entire development stack is powered by awesome open source technologies.<br>
Version control powered by Gitea<br>
CI/CD powered by Drone<br>
Container powered by Docker Swarm<br>
Storage powered by CEPH<br>
</p>
</div>
</div>
</div>
{{template "base/footer" .}}