123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="en">
- <!-- id='test' to test something! -->
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>To-Do lists</title>
- <link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
- <link href="/static/base.css" rel="stylesheet">
- </head>
- <body>
- <div class="container">
- <div class="row">
- <div class="col-md-6 col-md-offset-3 jumbotron" id='id_top_banner'>
- <div class="text-center">
- <a id='main_text' href="http://localhost:8000/">{% block header_text %}{% endblock %}</a>
- <form method="POST" action="{% block form_action %}{% endblock %}">
- <input name="item_text" id="id_new_item"
- class="form-control input-lg"
- placeholder="Enter a to-do item" />
- {% csrf_token %}
- </form>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="col-md-6 col-md-offset-3">
- {% block table %}
- {% endblock %}
- </div>
- </div>
- <div class="row">
- <div class="col-md-6 col-md-offset-3">
- <div class="text-center">
- <h4><a href="http://localhost:8000/lists/3/">todo.beanzilla.net/lists/3/</a></h4>
- <p>By: Beanzilla</p>
- </div>
- </div>
- </div>
- </body>
- </html>
|