gitea-simplematrix/templates/home.tmpl

58 lines
1.8 KiB
Cheetah
Raw Normal View History

2020-01-30 06:18:08 +00:00
{{template "base/head" .}}
2020-01-30 11:51:29 +00:00
<div id="home" class="home">
2020-02-04 12:07:12 +00:00
<div style="margin:auto; width:100%; position: fixed; padding-top:14px">
<canvas id="c"></canvas>
2020-01-30 11:51:29 +00:00
</div>
2020-01-30 06:18:08 +00:00
<div class="ui stackable middle very relaxed page grid">
<div class="sixteen wide center aligned centered column">
<div>
2020-01-30 11:51:29 +00:00
<i class="octicon octicon-flame gitea-matrix-primary-color" style="font-size:180px;"></i>
2020-01-30 06:18:08 +00:00
</div>
<div class="hero">
<h1 class="ui icon header title">
2020-01-30 11:51:29 +00:00
<span class="gitea-matrix-primary-color">{{AppName}}</span>
2020-01-30 06:18:08 +00:00
</h1>
<h2>{{.i18n.Tr "startpage.app_desc"}}</h2>
2020-01-30 06:18:08 +00:00
</div>
</div>
</div>
<div class="ui stackable middle very relaxed page grid">
<div class="eight wide center column">
<h1 class="hero ui icon header">
<i class="octicon octicon-flame"></i> {{.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">
<i class="octicon octicon-device-desktop"></i> {{.i18n.Tr "startpage.platform"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.platform_desc" | Str2html}}
</p>
2020-01-30 06:18:08 +00:00
</div>
</div>
<div class="ui stackable middle very relaxed page grid">
<div class="eight wide center column">
<h1 class="hero ui icon header">
<i class="octicon octicon-rocket"></i> {{.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">
<i class="octicon octicon-code"></i> {{.i18n.Tr "startpage.license"}}
</h1>
<p class="large">
{{.i18n.Tr "startpage.license_desc" | Str2html}}
</p>
2020-01-30 06:18:08 +00:00
</div>
</div>
2020-01-30 06:18:08 +00:00
</div>
<script src="{{StaticUrlPrefix}}/js/theme-matrix.js"></script>
2020-01-30 06:18:08 +00:00
{{template "base/footer" .}}