ajax loaded content graphics ok interactivity ok remains the video interactions
14 lines
454 B
PHP
14 lines
454 B
PHP
<div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
|
|
|
|
<?php if (!$page): ?>
|
|
<h2<?php print $title_attributes; ?>><?php print $title; ?></h2>
|
|
<?php endif; ?>
|
|
<?php
|
|
// We hide the comments and links now so that we can render them later.
|
|
hide($content['comments']);
|
|
// hide($content['links']);
|
|
print render($content);
|
|
// print render($content['links']);
|
|
?>
|
|
</div>
|