You are here

amazon-item-book-details.tpl.php in Amazon Product Advertisement API 6

File

amazon_media/amazon-item-book-details.tpl.php
View source
<div class="<?php

print $classes;
?>">
<?php

if (!empty($smallimage)) {
  print $smallimage;
}
?>
<div><strong><?php

print l($title, $detailpageurl, array(
  'html' => TRUE,
  'attributes' => 'nofollow',
));
?></strong></div>
<div><strong><?php

print t('Author');
?>:</strong> <?php

print $author;
?></div>
<div><strong><?php

print t('Publisher');
?>:</strong> <?php

print $publisher;
?> (<?php

print $publicationyear;
?>)</div>
<div><strong><?php

print t('Binding');
?>:</strong> <?php

print t('@binding, @pages pages', array(
  '@binding' => $binding,
  '@pages' => !empty($numberofpages) ? $numberofpages : "",
));
?></div>
</div>