Я хочу, чтобы внутри моего литерального шаблона 'building' был шаблонный шаблон 'glass'.
<script id="building" type="text/x-nunjucks-template">
{% for x in range(0, 5) %}
<a-entity template="src: building.template; type: handlebars" position="{{ x * 5 }} 0 0">
</a-entity>
{% endfor %}
</script>
<script id="glass" type="text/x-nunjucks-template">
{% for x in range(0, 5) %}
<a-entity template="src: glass.template; type: handlebars" position="{{ x }} 2 2">
</a-entity>
{% endfor %}
</script>
Я понимаю, что их нужно запускать в файлах .HTML - я просто подумал, есть лиобойти, чтобы я мог иметь следующее:
index.html -> building.template -> glass.template
Спасибо