Estou usando o Magento 2 CE versão 2.1.0 no WAMP Windows 10
Eu já me referi
Magento 2: Como substituir o arquivo html do modelo padrão do mini-carrinho?
Gostaria de substituir o Magento 2 Default Luma Theme
Eu tenho a estrutura de pastas abaixo
magento2
|_ app
|_ design
|_ frontend
|_ Custom
|_Theme
|_Magento_Theme
|_templates
|_root.phtml - Copy of Luma
registration.php
theme.xml
app \ design \ frontend \ Custom \ Theme \ Magento_Theme \ registration.php
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::THEME,
'frontend/Custom/Theme',
__DIR__
);
app \ design \ frontend \ Custom \ Theme \ Magento_Theme \ theme.xml
<theme xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Config/etc/theme.xsd">
<title>My Theme</title>
<parent>Magento/luma</parent>
</theme>
Eu corro php bin/magento setup:static-content:deploy
e limpo o cache também. Ele não está exibindo meu tema recém-criado no Admin -> Content -> Design -> Configuration
. Editar lista suspensa.
O que ainda estou sentindo falta?