The do_shortcode function can be called from any theme template file, for the front page or any other section of the site, to render content associated with a shortcode. It takes a single argument, the shortcode string including any parameters. To display the content created in this recipe, we would simply need to call the following:
<?php echo do_shortcode( '[book-review-list]' ); ?>