HTML templating engine.
This is a custom HTML templating engine I developed.
- Execute the following commands:
npm install
npm run dev
First, create a .html file in the ./content
directory
touch ./content/page.html
Create a route for that .html
file in the ./index.js
file:
app.get('/page', renderHtml("./content/page.html"));
The contents of page.html will now be available at the /page
route.
To use components, first create a .nick
component file in the ./content/components
directory:
touch ./content/components/Component.nick
and add some html code to the component. Example:
<span>This is the Component.nick component</span>
Then you can include your component in your .html file with the following syntax:
<div>
<@components/Component.nick>
<div>
As Component.nick is found at the route ./content/components/Component.nick
, we in fact point to the location of the component with @components/Component.nick
- the components route relative to the content
directory.
npm i
npm run start
If you wish to pre-build you html files, you can run
npm run build
this will output all html files in the ./build
directory.