I am building a site with many sections - at present the navigation elements have been created as a template with the links hard coded into them
eg
<li><a href=”{path={my_template_group}/news}”>News</a></li>
<li><a href=”{path={my_template_group}/features}”>Features</a></li>
<li><a href=”{path={my_template_group}/events}”>Events</a></li>
<li><a href=”{path={my_template_group}/something}”>something</a></li>
<li><a href=”{path={my_template_group}/something}”>something else</a></li>
<li><a href=”{path={my_template_group}/magazine}”>Magazine</a></li>
<li><a href=”{path={my_template_group}/media}”>Media</a></li>
<li><a href=”{path={my_template_group}/competitions}”>Competitions</a></li>
(should this nav be created dynamically?? If it were created dynamically is there a way of retaining the user-friendly urls?)
I have then created templates for each section that the nav links to
ie
.com/site/events/ will link to the event template.
It seems counter-intuitive to create the pages this way - am I going about it entirely the wrong way? I am assuming the categories are then for subnavs within the section?
