-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
121 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/app/design/frontend/rwd_faceandfigure/default/etc/theme.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Magento | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This source file is subject to the Academic Free License (AFL 3.0) | ||
* that is bundled with this package in the file LICENSE_AFL.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://opensource.org/licenses/afl-3.0.php | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* | ||
* DISCLAIMER | ||
* | ||
* Do not edit or add to this file if you wish to upgrade Magento to newer | ||
* versions in the future. If you wish to customize Magento for your | ||
* needs please refer to http://www.magentocommerce.com for more information. | ||
* | ||
* @category design | ||
* @package rwd_default | ||
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com) | ||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | ||
*/ | ||
--> | ||
<theme> | ||
<parent>rwd_hannasherbs/default</parent> | ||
</theme> |
1 change: 1 addition & 0 deletions
1
src/app/design/frontend/rwd_faceandfigure/default/faceandfigure
Submodule faceandfigure
added at
92fcc4
59 changes: 59 additions & 0 deletions
59
src/app/design/frontend/rwd_faceandfigure/default/template/page/empty.phtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
/** | ||
* Magento | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* This source file is subject to the Academic Free License (AFL 3.0) | ||
* that is bundled with this package in the file LICENSE_AFL.txt. | ||
* It is also available through the world-wide-web at this URL: | ||
* http://opensource.org/licenses/afl-3.0.php | ||
* If you did not receive a copy of the license and are unable to | ||
* obtain it through the world-wide-web, please send an email | ||
* to [email protected] so we can send you a copy immediately. | ||
* | ||
* DISCLAIMER | ||
* | ||
* Do not edit or add to this file if you wish to upgrade Magento to newer | ||
* versions in the future. If you wish to customize Magento for your | ||
* needs please refer to http://www.magentocommerce.com for more information. | ||
* | ||
* @category design | ||
* @package rwd_default | ||
* @copyright Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com) | ||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) | ||
*/ | ||
?> | ||
<?php | ||
/** | ||
* Template for Mage_Page_Block_Html | ||
*/ | ||
?> | ||
|
||
<!DOCTYPE html> | ||
|
||
<!--[if lt IE 7 ]> <html lang="en" id="top" class="no-js ie6"> <![endif]--> | ||
<!--[if IE 7 ]> <html lang="en" id="top" class="no-js ie7"> <![endif]--> | ||
<!--[if IE 8 ]> <html lang="en" id="top" class="no-js ie8"> <![endif]--> | ||
<!--[if IE 9 ]> <html lang="en" id="top" class="no-js ie9"> <![endif]--> | ||
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" id="top" class="no-js"> <!--<![endif]--> | ||
|
||
<head> | ||
<?php echo $this->getChildHtml('head') ?> | ||
</head> | ||
<body class="page-empty <?php echo $this->getBodyClass()?$this->getBodyClass():'' ?>"> | ||
<h1>HERE</h1> | ||
<div> | ||
<?php echo $this->getChildHtml('after_body_start') ?> | ||
<?php echo $this->getChildHtml('global_messages') ?> | ||
<?php echo $this->getChildHtml('content') ?> | ||
<?php echo $this->getChildHtml('before_body_end') ?> | ||
<?php echo $this->getAbsoluteFooter() ?> | ||
</div> | ||
|
||
<!-- Load React. --> | ||
<!-- Note: when deploying, replace "development.js" with "production.min.js". --> | ||
<script src="https://unpkg.com/react@16/umd/react.production.min.js" crossorigin></script> | ||
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" crossorigin></script> | ||
</body> | ||
</html> |