You can actually make a template using .php
Have you ever seen the sites that have stuff like index.php?page=whatever?? You can make one page (index.php) and actually use it with all the pages. This makes editing very easy. Just edit the index.php page and all pages are updated as well. When you get the index.php page setup then add this code to where the main body section pf the page is going to be:
<?
$page = $_GET['page'];
if(!$_GET['page']) {
include("incl/home.incl");
} else {
include("incl/" . $_GET['page'] . ".incl");
}
?>
Follow these steps to set it up:
1). make a folder and name it incl
2). make just blank pages with the text that you want, then save them in the .incl format. E.G. contact.incl
3). Upload all the .incl files into the incl folder
4). When you want to call the pages, set your links like this:
<a href="index.php?page=contact">Contact Us</a>
It is an awesome feature that I use on most if not all of my sites. 🙂