mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-30 04:43:58 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/tags/buddypress-theme@99 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
26 lines
No EOL
513 B
PHP
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>
|