Posted: 03/02/2005 9:52:42 AM
Reply Quoted
djdurant wrote: | 03/01/2005 10:11:06 AM |
I need to have pages for the following:
Copyright Statement Disclaimer Privacy Policy Terms of Service
I would just like a link in the footer to each page, but would like the page to be presented in the content area of in-portal so that it matches the theme.
How to do this? |
Hello,
Sorry about a delay. Usually, we check the forums twice a day.
1.
New Pages
Simply make a copy of "index.tpl" template as many times as you need and rename it of course. Next, you can take out everything between the main table tags:
<inp:include _template="common/head.tpl" />
<BODY>
<inp:include _Template="common/pagetop.tpl" />
<table width="770" border="0" cellspacing="0" cellpadding="0">
<!-- start content -->
<tr>
<td valign="top" height="100%">
and
</td>
</tr>
<!-- content \\-->
<inp:include _Template="common/footer.tpl" />
</table>
</body>
</html>
Please note, that I am giving this code from the default theme.
2.
Link to Template
Simply use the
m_template_link tag in order to make a link to any template. There is a full description with accepted attributes and examples listed in In-tag library (Admin->Modules&Settings: Tag Library)
Thanks.