Well I'm not a pro, but testing your rule, I saw that you need another RewriteCond so you can stop the infinite loop:
Code:
RewriteCond %{REQUEST_URI} !^/templates
RewriteCond %{REQUEST_URI} !^/index.html
RewriteRule ^(.*) http://%{HTTP_HOST}/index.html [L]
Regards