Almost all themes display categories (with its permalink) by default. I am looking for similar type of code to add in my theme. From where can I get it?
To create custom taxonomies, I’m using More Taxonomies plugin.

3 s
The easiest way to list terms of custom taxonomy and display them would be to use
<?php get_the_term_list( $id, $taxonomy, $before, $sep, $after ) ?>
For example in the loop, my custom taxonomy is ‘jobs’ list as li
<ul><?php echo get_the_term_list( $post->ID, 'jobs', '<li class="jobs_item">', ', ', '</li>' ) ?></ul>