Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
include タグを使用して挿入するテンプレートがあります。
{% include 'template.html' %}
また、別の場所では、その内容を生のまま表示したいと考えています。どうすればこれを達成できますか?
次のようなものを試すことができます:
page1.html
{%with flag="norender" %} {% include "template.html" %} {%endwith%}
template.html
{%if flag == "norender" %} {%verbatim%} {%endif%} {#your html #} {%if flag == "norender" %} {%endverbatim%} {%endif%}