mirror of
https://github.com/len0rd/personal-website.git
synced 2025-09-08 15:17:51 -04:00
generate recipes into multiple partials to fit nice formatting
This commit is contained in:
parent
cc054470a7
commit
b2b500c3a0
10 changed files with 252 additions and 68 deletions
|
@ -12,20 +12,22 @@
|
|||
<%- include(rootPath + 'partials/nav') %>
|
||||
</header>
|
||||
|
||||
<div class="container mt-5">
|
||||
<div class="row">
|
||||
<%- include(rootPath + page) %>
|
||||
</div>
|
||||
</div>
|
||||
<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>
|
||||
|
||||
<%- 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 + page + '-instructions') %>
|
||||
</div>
|
||||
|
||||
<%- include(rootPath + 'partials/post_html_include') %>
|
||||
</body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue