mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
63 lines
2.9 KiB
PHP
63 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Widgetized Home Sidebar Area (Widgets)
|
|
*
|
|
*
|
|
* @file sidebar-home.php
|
|
* @package WordPress
|
|
* @subpackage Shell
|
|
* @author Emil Uzelac, nofearinc
|
|
* @copyright 2003 - 2012 ThemeID, 2013 DevWP
|
|
* @license license.txt
|
|
* @version Release: 1.0
|
|
* @filesource wp-content/themes/shell-lite/sidebar-home.php
|
|
* @link http://codex.wordpress.org/Theme_Development#Widgets_.28sidebar.php.29
|
|
* @since available since Release 1.0
|
|
*/
|
|
?>
|
|
<div id="widgets">
|
|
<div class="grid col-300">
|
|
<?php shell_widgets(); // above widgets hook ?>
|
|
|
|
<?php if (!dynamic_sidebar('primary-home-sidebar-widget')) : ?>
|
|
|
|
<div class="widget-title-home"><h3><?php _e('Primary Home Widget', 'shell'); ?></h3></div>
|
|
<p>
|
|
<?php _e( "Testimonials are a powerful selling tool. Many great selling ads are made up of 1/3 testimonials of the company's products or services. This is only a suggestion, since this area is widgetized you can use it any way you please to satisfy your needs.", 'shell' ); ?>
|
|
</p>
|
|
|
|
<?php endif; //end of primary-home-sidebar-widget ?>
|
|
|
|
<?php shell_widgets_end(); // shell after widgets hook ?>
|
|
</div><!-- end of .col-300 -->
|
|
|
|
<div class="grid col-300">
|
|
<?php shell_widgets(); // shell above widgets hook ?>
|
|
|
|
<?php if (!dynamic_sidebar('secondary-home-sidebar-widget')) : ?>
|
|
|
|
<div class="widget-title-home"><h3><?php _e('Secondary Home Widget', 'shell'); ?></h3></div>
|
|
<p>
|
|
<?php _e( "Since 1975, Shell-Lite has been committed to ethically producing the highest quality service in the world. Today with more than 5000 employees worldwide Shell-Lite is still committed to same producing quality.", 'shell' ); ?>
|
|
</p>
|
|
|
|
<?php endif; //end of secondary-home-sidebar-widget ?>
|
|
|
|
<?php shell_widgets_end(); // after widgets hook ?>
|
|
</div><!-- end of .col-300 -->
|
|
|
|
<div class="grid col-300 fit">
|
|
<?php shell_widgets(); // above widgets hook ?>
|
|
|
|
<?php if (!dynamic_sidebar('tertiary-home-sidebar-widget')) : ?>
|
|
|
|
<div class="widget-title-home"><h3><?php _e('Tertiary Home Widget', 'shell'); ?></h3></div>
|
|
<p>
|
|
<?php _e( "Headline, Subheadline, brief info above the call-to-action button and including the button, together with its destination link can be changed via Theme Options. Logo is uploadable as well. Three columns you see here are widgets.", 'shell' ); ?>
|
|
</p>
|
|
|
|
<?php endif; //end of tetriary-home-sidebar-widget ?>
|
|
|
|
<?php shell_widgets_end(); // after widgets hook ?>
|
|
</div><!-- end of .col-300 fit -->
|
|
</div><!-- end of #widgets -->
|