html5template
v0.0.5
Published
Create a base html5 template from cli
Downloads
6
Readme
html5template
Create a base html5 template from cli
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Your title</title>
<meta name="description" content="your meta description">
<meta name="author" content="the author">
<link rel="stylesheet" href="yourstylesheet.css">
</head>
<body>
</body>
</html>
Install
npm install -g html5template
Usage
html5template
html5template --name template.phtml
html5template --name template2.html --path ./templates
import html5template from "html5template";
html5template({name:name, path:path});