2018-08-02 20:44:04 -04:00
|
|
|
<% var rootPath = '../../'; %>
|
2018-08-03 23:37:28 -04:00
|
|
|
<% var navExt = '-nav' %>
|
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">
|
2018-08-03 23:37:28 -04:00
|
|
|
<div class="col-3 mt-5">
|
|
|
|
<%- include(rootPath + page + navExt) %>
|
2018-08-02 20:44:04 -04:00
|
|
|
</div>
|
2018-08-03 23:37:28 -04:00
|
|
|
<div data-spy="scroll" data-target="#nav-scroll" data-offset="0" class="col-9 mt-5 pt-5 pb-5">
|
2018-08-02 20:44:04 -04:00
|
|
|
<%- 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>
|