What CMS(Content Management System) does simplemachines.org use?
We use SMF's SSI compabilities.
There is a custom admin page to control the download's that utilises SSI.
The modsite is built around SSI
The avatar gallery is custom written by myself
There's plenty on this around. Basically we use an additional template layer in SMF through SSI to add a site wide template, then each page look's very simple:
<?php
require_once('SSI.php');
$context['template_layers'] = array('mainsite');
// Page content...
?>
Done.
Will this code work on ANY SMF board? Sweet...