42 lines
525 B
Plaintext
42 lines
525 B
Plaintext
==================
|
|
Partialdef Basic
|
|
==================
|
|
|
|
<div>
|
|
{% partialdef header %}
|
|
<h1>Title</h1>
|
|
{% endpartialdef %}
|
|
</div>
|
|
|
|
---
|
|
|
|
(template
|
|
(content)
|
|
(partialdef_group
|
|
(push_partial)
|
|
(template
|
|
(content))
|
|
(pop_partial))
|
|
(content))
|
|
|
|
==================
|
|
Partialdef Inline
|
|
==================
|
|
|
|
<div>
|
|
{% partialdef header inline %}
|
|
<h1>Title</h1>
|
|
{% endpartialdef %}
|
|
</div>
|
|
|
|
---
|
|
|
|
(template
|
|
(content)
|
|
(partialdef_group
|
|
(push_partial)
|
|
(template
|
|
(content))
|
|
(pop_partial))
|
|
(content))
|