HEX
Server: Apache
System: Linux dev.epsylon.net 3.10.0-1160.144.1.el7.tuxcare.els2.x86_64 #1 SMP Sun Feb 15 11:22:42 UTC 2026 x86_64
User: nexper (1054)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/nexper/public_html/sites/all/themes/marinelli/templates/block.tpl.php
<?php
/**
 *  $blockhide hides title in blocks (see marinelli_preprocess_block in template.php and theme settings)
 *  $blocktag decides the tag to use for the block title (see theme settings)
 */
?>
<div id="block-<?php print $block->module . '-' . $block->delta; ?>" class="<?php print $blockhide; ?><?php print $classes; ?>"<?php print $attributes; ?>>
  <?php print render($title_prefix); ?>
  <?php if (!empty($block->subject)): ?>
    <div class="block-title">
      <<?php print $blocktag; ?> class="title"<?php print $title_attributes; ?>><?php print $block->subject ?></<?php print $blocktag; ?>>
    </div>
  <?php endif;?>
  <?php print render($title_suffix); ?>
  <div class="content">
    <?php print $content; ?>
  </div>
</div> <!-- /block -->