mirror of
https://github.com/django-components/django-components.git
synced 2025-08-31 11:17:21 +00:00
15 lines
372 B
HTML
15 lines
372 B
HTML
{% load component_tags %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<body>
|
|
{% provide "block_provide" hello="from_block" %}
|
|
{% component "slotted_component" %}
|
|
{% fill "header" %}{% endfill %}
|
|
{% fill "main" %}
|
|
{% block body %}
|
|
{% endblock %}
|
|
{% endfill %}
|
|
{% endcomponent %}
|
|
{% endprovide %}
|
|
</body>
|
|
</html>
|