mirror of
https://github.com/len0rd/personal-website.git
synced 2025-03-01 12:02:14 -05:00
33 lines
793 B
Plaintext
33 lines
793 B
Plaintext
<% 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">
|
|
<%- include(rootPath + page) %>
|
|
</div>
|
|
</div>
|
|
|
|
<%- include(rootPath + 'partials/footer') %>
|
|
<%- include(rootPath + 'partials/post_html_include') %>
|
|
<script type="text/javascript" src="/script/dynamicscrollspy.min.js"></script>
|
|
<script>
|
|
$('#scrollBar').DynamicScrollspy({
|
|
ulClassNames: 'navbar navbar-light bg-light sticky-top sticky-offset'
|
|
});
|
|
</script>
|
|
|
|
<%- include(rootPath + 'partials/post_html_include') %>
|
|
</body>
|
|
</html>
|