1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!DOCTYPE html> <html> <head> <title><%= title %></title> <link rel="stylesheet" href="/css/globalstyles.css"> </head> <body> <div id="main-container"> <%- include('partials/header') %> <div id="content-container"> <%- include('partials/navbar') %> <div id="content"> <%- page %> </div> </div> </div> </body> </html>