home.tmpl 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {{template "base/head" .}}
  2. <div class="home">
  3. <div class="ui stackable middle very relaxed page grid">
  4. <div class="sixteen wide center aligned centered column">
  5. <div class="logo">
  6. <img src="{{AppSubURL}}/img/favicon.png" width="20%" />
  7. </div>
  8. <div class="hero">
  9. <h1 class="ui icon header title">
  10. Endevir's git server
  11. </h1>
  12. {{if eq .Lang "ru-RU"}}
  13. <h2>Добро пожаловать на открытый сервер Git репозиториев!</h2>
  14. {{else}}
  15. <h2>Welcome to an open git repository server!</h2>
  16. {{end}}
  17. </div>
  18. </div>
  19. </div>
  20. {{if eq .Lang "ru-RU"}}
  21. <div class="ui stackable middle very relaxed page grid">
  22. <div class="twenty wide center aligned centered column">
  23. <p class="large">
  24. На этом сервере вы можете просмотреть все проекты, в которых я участвовал и которые находятся в открытом доступе, а также зарегистрироваться и использовать сервер как хранилище своих проектов.
  25. </p>
  26. <p class="large">
  27. Ограничений на размер проекта и их количество, а также количество публичных и приватных репозиториев пока нет.
  28. </p>
  29. <p class="large">
  30. Ввиду того, что сервер разрабатывается и поддерживается мной исключительно в образовательных целях, гарантия 100% работоспособности и аптайма не даётся.
  31. </p>
  32. <p class="large">
  33. За основу был взят проект Gogs (<a href="http://gogs.io/">gogs.io</a>), значительно схожий по интерфейсу и возможностям с сайтом <a href="github.com" target="blank">github.com.</a>.
  34. </p>
  35. </div>
  36. </div>
  37. {{else}}
  38. <div class="ui stackable middle very relaxed page grid">
  39. <div class="twenty wide center aligned centered column">
  40. <p class="large">
  41. On this server you can see and follow all my open-source projects, or register and use this platform to place and maintain your own projects.
  42. </p>
  43. <p class="large">
  44. There are still no limitations on public/private repositories number, neither on their size.
  45. </p>
  46. <p>
  47. According to the fact, that this site (as well as all other sites on gi1dor.ru domain) is developed and maintained by me mostly in educational purposes, I cannot guarantee 100% uptime and stability of this server. By the way, backups of all repositories (and whole hard drive) are created frequently, so there's a very little chance that your data could be destroyed or corrupted. Any questions or suggestions you can send me by e-mail: <a href="mailto:e1.gi1dor@gmail.com">e1.gi1dor@gmail.com</a>
  48. </p>
  49. <p>
  50. This site is based on Gogs project (<a href="http://gogs.io/">gogs.io</a>), which has similar UI and features as <a href="github.com" target="blank">github.com</a> site has.
  51. </p>
  52. </div>
  53. </div>
  54. {{end}}
  55. </div>
  56. {{template "base/footer" .}}