mirror of
https://github.com/django-components/django-components.git
synced 2025-08-31 11:17:21 +00:00
17 lines
380 B
HTML
17 lines
380 B
HTML
{% load component_tags %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<body>
|
|
{% component "slotted_component" %}
|
|
{% fill "header" %}{% endfill %}
|
|
{% fill "main" %}
|
|
Helloodiddoo
|
|
{% block inner %}
|
|
{% slot "body" %}
|
|
Default inner
|
|
{% endslot %}
|
|
{% endblock %}
|
|
{% endfill %}
|
|
{% endcomponent %}
|
|
</body>
|
|
</html>
|