home.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {% extends "layout.html" %}
  2. {% block title %}Home{% endblock %}
  3. {% block description %}{{description}}{% endblock %}
  4. {% block head %}
  5. <style>
  6. </style>
  7. {% endblock %}
  8. {% block content %}
  9. <div style="text-align: center">
  10. <img decoding="async" loading="lazy" src="/fs/images/logo_transparent.png" width="320px" class="logo" alt="Kinbrio: working better together">
  11. </div>
  12. <div
  13. style="background-color:rgba(175, 255, 255, 0.5); text-align: center; padding: 0 3% 0 3%; border-top: 2px solid #ffff008f;border-bottom: 2px solid #ffff008f;">
  14. <h1 style="text-decoration: underline; font-weight: bold;">{{header}}</h1>
  15. <h2>{{subheader}}</h2>
  16. <h3>{{description}}</h3>
  17. </div>
  18. <div class="row" style="justify-content: center; text-align: center;">
  19. <a class="button" href="/login">Login</a>
  20. <a class="button" href="/register">Sign Up!</a>
  21. </div>
  22. <div class="container">
  23. <div class="row" style="justify-content: center;">
  24. <div class="card flex-center col-sm-12 col-md-12 col-lg-12"
  25. style="justify-content: center; text-align: center; max-width: 90%;">
  26. <p><b>Efficient Communication at Your Fingertips</b></p>
  27. <hr />
  28. <p>Communication is the lifeblood of any organization, and at Kinbrio, we take it seriously. Our platform
  29. offers
  30. real-time communication with voice, video, and screen sharing capabilities through the flexible Matrix
  31. protocol.
  32. Say goodbye to being tied to a single provider – with Matrix, you have the freedom to choose the web and
  33. desktop
  34. clients that best suit your preferences.</p>
  35. </div>
  36. <div class="row" style="justify-content: center;">
  37. {% for blk in blocks %}
  38. <div class=" col-sm-12 col-md-6 col-lg-3 flex-center" style="justify-content: center; text-align: center">
  39. <div class="card">
  40. <p><img decoding="async" loading="lazy" src="{{blk.img}}" width=64 height=64/></p>
  41. <p><b>{{blk.title}}</b></p>
  42. <hr />
  43. <p>{{blk.content}}</p>
  44. </div>
  45. </div>
  46. {% endif %}
  47. </div>
  48. </div>
  49. {% endblock %}