There is an opening tag <?php
In the block, two variable are set
Then an if() followed by the closing tag ?>, If true, then what? If false, then what?
<?php
/**
* A lot of commentary
*/
$options = get_theme_options();
$current_layout = $options['theme_layout'];
if ( 'content' !== $current_layout ) :
?>
... lot more lines of codes follows...