Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <div class="blog-title">
  2.     <div class="blog-date">
  3.         <span class="date"><?php echo $blog_date; ?></span>
  4.         <span class="month"><?php echo $blog_month.' '.$blog_year; ?></span>
  5.     </div>
  6.  
  7.     <h2>
  8.     <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>">
  9.     <?php echo $this->escape($this->item->title); ?>
  10.     </a>
  11.     </h2>
  12.  
  13.     <div class="blog-author">
  14.         <?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',''); ?>
  15.         <img class="blog-avatar" src="http://www.gravatar.com/avatar/<?php echo md5($user->email); ?>"/>
  16.         <?php echo $author ?>
  17.         <span><a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug, $this->item->catid)); ?>#disqus_thread"></a></span>
  18.     </div>
  19. </div>