gitea源码

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 tw-text-balance">
  8. {{AppName}}
  9. </h1>
  10. <h2 class="tw-text-balance">{{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 tw-text-balance">
  20. {{ctx.Locale.Tr "startpage.install_desc" "https://docs.gitea.com/installation/install-from-binary" "https://github.com/go-gitea/gitea/tree/master/docker" "https://docs.gitea.com/installation/install-from-package"}}
  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 tw-text-balance">
  28. {{ctx.Locale.Tr "startpage.platform_desc" "https://go.dev/"}}
  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 tw-text-balance">
  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 tw-text-balance">
  46. {{ctx.Locale.Tr "startpage.license_desc" "https://code.gitea.io/gitea" "code.gitea.io/gitea" "https://github.com/go-gitea/gitea"}}
  47. </p>
  48. </div>
  49. </div>
  50. </div>
  51. {{template "base/footer" .}}