<?php 
    }
    ?>
	
			<div class="panel">
				<header>
					<h3><?php 
    _e('Project Details', 'orbis');
    ?>
</h3>
				</header>
	
				<div class="content">
					<dl>
						<?php 
    if (function_exists('orbis_project_has_principal') && orbis_project_has_principal()) {
        ?>
	
							<dt><?php 
        _e('Client', 'orbis');
        ?>
</dt>
							<dd>
								<?php 
        printf('<a href="%s">%s</a>', esc_attr(orbis_project_principal_get_permalink()), orbis_project_principel_get_the_name());
        ?>
							</dd>

						<?php 
    }
    ?>
					<?php 
    while (have_posts()) {
        the_post();
        ?>
		
						<tr id="post-<?php 
        the_ID();
        ?>
" <?php 
        post_class();
        ?>
>
							<td>
								<?php 
        if (function_exists('orbis_project_has_principal')) {
            if (orbis_project_has_principal()) {
                printf('<a href="%s">%s</a>', esc_attr(orbis_project_principal_get_permalink()), orbis_project_principel_get_the_name());
            }
        }
        ?>
							</td>
							<td>
								<a href="<?php 
        the_permalink();
        ?>
"><?php 
        the_title();
        ?>
</a>

								<?php