FOLDERBASE


Page Layout

Content Blocks in Grid Layout

If you want more control over rows and columns, you can use the grid-container class, with each column appearing inside of its own div. Note that in this example, each div containing column content must have the markup markdown='1' .

<div class="grid-2"> <div markdown="1"> ## First Column First Column paragraph content </div> <div markdown="1"> ## Second Column Second Column paragraph content </div> </div>

Text inside Columns

You can display multiple text columns in your article layout by using some HTML markup in your Markdown file. Make sure there is a line break gap between the HTML tags and the Markdown content, as in the example below.

<section class="two" markdown="1"> ## My Heading Paragraph content </section>

See the "01 HOW TO" section in the sample package for examples of these layouts.

NEXT: Adding Media