Пример #1
0
 function title()
 {
     qa_html_theme_base::title();
     $feed = @$this->content['feed'];
     if (!empty($feed)) {
         $this->output('<a href="' . $feed['url'] . '" title="' . @$feed['label'] . '"><img src="' . $this->rooturl . 'images/rss.jpg" alt="" width="16" height="16" border="0" class="qa-rss-icon"/></a>');
     }
 }
Пример #2
0
 function title()
 {
     if (isset($this->content['q_view'])) {
         $postid = $this->content['q_view']['raw']['postid'];
         $qlink = qa_q_path($postid, $this->content['q_view']['raw']['title']);
         $this->output('<a class="q-entry-title" href="' . $qlink . '">');
         qa_html_theme_base::title();
         $this->output('</a>');
     } else {
         qa_html_theme_base::title();
     }
 }