summaryrefslogtreecommitdiffstatshomepage
path: root/templates/sidebar.tpl.php
diff options
context:
space:
mode:
authorGravatar mensonge2007-12-12 16:29:16 +0000
committerGravatar mensonge2007-12-12 16:29:16 +0000
commitd582054c77b22daeb08d2bff17794b9a69a20dd4 (patch)
treed6e7cef8639da6f573cd0b21a5316abf5af24fac /templates/sidebar.tpl.php
downloadscuttle-d582054c77b22daeb08d2bff17794b9a69a20dd4.tar.gz
scuttle-d582054c77b22daeb08d2bff17794b9a69a20dd4.zip
import of scuttle 0.7.2
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@1 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/sidebar.tpl.php')
-rw-r--r--templates/sidebar.tpl.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/sidebar.tpl.php b/templates/sidebar.tpl.php
new file mode 100644
index 0000000..5f399b5
--- /dev/null
+++ b/templates/sidebar.tpl.php
@@ -0,0 +1,13 @@
+<div id="sidebar">
+ <?php
+ $size = count($sidebar_blocks);
+ for ($i = 0; $i < $size; $i++) {
+ $this->includeTemplate('sidebar.block.'. $sidebar_blocks[$i]);
+ }
+
+ $size = count($rsschannels);
+ for ($i = 0; $i < $size; $i++) {
+ echo '<p><a href="'. $rsschannels[$i][1] .'" title="'. $rsschannels[$i][0] .'"><img src="'. $GLOBALS['root'] .'rss.gif" width="16" height="16" alt="'. $rsschannels[$i][0] .'" /></a></p>';
+ }
+ ?>
+</div>