I'm attempting to put a slider on every page within a theme, however, I wish to change a single page to have a different slider alias for alternative content. the php validator I'm using gives me an unexpected 'echo' (T_ECHO) on line 3. I'm not sure why that is as my understanding of any code is limited. Any help is appreciated.
<?php
if (is_page ('145') {
echo do_shortcode ('[rev_slider alias='hp']');
} else {
echo do_shortcode ('[rev_slider alias='main']')
}