top.ejs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <%- include('commons/head'); %>
  2. <body class="pt-3">
  3. <div class="container border p-5">
  4. <div class="text-center">
  5. <h1>GROWI Bot</h1>
  6. <h4>GROWI is a wiki that can be written in Markdown and easy to share information with everyone.</h4>
  7. <div>
  8. <img height="300" width="300" alt="GROWi Bot" src="/images/growi-bot.png" />
  9. </div>
  10. <div class="m-3">
  11. <a href=<%- url %>>
  12. <img alt="Add to Slack" height="40" width="139" src="/images/add-to-slack.png"/>
  13. </a>
  14. </div>
  15. <a class="btn btn-outline-success" href="https://docs.growi.org/en/admin-guide/management-cookbook/slack-integration/official-bot-settings.html">Getting started</a>
  16. <div class="d-flex justify-content-evenly my-3">
  17. <% if (isOfficialMode) { %>
  18. <a href="/privacy">
  19. Privacy Policy
  20. </a>
  21. <a href="/term">
  22. Term of Service
  23. </a>
  24. <% } %>
  25. </div>
  26. </div>
  27. <div class="m-3">
  28. <div class="d-flex flex-column align-items-center justify-content-center">
  29. <ul>
  30. With GROWI for Slack, you can:
  31. <ul>
  32. <li>Search pages for multiple GROWI apps.</li>
  33. <li>Create pages easily.</li>
  34. </ul>
  35. </li>
  36. </ul>
  37. <div class="mt-3">
  38. GROWI is open-source software developed by WESEEK, Inc and we are looking for contributors who can work with us.<br>
  39. Please <a href="https://growi-slackin.weseek.co.jp/">join</a> Slack and feel free to talk to WESEEK members!
  40. </div>
  41. </div>
  42. </div>
  43. <%- include('commons/footer'); %>
  44. </div>
  45. </body>