Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Help managing a large site efficiently
I’m trying to put together a site with around 40 sections and struggling with how to manage the information efficiently, especially if changes are required that will affect the site across the board.
The way I’m trying to structure the site is this: create sections as needed, enter section-specific content into forms sharing the same section name, use only 1 page template and call the content when each page loads.
This is the code I’m using:
<txp:output_form form="<txp:section />" />
Basically, txp:output_form will display any code contained within a form. txp:section left as is should output the section name. Unfortunately textpattern doesn’t recognize the txp:section tag when it’s contained within another tag.
Am I going about this in a completely backwards way? If anyone can recommend a workaround for this method, or another method that will save me from creating an individual page for each section, I would be a very happy man.
TIA
Offline
Re: Help managing a large site efficiently
<txp:output_form form="<txp:section />" />
Use asy_wondertag.
Why don’t you use if_section conditionals in your forms? It’d certainly cut down on the number of forms.
Offline