Includes
INCLUDES - it is used to create sub-templates syntax- <%- include("includes/head.ejs") here includes- Folder name head.ejs -file name insta.ejs <%- include ( "includes/head.ejs" ); %> < body > < h1 > Welcome to the page of @ <%= data . name %> </ h1 > < button > Follow </ button > < button > Message </ button > < p > Followers: <%= data . followers %> Following: <%= data . following %> </ p > <!-- LOOP FOR POSTS --> <% for ( let post of data . posts ){ %> < img src = " <%= post . image %> " /> < p > Likes: <%= post . likes %> comments: <%= post . comments %> </ p > <% } %> <%- include ( "includes/footer.ejs" ); %> </ body ...