mirror of
https://github.com/len0rd/personal-website.git
synced 2025-03-02 12:32:05 -05:00
30 lines
706 B
Plaintext
30 lines
706 B
Plaintext
<% var rootPath = '../../'; %>
|
|
<% var navExt = '-nav' %>
|
|
<!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 mt-5">
|
|
<%- include(rootPath + page + navExt) %>
|
|
</div>
|
|
<div data-spy="scroll" data-target="#nav-scroll" data-offset="0" 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> |