Column Layouts
Four Column Layout
<four-column>
<template #first-col>
Your content in Markdown, HTML or other components.
</template>
<template #second-col>
Your content in Markdown, HTML or other components.
</template>
<template #third-col>
Your content in Markdown, HTML or other components.
</template>
<template #fourth-col>
Your content in Markdown, HTML or other components.
</template>
</four-column>
Three Column Layout
<three-column>
<template #first-col>
Your content in Markdown, HTML or other components.
</template>
<template #second-col>
Your content in Markdown, HTML or other components.
</template>
<template #third-col>
Your content in Markdown, HTML or other components.
</template>
</three-column>
Two Column Layout
<two-column>
<template #first-col>
Your content in Markdown, HTML or other components.
</template>
<template #second-col>
Your content in Markdown, HTML or other components.
</template>
</two-column>
Two Column Layout (Uneven)
First column is wider than the second column
<two-column-uneven>
<template #first-col>
Your content in Markdown, HTML or other components.
</template>
<template #second-col>
Your content in Markdown, HTML or other components.
</template>
</two-column-uneven>