+++ /dev/null
-<?php
-/*
-Template Name: GLM Members Only Template
-*/
-get_template_part('index');
-?>
\ No newline at end of file
 
             <div id="main-content" class="small-12 columns">
+            <?php 
+            // On the contact page, show the custom column content instead
+            if (is_page(100)) { ?>
+                <div class="row">
+                    <div class="small-12 medium-4 columns">
+                        <?php the_field('c1_content' ); ?>
+                    </div>
+                    <div class="small-12 medium-8 columns">
+                        <?php the_field('c2_content' ); ?>
+                    </div>
+                </div>
+            <?php } else { ?>
                 <?php if(have_posts()) : while(have_posts()): the_post();?>
                 <?php the_content();?>
                 <?php endwhile; else:?>
                 <p><?php _e('Sorry, no posts yet');?></p>
                 <?php endif;?>
+            <?php } ?>
             </div>
\ No newline at end of file