Different HTML fils for each slide in ionic slide box

Working with ionic version 1.3.18

I've got a slide box working fine, but I'll probably need to put quite a bit of content into each slide so I was wondering if it were possible to have a separate file for each slide like the way you can with ionic tabs?

Attempting the following:

<ion-slide href="#/slide1">

didn't do the trick.

Any help appreciated!

Try adding a nav view inside ion-slide -

<ion-nav-view name='viewname'></ion-nav-view>

Where viewname points to your template (you might have to set this up in your route too).