personal-website/views/pages/projects/project_template.ejs

29 lines
604 B
Plaintext
Raw Normal View History

<% var rootPath = '../../'; %>
<!DOCTYPE html>
<html lang="en">
<head>
<%- include(rootPath + 'partials/include') %>
<link rel="stylesheet" type="text/css" href="/css/projects.css">
</head>
<body>
<header>
<%- include(rootPath + 'partials/nav') %>
</header>
<div class="container mt-5">
<div class="row">
<div class="col-3">
<!-- scroll spy goes here -->
</div>
<div class="col-9 mt-5 pt-5 pb-5">
<%- include(rootPath + page) %>
</div>
</div>
</div>
<%- include(rootPath + 'partials/footer') %>
<%- include(rootPath + 'partials/post_html_include') %>
</body>
</html>