Magento2自定义页面模板

时间:2017-10-26 06:51:37

标签: magento2

我开发了一个自定义的Magento2主题,并在Vendor / Theme / Magento_Theme / layout / default.xml中创建了一个通用页面布局。在该布局中,我已将自定义通用布局配置为使用Header - Content - Footer。我已经设置了菜单位置和相应的块。

我现在正在寻找一些静态页面来使用模板和内容区域(通用页面布局)。例如,主页必须具有横幅滑块,而联系页面必须具有Google地图。有没有办法将它配置为我的主题?那是我主题的page_layout部分???我在那里找不到任何定制。

1 个答案:

答案 0 :(得分:0)

你看过默认的Core文件了吗?例如

vendor / magento / module-theme / view / frontend / layout / default.xml? 供应商/的magento /模块主题/视图/前端/模板/ HTML / footer.phtml

<div class="footer-container">
<div class="footer">
    <?php echo $block->getChildHtml() ?>
    <p class="bugs"><?php /* @escapeNotVerified */ echo __('Help Us Keep Magento Healthy') ?> - <a
        href="http://www.magentocommerce.com/bug-tracking"
        target="_blank"><strong><?php /* @escapeNotVerified */ echo __('Report All Bugs') ?></strong></a>
    </p>
    <address><?php /* @escapeNotVerified */ echo $block->getCopyright() ?></address>
</div>