Forgot to show you my template code. The theme I am using (Metrical) relies on components to create a block layout:
Adding
Into the template above the call for the component col1 did not work as the gallery did not show on the page.
PHP Code:
<div class="row">
<section class="eight columns">
<?php if (component_exists('kitchentest-col1'))
{get_component('kitchentest-col1');}
else {echo('
<h2>First Block</h2>
<p>Make a component and name it \'1of2\' and write in it whatever html you want to appear here</p>
');} ?>
</section>
<section class="eight columns">
<?php if (component_exists('kitchentest-col2'))
{get_component('kitchentest-col2');}
else {echo('
<h2>Second Block</h2><p>Make a component and name it \'2of2\' and write in it whatever html you want to appear here</p>
');} ?>
</section>
</div>
Adding
PHP Code:
<?php get_i18n_gallery('carryout-ss',
array('type'=>'cycle', 'autostart'=>true)); ?>