自定义字段菜单链接到自定义字段页面

I'm having a hard time linking a menu built with custom fields to a page built the same way. I'm sure the problem is making it link via permalink, but for the life of me, I can't figure out what I'm missing.

<?php $loop = new WP_Query( array( 'post_type' => 'Employees', 'posts_per_page' => 100 ) ); ?> 
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?> 

<div>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a><br />
<?php the_field('title'); ?>

Basically what I'm trying to do is on http://www.consociate.com/about/meet-the-team/, I want the links on the right to go to a template filled with custom fields (their bio information). Is this possible?

Thanks so much! I love this community!

What you are looking for can be achived by respecting the wordpress template hierarchy rules, you shouldn't hardcode links or hardcode add parameters to the links, simply use <?php get_template_part( $slug, $name ); ?> then create the resonse php file that will display the info as you want.