Hide a specific post from a page template

At the top of the loop in your page.php of your theme. Add the following condition:

if (get_the_ID()==$my_id) {
   exit;
}

tech