index.html 896 B

123456789101112131415161718192021222324252627282930
  1. {{template "header" .}}
  2. <main>
  3. <div class="center">
  4. <img class="logo" src="/logo.png" alt="ロゴ" width="220" height="220" />
  5. <div class="hero">
  6. <h1>Gitlin</h1>
  7. <h2>Github向けプライバシーUI</h2>
  8. </div>
  9. </div>
  10. {{ if not .setupstatus }}
  11. <div class="setup-notice">
  12. <b>Gitlinの設置未完了</b>
  13. 設置するには、「./gitlin setup」を実行して下さい。
  14. </div>
  15. {{ end}}
  16. <h3>JSは不要</h3>
  17. <p>
  18. プライバシーを守る為、JSを使用せずにGithubのレポジトリを確認する事が出来ます。
  19. </p>
  20. <h3>使い方</h3>
  21. <p>
  22. <code class="index-gh">github.com</code>を
  23. <code class="index-gh">{{.host}}</code>とし、或いは
  24. <code class="index-gh">gist.github.com</code>を
  25. <code class="index-gh">{{.host}}/gist</code>と置き換えて下さい。
  26. </p>
  27. </main>
  28. {{ template "footer" .}}