<?php /* NOTE: GENERATED BY GULP !!! */ ?><?php
$b = "flo-block-text-block-3"; // To be used inside HTML

// Start: Class name automation
  $b__for_css = ".".$b; // To be used inside CSS
  $b__uniq = $b."--".mt_rand(1, 999); // To be used inside HTML
  $b__uniq_for_css = ".".$b__uniq; // To be used inside CSS
// End: Class name automation

$elements_color = flo_data($data, "elements_color");
$title = flo_data($data, "title");
$title_font = flo_data($data, "title_font");
$left_text_column = flo_data($data, "left_text_column");
$right_text_column = flo_data($data, "right_text_column");
$text_columns_font = flo_data($data, "text_columns_font");

?>

<?php echo $__env->make('core.style', [
  "breakpoint__general" => "

    ".
    flo_render_typography_styles(
    $b__uniq_for_css." ".$b__for_css."__title",
    $title_font
    )
    ."

    ".
    flo_render_typography_styles(
    $b__uniq_for_css." ".$b__for_css."__text-columns",
    $text_columns_font
    )
    ."
    ".$b__uniq_for_css."{
      color: ".$elements_color.";
    }
  "
], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php $__env->startSection('block_content'); ?>
  <div class="<?php echo $b; ?> <?php echo $b__uniq; ?>">
    <div class="<?php echo $b; ?>__title"><?php echo $title; ?></div>
    <?php if($left_text_column or $right_text_column): ?>

    <?php endif; ?>
    <div class="<?php echo $b; ?>__text-columns">
      <?php if($left_text_column): ?>
        <div class="<?php echo $b; ?>__left-text-column"><?php echo $left_text_column; ?></div>
      <?php endif; ?>
      <?php if($right_text_column): ?>
        <div class="<?php echo $b; ?>__right-text-column"><?php echo $right_text_column; ?></div>
      <?php endif; ?>
    </div>
  </div>
<?php $__env->stopSection(true); ?>

<?php echo $__env->make('layout.block', [
  // "block_classes" => "flo-block--full-width", // Will be added to main block div. e.g. flo-block--full-width
  // "data_onready" => "block_name" // Specify a function (see _blank.js on how to define) that will be executed on document ready.
], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>