-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
18 lines (18 loc) · 821 Bytes
/
sidebar.php
File metadata and controls
18 lines (18 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php namespace Habari; ?>
<?php if ( !defined( 'HABARI_PATH' ) ) { die('No direct access'); } ?>
<div id="search">
<?php echo $theme->search_form() ?>
</div>
<div id="feeds">
<div class="feedlink"><a href="<?php URL::out( 'atom_feed', array( 'index' => '1' ) ); ?>"><?php _e( "{blog entries}" ); ?></a></div>
<div class="feedlink"><a href="<?php URL::out( 'atom_feed_comments' ); ?>"><?php _e( "{comments}" ); ?></a></div>
</div>
<div id="habari-link">
<?php if ($show_powered) : ?>
<a href="http://habariproject.org/" title="<?php _e( "Powered by Habari" ); ?>"><img src="<?php echo $theme->get_url( 'images/pwrd_habari.png' ); ?>" alt="<?php _e( "Powered by Habari" ); ?>"></a>
<?php endif; ?>
</div>
<div id="sidebar">
<!-- Call your plugins theme functions here-->
<?php echo $theme->area('sidebar'); ?>
</div>