I am not sure exactly how to do this, but I am using the Beautiful Jekyll Theme. I have a page that has my CV and I want to make two columns on the page so I can have Date | Content. I am not sure if i need to embed HTML or CSS in my markdown or what, I don’t have that much experience with either.
I tried embedding this HTML in my markdown file:
<div class="grid">
<div class="col-1-2">
<div class="content">
<p>...insert content left side...</p>
</div>
</div>
<div class="col-1-2">
<div class="content">
<p>...insert content right side...</p>
</div>
</div>
</div>
But when I loaded it locally it produced only a linebreak, not two columns.
Thanks