summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-23 05:55:38 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-08-23 05:55:38 +0000
commita58d877108f6b7ff6712c6261815c6092c7f6949 (patch)
tree6c76f23e2bc4caf442d7643f3fe0fd189c20f3f4 /themes
parent32e22f1f9a69618ba94e2015cf4f9d5c8ebb80e1 (diff)
downloadbrdo-a58d877108f6b7ff6712c6261815c6092c7f6949.tar.gz
brdo-a58d877108f6b7ff6712c6261815c6092c7f6949.tar.bz2
#66569 by m3avrck. Put all the feed icons in the same place.
Diffstat (limited to 'themes')
-rw-r--r--themes/bluemarine/page.tpl.php1
-rw-r--r--themes/chameleon/chameleon.theme1
-rw-r--r--themes/engines/phptemplate/phptemplate.engine1
-rw-r--r--themes/pushbutton/page.tpl.php3
4 files changed, 5 insertions, 1 deletions
diff --git a/themes/bluemarine/page.tpl.php b/themes/bluemarine/page.tpl.php
index 385df6fa9..88b255398 100644
--- a/themes/bluemarine/page.tpl.php
+++ b/themes/bluemarine/page.tpl.php
@@ -43,6 +43,7 @@
<?php print $help ?>
<?php print $messages ?>
<?php print $content; ?>
+ <?php print $feed_icons; ?>
</div>
</td>
<?php if ($sidebar_right) { ?><td id="sidebar-right">
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index 056ffdf4c..9ffa50ef0 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -92,6 +92,7 @@ function chameleon_page($content) {
$output .= "\n<!-- begin content -->\n";
$output .= $content;
+ $output .= drupal_get_feeds();
$output .= "\n<!-- end content -->\n";
if ($footer = variable_get('site_footer', '')) {
diff --git a/themes/engines/phptemplate/phptemplate.engine b/themes/engines/phptemplate/phptemplate.engine
index 7533888fc..744563ad9 100644
--- a/themes/engines/phptemplate/phptemplate.engine
+++ b/themes/engines/phptemplate/phptemplate.engine
@@ -196,6 +196,7 @@ function phptemplate_page($content) {
'breadcrumb' => theme('breadcrumb', drupal_get_breadcrumb()),
'closure' => theme('closure'),
'content' => '<!-- begin content -->' . $content . '<!-- end content -->',
+ 'feed_icons' => drupal_get_feeds(),
'footer_message' => filter_xss_admin(variable_get('site_footer', FALSE)) . "\n" . theme('blocks', 'footer'),
'head' => drupal_get_html_head(),
'head_title' => implode(' | ', $head_title),
diff --git a/themes/pushbutton/page.tpl.php b/themes/pushbutton/page.tpl.php
index 3b8219556..cdfe44771 100644
--- a/themes/pushbutton/page.tpl.php
+++ b/themes/pushbutton/page.tpl.php
@@ -81,7 +81,8 @@
<?php endif; ?>
<!-- start main content -->
- <?php print($content) ?>
+ <?php print $content; ?>
+ <?php print $feed_icons; ?>
<!-- end main content -->
</div><!-- main -->