<?php $terms = wp_get_post_terms( $post->ID, 'jetpack-portfolio-type' );
foreach ( $terms as $term ) {
$term_link = get_term_link( $term, 'jetpack-portfolio-type' );
if( is_wp_error( $term_link ) )
continue;
echo '<li><a href="' . $term_link . '">' . $term->name . '</a></li>';
}
?>