Я использую апострофы с начальной загрузкой. Я привел приведенный ниже пример github https://github.com/apostrophecms/apostrophe-gallery-demo
Он правильно создает веб-страницу, проблема в том, что она не отображает виджеты.мой файл layout.html: который правильно отображает содержимое
{# Automatically extends the right outer layout and also handles AJAX siutations #}
{% extends data.outerLayout %}
{% block title %}
{# Create a useful, SEO-friendly title tag based on what we have #}
{% if data.piece %}
{{ data.piece.title }}
{% elseif data.page %}
{{ data.page.title }}
{% else %}
{{ apos.log(‘Looks like you forgot to override the title block in a template that does not have access to an Apostrophe page or piece.’) }}
{% endif %}
{% endblock %}
{% block extraHead %}
{#
This block outputs its contents in the HTML document’s .
It is a good place to put extra and tags.
#}
{% endblock %}
{% block beforeMain %}
FAQ
{% endblock %}
{% block main %}
{#
Usually, your page templates in the apostrophe-pages module will override
this block. It is safe to assume this is where your page-specific content
should go.
#}
{% endblock %}
{% block afterMain %}
Logo
{% endblock %}
my default page template used:
{% extends “layout.html” %}
{% import “macros/utils.html” as utils with context %}
{% block main %}
{{ utils.columns() }} {% endblock %}
Пожалуйста, помогите, как мои виджеты будут видны на странице.PS: я новичок в апострофах