Skipping Summary.php in Exhibit Builder

I'm trying to skip over the summary.php page and go directly from the Browse Exhibits page to the first section of my exhibits. Currently I name the first section of each exhibit "1". Then in the browse.php file I replaced
<h2><?php echo link_to_exhibit(); ?></h2>
with
<h2><?php echo '<a href="'. html_escape(exhibit_builder_exhibit_uri()). '/1">' . html_escape(exhibit('title')) .'</a>'; ?></h2>
Is there a better way to link directly to the first section of each exhibit?

As with most things in Omeka, there are a couple of options, but for what you are doing this is pretty much as good a solution as any.

Thanks, I just wanted to make sure I wasn't missing something obvious.