in_work.html 500 B

123456789101112131415161718
  1. {% extends 'landing/index.html' %}
  2. {% load static %}
  3. {% block container %}
  4. <div class="row" style="min-height: 500px;">
  5. <div class="col-12 col-sm-6 col-md-5 col-lg-4 col-xxl-3">
  6. {% include 'landing/menu.html' %}
  7. </div>
  8. <div class="col-12 col-sm-6 col-md-7 col-lg-8 col-xxl-9" style="overflow-wrap: break-word;">
  9. {{ mainpage.content|safe }}
  10. <h1 class="display-6 my-5">Страница в разработке!</h1>
  11. </div>
  12. </div>
  13. {% endblock %}