mirror of
https://github.com/django-components/django-components.git
synced 2025-08-31 03:07:19 +00:00
13 lines
284 B
HTML
13 lines
284 B
HTML
{% load component_tags %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<body>
|
|
{% component "slotted_component" %}
|
|
{% fill "header" %}{% endfill %}
|
|
{% fill "main" %}
|
|
{% block body %}
|
|
{% endblock %}
|
|
{% endfill %}
|
|
{% endcomponent %}
|
|
</body>
|
|
</html>
|