home.tmpl 849 B

12345678910111213141516171819202122232425262728
  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>
  6. <img class="logo" src="{{AppSubUrl}}/img/gogs-lg.png" />
  7. </div>
  8. <br><br>
  9. {{if eq .Lang "ru-RU"}}
  10. <div class="hero">
  11. <h1 class="ui icon header title">
  12. Сервер совместной разработки НИЯУ МИФИ
  13. </h1>
  14. </div>
  15. См. также: <a href='https://gitlab.mephi.ru' target='_blank'>https://gitlab.mephi.ru/</a>
  16. {{else}}
  17. <div class="hero">
  18. <h1 class="ui icon header title">
  19. NRNU MEPhI git-based development collaboration service
  20. </h1>
  21. </div>
  22. See also: <a href='https://gitlab.mephi.ru' target='_blank'>https://gitlab.mephi.ru/</a>
  23. {{end}}
  24. </div>
  25. </div>
  26. </div>
  27. {{template "base/footer" .}}