Here’s the content of my sidebar.php — this is all there is:
<div class="sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>
<?php endif; ?>
<h3>Pages</h3>
<ul>
<?php wp_list_pages('title_li='); ?>
</ul>
<h3>Archives</h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<!-- Sidebar -->
And there is only one sidebar.php and I can’t find similar coding in any other template.