55 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
 | |
| <?php if ($this->rateit_rating_before): ?>
 | |
| <!-- indexer::stop -->
 | |
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata">
 | |
| 	<div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>">
 | |
| 		<?php if ($this->showBefore) : ?>
 | |
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div>
 | |
| 		<?php endif; ?>
 | |
| 		<div class="wrapper">
 | |
|             <div class="rateItRating-selected" style="display: block;"></div>
 | |
|             <div class="rateItRating-hover"></div>
 | |
| 		</div>
 | |
| 		<?php if ($this->showAfter) : ?>
 | |
| 	    <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div>
 | |
| 		<?php endif; ?>
 | |
| 	</div>
 | |
| 	<span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span>
 | |
| 	<span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating">
 | |
| 		<span itemprop="average"><?php echo $this->actRating; ?></span>
 | |
| 		<span itemprop="best"><?php echo $this->maxRating; ?></span>
 | |
| 	</span>
 | |
| 	<span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span>
 | |
| </div>
 | |
| <!-- indexer::continue -->
 | |
| <?php endif; ?>
 | |
| 
 | |
| <div class="layout_simple block<?php echo $this->class; ?>">
 | |
| <?php if ($this->date): ?><?php echo $this->date; ?> <?php endif; ?><?php echo $this->linkHeadline; ?> 
 | |
| </div>
 | |
| 
 | |
| <?php if ($this->rateit_rating_after): ?>
 | |
| <!-- indexer::stop -->
 | |
| <div itemtype="http://data-vocabulary.org/Review-aggregate" itemscope="" class="rating-microdata">
 | |
|     <div id="<?php echo $this->id; ?>" class="<?php echo $this->class; ?> <?php echo $this->rateit_class; ?>">
 | |
|         <?php if ($this->showBefore) : ?>
 | |
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div>
 | |
|         <?php endif; ?>
 | |
|         <div class="wrapper">
 | |
|             <div class="rateItRating-selected" style="display: block;"></div>
 | |
|             <div class="rateItRating-hover"></div>
 | |
|         </div>
 | |
|         <?php if ($this->showAfter) : ?>
 | |
|         <div id="<?php echo $this->descriptionId; ?>" class="ratingText"><?php echo $this->description; ?></div>
 | |
|         <?php endif; ?>
 | |
|     </div>
 | |
|     <span class="rating-microdata" itemprop="itemreviewed"><?php echo $this->itemreviewed; ?></span>
 | |
|     <span class="rating-microdata" itemtype="http://data-vocabulary.org/Rating" itemscope="" itemprop="rating">
 | |
|         <span itemprop="average"><?php echo $this->actRating; ?></span>
 | |
|         <span itemprop="best"><?php echo $this->maxRating; ?></span>
 | |
|     </span>
 | |
|     <span class="rating-microdata" itemprop="votes"><?php echo $this->votes; ?></span>
 | |
| </div>
 | |
| <!-- indexer::continue -->
 | |
| <?php endif; ?>
 |