File: /home/sinanpasha/ru.sinanpasha.org/wp-content/themes/pulse/sidebar.php
<div id="sidebar">
<?php if (option::get('banner_sidebar_enable') == 'on' && option::get('banner_sidebar_position') == 'Before widgets') { ?>
<div class="side_ad">
<?php if ( option::get('banner_sidebar_html') <> "") {
echo stripslashes(option::get('banner_sidebar_html'));
} else { ?>
<a href="<?php echo option::get('banner_sidebar_url'); ?>"><img src="<?php echo option::get('banner_sidebar'); ?>" alt="<?php echo option::get('banner_sidebar_alt'); ?>" /></a>
<?php } ?>
</div><!-- /.side_ad -->
<?php } ?>
<?php if ( is_single()) { ?>
<?php if (option::get('post_author') == 'on') { ?>
<div class="author widget">
<h3 class="title"><?php _e('Author', 'wpzoom'); ?></h3>
<?php echo get_avatar( get_the_author_meta('ID'), 70 ); ?>
<div class="author_info">
<?php the_author_posts_link(); ?>
<p><?php the_author_meta('description'); ?></p>
</div>
<div class="clear"> </div>
</div>
<?php } ?>
<?php if (option::get('post_tags') == 'on') { ?>
<?php the_tags( '<div class="tags widget"><h3 class="title">'. __('Tags', 'wpzoom').'</h3> #', ' #', '</div>'); ?>
<?php } ?>
<?php } ?>
<?php if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Sidebar'); } ?>
<?php if (option::get('banner_sidebar_enable') == 'on' && option::get('banner_sidebar_position') == 'After widgets') { ?>
<div class="side_ad">
<?php if ( option::get('banner_sidebar_html') <> "") {
echo stripslashes(option::get('banner_sidebar_html'));
} else { ?>
<a href="<?php echo option::get('banner_sidebar_url'); ?>"><img src="<?php echo option::get('banner_sidebar'); ?>" alt="<?php echo option::get('banner_sidebar_alt'); ?>" /></a>
<?php } ?>
</div><!-- /#side_ad -->
<?php } ?>
<div class="clear"> </div>
</div><!--/#sidebar-->
<?php wp_reset_query(); ?>