-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebar.php
More file actions
30 lines (30 loc) · 991 Bytes
/
sidebar.php
File metadata and controls
30 lines (30 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
</div>
<div class="right_content" id="sidebar">
<?php Plugins::act( 'theme_sidebar_top' ); ?>
<div class="block" id="recent_comments">
<h3><span>Recent comments</span></h3>
<ul>
<?php foreach($recent_comments as $recent_comment): ?>
<li><a href="<?php echo $recent_comment->post->permalink; ?>"><?php echo $recent_comment->name; ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<?php $theme->flickrfeed(); ?>
<?php $theme->switcher(); ?>
<?php $theme->show_blogroll(); ?>
<?php $theme->twitter(); ?>
<div class="block" id="recent_posts">
<h3><span>Recent posts</span></h3>
<ul>
<?php foreach($recent_posts as $recent_post): ?>
<li><a href="<?php echo $recent_post->permalink; ?>"><?php echo $recent_post->title; ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<div class="block" id="login">
<h3><span>User</span></h3>
<?php include 'loginform.php'; ?>
</div>
<?php Plugins::act( 'theme_sidebar_bottom' ); ?>
</div>
</div>