2018-08-02 20:44:04 -04:00
|
|
|
<% var rootPath = '../../'; %>
|
2018-07-31 16:09:51 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
2018-08-02 20:44:04 -04:00
|
|
|
<%- include(rootPath + 'partials/include') %>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/projects.css">
|
2018-07-31 16:09:51 -04:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<header>
|
2018-08-02 20:44:04 -04:00
|
|
|
<%- include(rootPath + 'partials/nav') %>
|
2018-07-31 16:09:51 -04:00
|
|
|
</header>
|
|
|
|
|
2018-08-02 20:44:04 -04:00
|
|
|
<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>
|
2018-07-31 16:09:51 -04:00
|
|
|
</div>
|
|
|
|
|
2018-08-02 20:44:04 -04:00
|
|
|
<%- include(rootPath + 'partials/footer') %>
|
|
|
|
<%- include(rootPath + 'partials/post_html_include') %>
|
2018-07-31 16:09:51 -04:00
|
|
|
</body>
|
|
|
|
</html>
|