¿Dónde puedo encontrar plantillas de código html de netbeans?

1

En Netbeans 7.1 no hay plantillas de código html incluidas en la instalación.

¿Dónde puedo encontrar algunas plantillas html básicas para descargar?

Andy
fuente

Respuestas:

1

Debería haber.

Vaya a> Herramientas> Plantillas

Mire dentro de la carpeta "Otro", debe haber 2 plantillas HTML: "Archivo HTML" y "Archivo XHTML".

Archivo 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>

Archivo 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>
Gerard Roche
fuente
ahora no hay Tools > Templatesopción
Fast Snail