boxed / django-fastdev

An app to make it safer, faster and more fun to develop in Django
BSD 3-Clause "New" or "Revised" License
156 stars 13 forks source link

Error if you put non-space stuff outside of blocks #5

Closed boxed closed 2 years ago

boxed commented 2 years ago
{% extends "base.html" %}
{% load static %}

<html>
    <head>
        <link rel="stylesheet" href="{% static 'weather_tile/style.css' %}" />
    </head>
    <body>
      <div>
        {% block page_content %}
            <h1>
                Weather
            </h1>
            <p1>
                {{ weather.temperature }}
                {{ weather.description }}
            </p1>
        {% endblock %}
      </div>
    </body>
</html>
boxed commented 2 years ago

The html, head, body and div in the example above all all thrown away silently.