EJS Partials
Extending initial HTML content of application
EJS partials
It is possible to extend initial HTML content of application. By creating/filling the following files in /ejs
folder in target source you can extend content of head
element and add HTML code at the beginning/end of body
tag:
- head.ejs —
head
element content - index.ejs — beginning of
body
element content - body.ejs — end of
body
element content
Updated 4 months ago