Hey guys, I have a very weird layout where we have a side bar that follows you. Because of the structure, our content section is currently broken up in two parts. Is there a way to use a single markdown file to fill both sections?
Example structure:
<section id="main" class="content-container article-pad-v">
<div class="d-flex container justify-content-between section_1">
<div class="content-left-side">
<h1>
{{ index .Params "headline" | markdownify }}
</h1>
<div class="information">
// section 1
</div>
</div>
<div class="pl-3 content-right-side d-flex">
<div class="bio">
...
</div>
</div>
<div class="container section_2">
<div
class="content position-relative mt-4 d-flex justify-content-between position-relative"
>
<div class="content-left-side">
{{ .Content }}
</div>
</div>
</div>
</section>