Some routing questions using angular

Hi guys! I have a question about the routing angular does. I’m trying to load pieces of HTML using it’s ngRoute module but I want to keep my HTML files private and serve them using express/node’s routing. Is that possible? Like I mentioned before, I don’t want to give public access to the HTML files. I don’t want to load the whole view either (I mean everything, all the views) and then just make the divs visible/invisible, for obvious reasons. Another reason I want to do this is because of authentication (I’m doing the voting app). If it’s possible, what kind of HTTP method should I use to serve these files?

Thanks in advance!

Nevermind, I was able to solve it