get_string('title');
		$page->set_title($page_title);
		$page->set_heading($page_title);
		$page->disable_left();
		$page->add_block(new Block(null, $this->build_upload_box(), "main", 0));
		$page->add_block(new Block(null, "
", "main", 2));
		$this->display_paginator($page, "comment/list", null, $page_number, $total_pages, 5);
		$page->add_block(new Block(null, "
", "main", 80));
		$this->display_paginator($page, "comment/list", null, $page_number, $total_pages, 90);
	}
	
	public function display_recent_comments($page, $comments) {
		// sidebar fails in this theme
	}
	private function build_upload_box() {
		return "[[ insert upload-and-comment extension here ]]";
	}
	/*
	 * Add a block with thumbnail and comments, as part of the comment
	 * list page
	 */
	public function add_comment_list($page, $image, $comments, $position, $with_postbox) {
		$h_filename = html_escape($image->filename);
		$h_filesize = to_shorthand_int($image->filesize);
		$w = $image->width;
		$h = $image->height;
		$html  = "
";
		$html .= "File: id}")."\">$h_filename - ($h_filesize, {$w}x{$h}) - ";
		$html .= html_escape($image->get_tag_list());
		$html .= "";
		$html .=   "
" . $this->build_thumb_html($image) . "
";
		$html .=   "";
		$html .= "
| >> | ".
				" " .
				"$h_userlink$h_dellink $h_date No.$i_comment_id [Reply] $h_comment | 
";
		}
	}
	protected function build_postbox($image_id) {
		$i_image_id = int_escape($image_id);
		return "
			
			";
	}
}
?>