JSFiddle - React, Tailwind, and code Playground

by Stas Orekhovskiy

HTML

<?php if ($partners_description_block_id = variable_get('partners_description_block_id', NULL)): ?>
<section class="top-description-wrapper">
  <div class="container">
    <?php
$block = block_load('block', $partners_description_block_id);
$output = _block_get_renderable_array(_block_render_blocks(array($block)));
$output = drupal_render($output);
print $output;
?>
  </div>
</section>
<?php endif; ?>