How can I display the parts of custom posts?

<?php
while ( $loop->have_posts() ) : $loop->the_post();
  the_title();
  echo '<div class="entry-content">';
  the_content();
  echo '</div>';
  echo '<div class="custom-field">';
  echo get_post_meta( get_the_ID(), 'name', true );
  echo get_post_meta( get_the_ID(), 'title', true );
  echo get_post_meta( get_the_ID(), 'bank', true );
  echo '</div>';
endwhile;
?>

This is how you would display the custom fields below the content. I didn’t test it but it should work. Hope this helps. Also read Milo’s answer and read the Codex so you understand how it works.

Also it looks like you are using a custom query object ($loop), so read this article as well:

http://codex.wordpress.org/The_Loop#Multiple_Loops_Example_1