mirror of
https://github.com/len0rd/personal-website.git
synced 2025-09-07 22:57:46 -04:00
fixed. generated MD now shows up and looks half decent. going to have it also use a scrollspy navbar on the left. needs to be autogenerated by the prestart script
This commit is contained in:
parent
d77ca583ea
commit
392156bf6c
9 changed files with 52 additions and 27 deletions
|
@ -1,20 +1,29 @@
|
|||
<% var rootPath = '../../'; %>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<% include ../../partials/include %>
|
||||
<%- include(rootPath + 'partials/include') %>
|
||||
<link rel="stylesheet" type="text/css" href="/css/projects.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<% include ../../partials/nav %>
|
||||
<%- include(rootPath + 'partials/nav') %>
|
||||
</header>
|
||||
|
||||
<div class="container">
|
||||
<% include(page) %>
|
||||
<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 ../../partials/footer %>
|
||||
<% include ../../partials/post_html_include %>
|
||||
<%- include(rootPath + 'partials/footer') %>
|
||||
<%- include(rootPath + 'partials/post_html_include') %>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue