home.tmpl 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. {{template "base/head" .}}
  2. <div class="home-main bg">
  3. <div class="home align">
  4. <div class="ui stackable middle very relaxed page grid home-head">
  5. <div class="sixteen wide center aligned centered column">
  6. <div class="logo">
  7. <img height="80px" src="https://cdn.jsdelivr.net/npm/gitote@1.0.1/logo.png" />
  8. </div>
  9. <div class="hero">
  10. <h1 class="ui icon header title">
  11. Gitote
  12. </h1>
  13. <h2>{{.i18n.Tr "app_desc"}}</h2>
  14. <h3 class="desc">Gitote is one of the code hosts in the world with many projects. Private, public, or open source, all repositories are equipped with tools to help you host, version, and release code.</h3>
  15. <a href="{{AppURL}}login">
  16. <button class="ui green button home-main home btn">
  17. 🔑 Sign in
  18. </button>
  19. </a>
  20. {{if .ShowRegistrationButton}}
  21. <a href="{{AppURL}}join">
  22. <button class="ui blue button home-main home btn">
  23. ➕ Create Account
  24. </button>
  25. </a>
  26. {{end}}
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. <div class="ui vertical segment home-main padding">
  33. <div class="ui two column center aligned divided very relaxed stackable grid container">
  34. <div class="row">
  35. <div class="column">
  36. <img src="https://cdn.jsdelivr.net/npm/gitote@1.1.5/img/svg/developer.svg" class="ui centered tiny image">
  37. <h2 class="ui icon header">
  38. Write better code
  39. </h2>
  40. <p>Collaboration makes perfect. The conversations and code reviews that happen in Pull Requests help your team share the weight of your work and improve the software you build.</p>
  41. <a class="ui large button" href="#">Code Review</a>
  42. </div>
  43. <div class="column">
  44. <img src="https://cdn.jsdelivr.net/npm/gitote@1.1.5/img/svg/creation.svg" class="ui centered tiny image">
  45. <h2 class="ui icon header">
  46. Manage your chaos
  47. </h2>
  48. <p>Take a deep breath. On Gitote, project management happens in Issues and Projects, right alongside your code. All you have to do is invite a teammate to get them involved.</p>
  49. <a class="ui large button" href="#">Project Management</a>
  50. </div>
  51. </div>
  52. </div>
  53. </div>
  54. <div class="ui vertical segment home-main padding">
  55. <div class="ui middle aligned stackable grid container">
  56. <div class="row">
  57. <div class="eight wide column">
  58. <h3 class="ui header">Follow open source projects</h3>
  59. <p>Learn how developers build and maintain open source software. You can watch a project that interests you to see its progress as it happens.</p>
  60. <h3 class="ui header">Build on great ideas</h3>
  61. <p>You don’t have to build everything from scratch. Make copies of your favorite projects, experiment in private repositories, and tailor tools and features to meet your needs.</p>
  62. <h3 class="ui header">Contribute your skills</h3>
  63. <p>Make a suggestion, fix a bug, improve documentation, or contribute code to a project. Even asking questions helps.</p>
  64. </div>
  65. <div class="six wide right floated column">
  66. <img src="https://42f2671d685f51e10fc6-b9fcecea3e50b3b59bdc28dead054ebc.ssl.cf5.rackcdn.com/illustrations/work_chat_erdt.svg" class="ui medium image">
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. <div class="ui vertical segment home-main padding">
  72. <div class="ui stackable center aligned grid container">
  73. <div class="fourteen wide column">
  74. <img src="https://cdn.jsdelivr.net/npm/gitote@1.1.5/img/svg/co-working.svg" class="ui centered small image">
  75. <h1 class="ui icon header">
  76. A better way to work together
  77. </h1>
  78. <div class="ui stackable center aligned vertically padded grid">
  79. <div class="eight wide column">
  80. <p>Gitote brings teams together to work through problems, move ideas forward, and learn from each other along the way.</p>
  81. <a class="ui large green basic button" href="{{AppURL}}join">
  82. Sign up your team
  83. <i class="right chevron icon"></i>
  84. </a>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. <div class="ui vertical segment home-main padding getstarted">
  91. <div class="ui center aligned grid container">
  92. <div class="column">
  93. <h1 class="ui header">
  94. Get started for free — join with developers already using Gitote to share their code, work together, and build amazing things.
  95. </h1>
  96. <a class="ui positive huge button" href="{{AppURL}}join">
  97. Register
  98. </a>
  99. </div>
  100. </div>
  101. </div>
  102. {{template "base/footer_content" .}}