code.gitea.io/gitea@v1.22.3/templates/home.tmpl (about) 1 {{template "base/head" .}} 2 <div role="main" aria-label="{{if .IsSigned}}{{ctx.Locale.Tr "dashboard"}}{{else}}{{ctx.Locale.Tr "home"}}{{end}}" class="page-content home"> 3 <div class="tw-mb-8 tw-px-8"> 4 <div class="center"> 5 <img class="logo" width="220" height="220" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{ctx.Locale.Tr "logo"}}"> 6 <div class="hero"> 7 <h1 class="ui icon header title"> 8 {{AppName}} 9 </h1> 10 <h2>{{ctx.Locale.Tr "startpage.app_desc"}}</h2> 11 </div> 12 </div> 13 </div> 14 <div class="ui stackable middle very relaxed page grid"> 15 <div class="eight wide center column"> 16 <h1 class="hero ui icon header"> 17 {{svg "octicon-flame"}} {{ctx.Locale.Tr "startpage.install"}} 18 </h1> 19 <p class="large"> 20 {{ctx.Locale.Tr "startpage.install_desc"}} 21 </p> 22 </div> 23 <div class="eight wide center column"> 24 <h1 class="hero ui icon header"> 25 {{svg "octicon-device-desktop"}} {{ctx.Locale.Tr "startpage.platform"}} 26 </h1> 27 <p class="large"> 28 {{ctx.Locale.Tr "startpage.platform_desc"}} 29 </p> 30 </div> 31 </div> 32 <div class="ui stackable middle very relaxed page grid"> 33 <div class="eight wide center column"> 34 <h1 class="hero ui icon header"> 35 {{svg "octicon-rocket"}} {{ctx.Locale.Tr "startpage.lightweight"}} 36 </h1> 37 <p class="large"> 38 {{ctx.Locale.Tr "startpage.lightweight_desc"}} 39 </p> 40 </div> 41 <div class="eight wide center column"> 42 <h1 class="hero ui icon header"> 43 {{svg "octicon-code"}} {{ctx.Locale.Tr "startpage.license"}} 44 </h1> 45 <p class="large"> 46 {{ctx.Locale.Tr "startpage.license_desc"}} 47 </p> 48 </div> 49 </div> 50 </div> 51 {{template "base/footer" .}}