/**
  * Topics list
  */
 public function _topics()
 {
     $content_template = $this->load_template($this->_template_root . 'topic_list.xml');
     $params = TagsGroups_list::get_search_params_from_url(vivvo_lite_site::get_instance());
     $params['search_sort_by'] = 'name';
     $params['search_order'] = 'ascending';
     $content_template->assign('pg', $params['pg']);
     $content_template->assign('topic_list_params', $params);
     return $content_template;
 }