Best way to implement content in a templating system?

Howdy :thumb:

I have mostly finished up my templating system except for the content and perhaps a simple CMS to go along with it.

Any ideas as to how I should implement it? The people whose websites I’ll be making will probably want to be able to make minor changes here and there without having to call me up. And how to do the content - I have all the content files in a separate directory - should I just to straight xhtml+php and such like I normally would for a non-templated system? Or something like:


echo header("h1", "This is a header", left);
echo paragraph("This is a paragraph", left);
echo list("ol", "This is a list", right);

Thanks :slight_smile: