initial commit

This commit is contained in:
surtur 2020-04-13 03:20:09 +02:00
commit e11855807e
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
3 changed files with 115 additions and 0 deletions

5
README.md Normal file

@ -0,0 +1,5 @@
# git-dotya
home.tmpl as provided by [Gitea](https://github.com/go-gitea/gitea/blob/v1.12.0-dev/templates/home.tmpl)
home_edited.tmpl to track newly proposed/already included changes

53
home.tmpl Normal file

@ -0,0 +1,53 @@
{{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}}/img/gitea-lg.png" />
</div>
<div class="hero">
<h1 class="ui icon header title">
{{AppName}}
</h1>
<h2>{{.i18n.Tr "startpage.app_desc"}}</h2>
</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-flame" 16}} {{.i18n.Tr "startpage.install"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.install_desc" | Str2html}}
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
{{svg "octicon-device-desktop" 16}} {{.i18n.Tr "startpage.platform"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.platform_desc" | Str2html}}
</p>
</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" 16}} {{.i18n.Tr "startpage.lightweight"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.lightweight_desc" | Str2html}}
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
{{svg "octicon-code" 16}} {{.i18n.Tr "startpage.license"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.license_desc" | Str2html}}
</p>
</div>
</div>
</div>
{{template "base/footer" .}}

57
home_edited.tmpl Normal file

@ -0,0 +1,57 @@
{{template "base/head" .}}
<div class="home">
<div class="ui stackable middle very relaxed page grid">
<div class="sixteen wide center aligned centered column">
<div class="hero">
<h2 class="ui icon header title">
<!--{{AppName}}-->
Welcome to Git @ dotya.ml
</h2>
<!--<h2>{{.i18n.Tr "startpage.app_desc"}}</h2>-->
<h3>A <a href=https://gitea.io/>Gitea</a> instance by <a href=https://dotya.ml/>dotya.ml</a> provided for fun as a hobby, with passion and love</h3>
</div>
<!--<div>
<img class="logo" src="{{StaticUrlPrefix}}/img/gitea-192.png" />
</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-flame" 16}} {{.i18n.Tr "startpage.install"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.install_desc" | Str2html}}
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
{{svg "octicon-device-desktop" 16}} {{.i18n.Tr "startpage.platform"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.platform_desc" | Str2html}}
</p>
</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" 16}} {{.i18n.Tr "startpage.lightweight"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.lightweight_desc" | Str2html}}
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
<!--{{svg "octicon-code" 16}} {{.i18n.Tr "startpage.license"}}-->
{{svg "octicon-info" 16}} Questions?
</h1>
<p class="large">
<!--{{.i18n.Tr "startpage.license_desc" | Str2html}}-->
<a href=https://dotya.ml/contact/>Contact us</a>
</p>
</div>
</div>
</div>
{{template "base/footer" .}}