Add the following to functions.php file
//Brings back the link manager in WordPress
add_filter( 'pre_option_link_manager_enabled', '__return_true' );
To get the links to show up on your page add this to the template file:
<?php wp_list_bookmarks(array ('category_orderby'=>'name', 'between'=>'</a> - ', 'show_description'=>'true', 'target'=>'blank')); ?>
Style accordingly.