terms_of_service.html 738 B

1234567891011121314151617181920212223242526272829303132
  1. {% extends "misago/base.html" %}
  2. {% load i18n misago_absoluteurl %}
  3. {% block title %}{{ title }} | {{ block.super }}{% endblock %}
  4. {% block og-title %}{{ title }}{% endblock %}
  5. {% block twitter-title %}{{ title }}{% endblock %}
  6. {% block og-url %}{% absoluteurl request_path %}{% endblock %}
  7. {% block twitter-url %}{% absoluteurl request_path %}{% endblock %}
  8. {% block content %}
  9. <div class="legal-page legal-terms-of-service">
  10. <div class="page-header-bg">
  11. <div class="page-header">
  12. <div class="container">
  13. <h1>{{ title }}</h1>
  14. </div>
  15. </div>
  16. </div>
  17. <div class="legal-body container">
  18. <article class="misago-markup">
  19. {{ text|safe }}
  20. </article>
  21. </div>
  22. </div>
  23. {% endblock content %}