You are here

semantic-panels-pane.tpl.php in Semantic Panels 7.2

Same filename and directory in other branches
  1. 7 templates/semantic-panels-pane.tpl.php

Pane template.

File

templates/semantic-panels-pane.tpl.php
View source
<?php

/**
 * @file
 * Pane template.
 */
if ($wrapper_type) {
  ?>
  <<?php

  print $wrapper_type;
  ?> class="<?php

  print $classes;
  ?>" <?php

  print $id;
  ?> <?php

  print $attributes;
  ?>>
<?php

}
?>

    <?php

if ($admin_links) {
  ?>
      <?php

  print $admin_links;
  ?>
    <?php

}
?>

    <?php

if ($title_html) {
  ?>
      <?php

  print $title_html;
  ?>
    <?php

}
?>

    <?php

if ($feeds) {
  ?>
      <div class="feed">
        <?php

  print $feeds;
  ?>
      </div>
    <?php

}
?>

    <?php

if ($content_html) {
  ?>
      <?php

  print $content_html;
  ?>
    <?php

}
?>

    <?php

if ($links) {
  ?>
      <div class="links">
        <?php

  print $links;
  ?>
      </div>
    <?php

}
?>

    <?php

if ($more) {
  ?>
      <div class="more-link">
        <?php

  print $more;
  ?>
      </div>
    <?php

}
?>

<?php

if ($wrapper_type) {
  ?>
  </<?php

  print $wrapper_type;
  ?>>
<?php

}