html-template-manager
v0.5.6
Published
A simple template manager for html files.
Downloads
6
Maintainers
Readme
HTML Template manager
This package is a development tool to help you manage multiple html files with similar structure. It lets you create a template file and assign a directory that will inherit the template. The package is also compatible with dreamweaver templates.
Installation
Installing globally:
npm install -g html-template-manager
When installing globally, refer to Using globally.
Installing locally:
npm install --save-dev html-template-manager
When installing locally, refer to Using locally.
You could also just clone this repo:
git clone https://github.com/Plazide/html-template-manager.git
When cloning the repo, refer to Without npm
How to use?
Using locally
Run with npm scripts
When installing locally in a project folder, you need to create scripts in your package.json file to be able to run the template manager. Use the following examples as a reference.
{
"name": "MyProject",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"template": "template",
"init": "template templates/template.html static --once",
"once": "template --once",
"paths": "template --paths"
}
}
Using the example above, you would use the following commands,
to update files as you make changes to the template file:
npm run template
to set paths to the template file and html folder:
npm run init
to update html files once:
npm run once
to see which paths the manager is currently using:
npm run paths
Run together with other scripts
Alternatively, you could use something like Concurrently to run the template manager at the same time as other scripts.
For example:
{
"name": "MyProject",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "concurrently \"template\" \"node server.js\"",
"init": "template templates/template.html static --once",
"once": "template --once",
"paths": "template --paths"
}
}
To run the template manager at the same time as the server, you would just do:
npm start
Using globally
Not specifying paths
Once the package is installed globally, all you need to do is run:
template
or, to update files once:
template --once
By using these either of these commands, the html-template-manager will create the necessary folders and files that it needs to function. These include the ./static
folder where your html files will be placed, and ./templates/template.html
which is your template file.
If you have already specified paths using one of the methods in Specifying paths, these commands will use those paths.
Specifying paths
To run the template manager simply do:
template <your-template-file> <your-html-folder>
or, to update files once:
template <your-template-file> <your-html-folder> --once
By running the CLI with both of these arguments, the template manager will automatically create the specified files and folders if they don't already exist. It will also save the paths so that you don't have to specify them again. If you for some reason decide you want to change the paths in the future, simply run the same command but specify different paths.
It's worth noting that since we are running the command globally, the paths will be the same even if you run the command from a different directory. This is not the case when installing locally.
If you want to see which paths you currently have configured, you can run:
template --paths
Declaring template files
To make a file inherit the template, you need to add a <!-- InstanceBegin -->
comment right before the <head>
tag. This works with dreamweaver templates as well, but the options in a dreamweaver file will be ignored. You also need to close the instance with a <!-- InstanceEnd -->
comment right after the closing </body>
tag.
Declaring editable areas
To declare the beginning of an editable area, you can use either a <!-- BeginEditable -->
or a <!-- InstanceBeginEditable -->
comment. To declare the end of an editable area, you can use either <!-- EndEditable -->
or <!-- InstanceEndEditable -->
. It is recommended to wrap the entire title tag, both opening and closing tag, inside of these since comments are visible when inside the title tag.
Without npm
If you chose to clone this repo, you would run:
node lib/index.js
This is not recommended since it will prevent you from adding arguments.
Examples
Running with paths
Run the template manager with ./templates/default.html
as the template, and ./static
as your html folder. This example is run from the root directory of the application.
template templates/default.html static
Template file
A basic template file.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- BeginEditable -->
<title>Document</title>
<!-- EndEditable -->
</head>
<body>
<header>
<a href="/index.html">Home</a>
<a href="/contact.html">Contact</a>
<a href="/about.html">About</a>
</header>
<!-- BeginEditable -->
<!-- EndEditable -->
</body>
</html>
File to inherit template
The structure of a file that inherits the template.
<!DOCTYPE html>
<html lang="en">
<!-- InstanceBegin -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- BeginEditable -->
<title>Document</title>
<!-- EndEditable -->
</head>
<body>
<header>
<a href="/index.html">Home</a>
<a href="/contact.html">Contact</a>
<a href="/about.html">About</a>
</header>
<!-- BeginEditable -->
<!-- EndEditable -->
</body>
<!-- InstanceEnd -->
</html>