2022-06-20 21:55:50 -04:00
|
|
|
<% 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>
|
|
|
|
|
2022-06-21 21:02:32 -04:00
|
|
|
<div class="container mt-5 topMargin">
|
|
|
|
<div class="row g-0">
|
|
|
|
<div class="col-md-8">
|
|
|
|
<%- include(rootPath + page + '-title') %>
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
<%- include(rootPath + page + '-ingredients') %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-06-20 21:55:50 -04:00
|
|
|
|
2022-06-21 21:02:32 -04:00
|
|
|
<%- include(rootPath + page + '-instructions') %>
|
|
|
|
</div>
|
2022-06-20 21:55:50 -04:00
|
|
|
|
|
|
|
<%- include(rootPath + 'partials/post_html_include') %>
|
|
|
|
</body>
|
|
|
|
</html>
|