Если надо статические html/xhtml можно с помощью скрипта. Просто шапку и ноги подставить. Хотя можно и .php
<?php
$dir="папка с .txt например";
$dl=@opendir($dir);
while($fl=readdir($dl)){
if($fi!="." && $fl!=".."){
if(is_file($dir."/".$fl)){
$filer=file_get_contents($dir."/".$fl);
$content=" <?php \n include_once('../head.php'); \n ".$filer." \n include_once('../foot.php'); \n ?>";
file_put_contents($dir."/".$fl,$content);
$filer=null;
}
}
}
closedir($dl);