You are here

oembed-rich.tpl.php in oEmbed 6.0

Default template file for oembed data of the rich type

File

theme/oembed-rich.tpl.php
View source
<?php

/**
 * @file
 * Default template file for oembed data of the rich type
 */
?>
<div class="oembed">
  <?php

if (!empty($title)) {
  ?>
    <?php

  print l($title, $original_url, array(
    'absolute' => TRUE,
    'attributes' => array(
      'class' => 'oembed-title',
    ),
  ));
  ?>
  <?php

}
?>
  <span class="oembed-content oembed-rich"><?php

print $embed->html;
?></span>
</div>