public static function printAnalysis(Analyse $publication)
 {
     $html = "<li>";
     $html .= "<span class='date-publication'>[";
     $html .= $publication->getDateFormatted();
     $html .= "]</span>";
     $html .= "<a target='_blank' href='" . LinkController::getBaseURL() . "/analise/" . $publication->link() . ".html'>";
     $html .= $publication->title();
     $html .= "</a><br />";
     $qtdComments = $publication->getComments()->count();
     $html .= "<span class='number-comments'>";
     $html .= $qtdComments . ' ' . ($qtdComments == 1 ? "comentário" : "comentários");
     $html .= "</span>";
     $html .= "</li>";
     echo $html;
 }