include
Renderiza um template parcial (snippet) dentro do template atual.
string
O nome do snippet a ser incluído.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Tags de tema ajudam você a estruturar e organizar seus templates.
include{% include 'snippet_name' %}
<div class="products">
{% include 'product-card' %}
</div>
<div class="product-card">
<h3>Título do Produto</h3>
<p>R$ 19,99</p>
</div>
<div class="products">
<div class="product-card">
<h3>Título do Produto</h3>
<p>R$ 19,99</p>
</div>
</div>
