Deveria haver.
Ir para > Ferramentas > Modelos
Olhe dentro da pasta "Outros", deve haver dois modelos HTML: "Arquivo HTML" & "Arquivo XHTML".
Arquivo HTML
<#assign licenseFirst = "<!--">
<#assign licensePrefix = "">
<#assign licenseLast = "-->">
<#include "../Licenses/license-${project.license}.txt">
${doctype}
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=${encoding}">
</head>
<body>
<div>TODO write content</div>
</body>
</html>
Arquivo XHTML
<?xml version="1.0" encoding="${encoding}"?>
<#assign licenseFirst = "<!--">
<#assign licensePrefix = "">
<#assign licenseLast = "-->">
<#include "../Licenses/license-${project.license}.txt">
${doctype}
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>TODO supply a title</title>
</head>
<body>
<div>TODO write content</div>
</body>
</html>