buddypress/0.1/default/sidebar.php
Andy Peatling b51846766d tagging default theme v0.1
git-svn-id: https://buddypress.svn.wordpress.org/tags/buddypress-theme@99 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2008-05-12 22:36:55 +00:00

26 lines
No EOL
513 B
PHP

<div id="sidebar">
<div id="profilePic">
<?php the_profile_picture() ?>
</div>
<ul id="quickLinks">
<li>My Messages (3)</li>
<li>My Friends (210)</li>
<li>My Albums (4)</li>
</ul>
<ul id="components">
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
<li><h2>Blog</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>
<?php endif; ?>
</ul>
</div>