Description

Displays a call out in the page, consisting of a header and content.

Syntax

{% include calloutBox.html header="<string>" content="<string>" %}

Example

Tip!

This is a bunch of content here that I will put in the body area of this call-out object.

Code

<div class="call-out-box">
  <span class="call-out-box-header">{{ include.header }}</span>
  <p class="call-out-box-content">{{ include.content }}</p>
</div>