hueman/sidebar-2.php
nikeo b172a53fa9 * Moved options from the previous admin option ( Appearance > Theme Options ) to the customizer panel. Users settings from a previous version are being preserved an re-used in the customizer.
* New settings organization. In the customizer, the settings have been reorganized in 5 panels : Global settings, Header, Content, Footer, Dynamic Sidebars and Widgets.
* Added a new way to create dynamic content with widgets for a given context (home, page, archive ...) and in a specific location of the page ( right sidebar, footer left, ...)
* Added backward compatibility for the renamed functions used in the templates, like alx_social_links() now is hu_social_links()
* Fixed backward compatibility issue with already declared old functions in child theme
* Added back the featured-category option
* Fixed undefined function ot_register_meta_box()
* Fixed blog page sidebars not showing up
* Fixed alx_layout_class() function undefined in child themes
2016-04-14 16:42:26 +02:00

19 lines
No EOL
530 B
PHP

<div class="sidebar s2">
<a class="sidebar-toggle" title="<?php _e('Expand Sidebar','hueman'); ?>"><i class="fa icon-sidebar-toggle"></i></a>
<div class="sidebar-content">
<?php if ( hu_is_checked('sidebar-top') ): ?>
<div class="sidebar-top group">
<p><?php _e('More','hueman'); ?></p>
</div>
<?php endif; ?>
<?php if ( hu_get_option( 'post-nav' ) == 's2') { get_template_part('parts/post-nav'); } ?>
<?php hu_print_widgets_in_location('s2') ?>
</div><!--/.sidebar-content-->
</div><!--/.sidebar-->