Ok - I've got this thing working fine now - content.php that pulls up an index.tpl file where I have to put variables for each static page and then pass content.php?section=whatever from the links to that content. The issue I have now is that some links need to jump to an anchor link on those content pages. Putting this in the index.tpl didn't work (for reasons obvious even to me when I look at it, but I was desparate.
Code:
{elseif $section eq "anchoronpage"}
{include file="content/customerinfo/FAQ.html#specificanchor"}
If I can't have a link pull up a page and jump to an anchor, I have to split the content up into several pages - which kinda sucks. Is there a smarty-er way of doing this?