diff options
Diffstat (limited to 'themes/trillian/trillian.theme')
-rw-r--r-- | themes/trillian/trillian.theme | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/themes/trillian/trillian.theme b/themes/trillian/trillian.theme index 210b52950..8cd4ee3b1 100644 --- a/themes/trillian/trillian.theme +++ b/themes/trillian/trillian.theme @@ -1,4 +1,5 @@ <?php +// $Id$ class Theme extends BaseTheme { // General colorset that can be used for this theme @@ -55,7 +56,7 @@ <div style="margin-left: 25px;"><?php echo check_output($node->body, 1); ?></div> <div style="margin-left: 20px; padding-top: 5px; padding-bottom: 12px; color: #7c7c7c;">>>> <?php - $links = link_node($node); + $links = link_node($node, $main); array_unshift($links, t("posted by") ." ". format_name($node)); echo $this->links($links); ?> @@ -67,6 +68,14 @@ <div style="text-transform: capitalize; font-size: 120%; font-weight: bold;"><?php echo check_output($node->title); ?></div> <div style="padding-left: 20px; padding-top: 10px; padding-bottom: 10px;"><?php echo sprintf(t("by %s on %s"), format_name($node), format_date($node->created)); ?></div> <div style="margin-left: 10px;"><?php echo check_output($node->body, 1); ?></div> + <div style="margin-left: 20px; padding-top: 5px; padding-bottom: 12px; color: #7c7c7c;">>>> + <?php + if ($links = link_node($node, $main)) { + //array_unshift($links, t("posted by") ." ". format_name($node)); + echo $this->links($links); + } + ?> + </div> <?php } } |