| 1 |
<div class="moviedb">
|
| 2 |
<div class="movie_info">
|
| 3 |
<?php if($node->releaseyear) { print $node->releaseyear.". \n"; } ?>
|
| 4 |
<?php if($node->country) { print $node->country .". \n"; } ?>
|
| 5 |
<?php if($node->language) { print $node->language .". \n"; } ?>
|
| 6 |
<?php if($node->runtime) { print $node->runtime ." minutes. \n"; } ?>
|
| 7 |
</div>
|
| 8 |
<div class="clear-block">
|
| 9 |
<?php if($node->cover) { ?>
|
| 10 |
<div class="cover">
|
| 11 |
<?php print theme("image", $node->cover, "Cover for ".$node->title." (".$node->releaseyear.")", "Cover for ".$node->title." (".$node->releaseyear.")"); ?>
|
| 12 |
</div>
|
| 13 |
<?php } ?>
|
| 14 |
<div class="castcrew">
|
| 15 |
<?php
|
| 16 |
foreach($castcrew as $list) {
|
| 17 |
print $list;
|
| 18 |
} ?>
|
| 19 |
</div>
|
| 20 |
<?php /* if($node->imdb) {
|
| 21 |
print "<div class=\"label3\">". t('IMDb') .": </div><div class=\"content3\">". "<a href=\"http://www.imdb.com/title/". $node->imdb ."/\" target=\"_blank\">" . $node->imdb . "</a></div>\n";
|
| 22 |
} */ ?>
|
| 23 |
</div>
|
| 24 |
<div class="clear-block">
|
| 25 |
<?php if($node->body) { ?>
|
| 26 |
<div class="label1">Review</div>
|
| 27 |
<div class="content">
|
| 28 |
<?php if($submitted) { print $submitted; } ?>
|
| 29 |
<?php print $node->body; ?>
|
| 30 |
<?php } ?>
|
| 31 |
</div>
|
| 32 |
</div>
|
| 33 |
</div>
|