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:
len0rd 2018-08-02 20:44:04 -04:00
parent d77ca583ea
commit 392156bf6c
9 changed files with 52 additions and 27 deletions

View file

@ -69,7 +69,7 @@
</div>
<div class="card-footer">
<a href="https://github.com/len0rd/Repley" class="card-link text-yellow bottom">See Code</a>
<a href="#" class="btn btn-outline-light">Read More</a>
<a href="projects/darkstar" class="btn btn-outline-light">Read More</a>
</div>
</div>
</div>

View file

@ -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>