home.html 456 B

1234567891011121314151617181920212223
  1. {% extends "base.html" %}
  2. {% block js %}
  3. {% endblock %}
  4. {% block main %}
  5. <div class="jumbotron">
  6. <h1>Make video!</h1>
  7. <p class="lead">
  8. This website lets you join MP3 song and a picture, for free! Just
  9. fill the form below and we will mail you the download link when our
  10. robots finish creating your video.
  11. </p>
  12. </div>
  13. <div class="row marketing">
  14. <div class="col-lg-12">
  15. {% include 'form.html' %}
  16. </div>
  17. </div>
  18. {% endblock %}