BaseContentBlock
template(v-slot:top)
slot(name="top")
h2.h6.mb-2(v-html="title")
template(v-slot:default)
slot
.small.my-3(v-html="content")
template(v-slot:bottom)
slot(name="bottom")
Button(
tag="a"
:href="link"
isTextOnly
v-if="!!link"
download
)
|Download
template(v-slot:right)
slot(name="right")
.flex-0-1-auto.flex.items-center
img.object-cover.md-ml-8.w-full(
:src="imageSrc"
:alt="imageAltText"
)
```jsx
```