What is the URL of a html page within C5

Permalink
This should be simple - shouldn't it?

I have a htm file uploaded into my theme directory called "launch_pad_calendar_iframe.htm" I want to put this inside an iframe. What would the URL be?

because when I put

www.www.mysite.co.nz/launch_pad_calendar_iframe.htm....

I get a page not found error.

ArtOwl
 
grosik replied on at Permalink Best Answer Reply
grosik
does the code
<?php echo $this->getThemePath()?>

works ?

f.e. you use this code when you want to include image from theme directory
<img src="<?php echo $this->getThemePath()?>/images/someimage.png" height="50"/>
ArtOwl replied on at Permalink Reply
ArtOwl
Thanks for the reply grosik. I just got this to work. Thanks all.


http://mysite.co.nz/themes/mytheme/launch_pad_calendar_iframe.htm...
grosik replied on at Permalink Reply
grosik
No problem, you're welcome ;)