Side menu with nav-view, route and state provides

Is is possible to load a template made up with a side menu?
As in the tab example where a template made up of tabs is loaded from the sign-up view. Link to example

You can use an ng-template for anything. Like this:

<script id="sidemenu.html" type="text/ng-template">
  <ion-side-menu side="left">
    <p>Side Menu Stuff Here</p>
  </ion-side-menu>
</script>

Great, I’ll test it and drop a snippet here for reference.