Создал базовые файлы темы по документации. После применения темы при загрузке страницы не загружаются многие ресурсы. Почему? Разве при их отсутствии в теме они не должны браться из родительской(в данном случае "Magento/blank").
php bin/magento setup:static-content:deploy - выполнял, кеш чистил.
"Current application mode: developer."
theme.xml<theme xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Config/etc/theme.xsd">
<title>myTheme</title> <!-- your theme's name -->
<parent>Magento/blank</parent> <!-- the parent theme, in case your theme inherits from an existing theme -->
<media>
<preview_image>media/preview.jpeg</preview_image> <!-- the path to your theme's preview image -->
</media>
</theme>
registration.php<?php
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::THEME,
'frontend/myVendor/myTheme',
__DIR__
);
Спасибо!