base.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <!-- id='test' to test something! -->
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>To-Do lists</title>
  9. <link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  10. <link href="/static/base.css" rel="stylesheet">
  11. </head>
  12. <body>
  13. <div class="container">
  14. <div class="row">
  15. <div class="col-md-6 col-md-offset-3 jumbotron" id='id_top_banner'>
  16. <div class="text-center">
  17. <a id='main_text' href="http://localhost:8000/">{% block header_text %}{% endblock %}</a>
  18. <form method="POST" action="{% block form_action %}{% endblock %}">
  19. <input name="item_text" id="id_new_item"
  20. class="form-control input-lg"
  21. placeholder="Enter a to-do item" />
  22. {% csrf_token %}
  23. </form>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="row">
  28. <div class="col-md-6 col-md-offset-3">
  29. {% block table %}
  30. {% endblock %}
  31. </div>
  32. </div>
  33. <div class="row">
  34. <div class="col-md-6 col-md-offset-3">
  35. <div class="text-center">
  36. <h4><a href="http://localhost:8000/lists/3/">todo.beanzilla.net/lists/3/</a></h4>
  37. <p>By: Beanzilla</p>
  38. </div>
  39. </div>
  40. </div>
  41. </body>
  42. </html>