layout.html
layout.html
<!DOCTYPE html>
<html>
<body>
{% block content %}{% endblock %} {# The content of checkout.html will be shown #}
</body>
</html>checkout.html
{% extends "layout.html" %}
{% block content %}
Hello, world!
{% endblock %}Last updated