index.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {{ define "title"}} {{ .Site.Title}} {{end}}
  2. {{ define "header"}} {{ partial "header" .}} {{end}}
  3. {{ define "main"}}
  4. <div id="hero">
  5. <h2>{{ i18n "title" }}</h2>
  6. <p>{{ i18n "description" }}</p>
  7. </div>
  8. <div id="action-buttons">
  9. <a class="button primary big" href="https://notabug.org/diogo/gnu-social/src/nightly/INSTALL.md">{{ i18n "install-button" }}</a>
  10. <a class="button outline big" href="{{ .Params.url | absLangURL }}docs/try">{{ i18n "join-button" }}</a>
  11. </div>
  12. <div id="main">
  13. <div class="row gutters text-center">
  14. <div class="col col-3 item">
  15. <figure>
  16. <img alt="Versatile" height="48" src="{{ "/img/gnu/1.1.png" | relURL }}" width="48">
  17. </figure>
  18. <h3>{{ i18n "versatile" }}</h3>
  19. <p>{{ i18n "versatile-description" }}</p>
  20. </div>
  21. <div class="col col-3 item">
  22. <figure>
  23. <img alt="Plug and Play" height="48" src="{{ "/img/gnu/3.1.png" | relURL }}" width="48">
  24. </figure>
  25. <h3>{{ i18n "plug-and-play" }}</h3>
  26. <p>{{ i18n "plug-and-play-description" }}</p>
  27. </div>
  28. <div class="col col-3 item">
  29. <figure>
  30. <img alt="Privacy focused" height="48" src="{{ "/img/gnu/4.1.png" | relURL }}" width="48">
  31. </figure>
  32. <h3>{{ i18n "privacy-focused" }}</h3>
  33. <p>{{ i18n "privacy-focused-description" }}</p>
  34. </div>
  35. <div class="col col-3 item">
  36. <figure>
  37. <img alt="Stable" height="48" src="{{ "/img/gnu/5.1.png" | relURL }}" width="48">
  38. </figure>
  39. <h3>{{ i18n "stable" }}</h3>
  40. <p>{{ i18n "stable-description" }}</p>
  41. </div>
  42. </div>
  43. <div class="row gutters text-center">
  44. <div class="col col-6 item">
  45. <h2>{{ i18n "faq" }}</h2>
  46. <div class="paragraph" id="join">
  47. <h3>{{ i18n "faq-where" }}</h3>
  48. <p>{{ i18n "faq-instances" }}</p>
  49. <p><a href="{{ .Params.url | absLangURL }}docs/try">{{ i18n "click-here" }}</a>{{ i18n "faq-join" }}</p>
  50. <strong>{{ i18n "faq-disclaimer" }}</strong><i>{{ i18n "faq-disclaimer-content" }}</i>
  51. </div>
  52. <br>
  53. <div class="paragraph">
  54. <h3>{{ i18n "faq-who" }}</h3>
  55. <p>{{ i18n "faq-current" }}<a href="https://www.diogo.site/">Diogo Cordeiro</a>.</p> <p>{{ i18n "faq-list" }}
  56. <a href="https://notabug.org/diogo/gnu-social/src/nightly/CREDITS.md">{{ i18n "here" }}</a>.</p>
  57. {{ i18n "faq-founders" }}<a href="https://mat.tl/">Matt Lee</a>,
  58. <a href="https://en.wikipedia.org/wiki/Evan_Prodromou">Evan Prodromou</a> {{ i18n "and" }}
  59. <a href="http://mmn-o.se">Mikael Nordfeldth</a>.
  60. </p>
  61. <h2>{{ i18n "chat" }}</h2>
  62. <p>{{ i18n "chat-discuss" }} <a
  63. href="https://webchat.freenode.net/?channels=#social">#social</a>{{ i18n "on-irc" }}</p>
  64. <p>{{ i18n "chat-contribute" }}<a
  65. href="https://notabug.org/diogo/gnu-social">{{ i18n "repository" }}</a>.
  66. </p>
  67. <p>{{ i18n "chat-student" }}<a
  68. href="https://www.diogo.site/projects/GNU-social/soc">GNU social's Summer of Code</a>.
  69. </p>
  70. </div>
  71. </div>
  72. <div class="col col-5 item">
  73. <h2>{{ i18n "news" }}</h2>
  74. <p> <a href="{{ .Params.url | absLangURL }}news/">{{ i18n "click-here" }}</a>{{ i18n "news-list" }}
  75. <ul id="posts">
  76. {{ range (.Paginate (where .Pages.ByDate.Reverse "Type" "news") 4).Pages }} {{ partial "page-summary" . }} {{ end }}
  77. </ul>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. {{ end }}
  83. {{ define "footer"}} {{ partial "footer" .}} {{end}}