For a website I'm doing, I'm only using static content such as HTML, javascript, CSS, images (no PHP or server-side language).
I want to be able to localize in English and French, but I'm unsure what would be a good solution. Here are the solutions I have in mind so far:
Duplicate HTML pages
Pros: simple, SEO friendly
Cons: a pain if I decide to change anything, I'll always have to do it twice
Dreamweaver templates
Pros: SEO friendly, update friendly
Cons: so many places to add regions that it would double the HTML size, messy code
JST: javascript templating
Pros:update friendly, code friendly
Cons: SEO?, not made for this?
Any other ideas or further advice on the current list?