-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
27 lines (25 loc) · 782 Bytes
/
footer.php
File metadata and controls
27 lines (25 loc) · 782 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
<?php namespace Habari; ?>
<?php if ( !defined( 'HABARI_PATH' ) ) { die('No direct access'); } ?>
</div>
<div id="bottom-secondary">
<div id="tags"><?php echo (Plugins::is_loaded('tagcloud')) ? $theme->tag_cloud() : $theme->show_tags();?></div>
</div>
<div id="footer">
<p>
<?php
_e( '%1$s is powered by %2$s', array(
Options::get('title'),
'<a href="http://www.habariproject.org/" title="Habari">Habari ' . Version::get_habariversion() . '</a>'
));
?> -
<?php
_e( '<a href="%1$s">Atom Entries</a> and <a href="%2$s">Atom Comments</a>', array( URL::get( 'atom_feed', array( 'index' => 1 ) ), URL::get( 'atom_feed_comments' ) ) );
?>
</p>
</div>
<div class="clear"></div>
</div>
</div>
<?php echo $theme->footer(); ?>
</body>
</html>