index.html 258 B

123456789101112
  1. {% extends 'landing/base.html' %}
  2. {% block content %}
  3. {% include 'landing/header.html' %}
  4. <div class="container" style="min-height: 500px;">
  5. {% block container %}
  6. {% endblock container %}
  7. </div>
  8. {% include 'landing/footer.html' %}
  9. {% endblock %}