Verlinkung für Top-Modul eingebaut
This commit is contained in:
@ -1,21 +1,27 @@
|
||||
|
||||
<div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
|
||||
<div class="<?= $this->class; ?> block"<?= $this->cssID; ?><?php if ($this->style): ?> style="<?= $this->style; ?>"<?php endif; ?>>
|
||||
|
||||
<?php if ($this->headline): ?>
|
||||
<<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
|
||||
<<?= $this->hl ?>><?= $this->headline; ?></<?= $this->hl; ?>>
|
||||
<?php endif; ?>
|
||||
|
||||
<ul>
|
||||
<?php foreach ($this->arrRatings as $rating): ?>
|
||||
<li>
|
||||
<!-- indexer::stop -->
|
||||
<div class="rateItTitle"><?php echo $rating->title; ?></div>
|
||||
<div id="<?php echo $rating->rateItID; ?>" class="<?php echo $rating->rateit_class; ?>" rel="<?php echo $rating->rel; ?>">
|
||||
<div class="rateItTitle">
|
||||
<?php if ($rating->url): ?>
|
||||
<a href="<?= $rating->url ?>"><?= $rating->title ?></a>
|
||||
<?php else: ?>
|
||||
<?= $rating->title ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div id="<?= $rating->rateItID ?>" class="<?= $rating->rateit_class ?>" rel="<?= $rating->rel ?>">
|
||||
<div class="wrapper">
|
||||
<div class="rateItRating-selected" style="display: block;"></div>
|
||||
<div class="rateItRating-hover"></div>
|
||||
</div>
|
||||
<div id="<?php echo $rating->descriptionId; ?>" class="ratingText"><?php echo $rating->description; ?></div>
|
||||
<div id="<?= $rating->descriptionId ?>" class="ratingText"><?= $rating->description ?></div>
|
||||
</div>
|
||||
<!-- indexer::continue -->
|
||||
</li>
|
||||
|
Reference in New Issue
Block a user