Fullbleed shortcode

Fullbleeds are blocks that occupy full width of the page, breaking the visual pattern and so grabbing user's attention.

To add a full-bleed block, use the {% fullbleed %} shortcode. It accepts background color and spaced boolean flag, which adds some paddings to the block:

{% fullbleed "yellow-soft", false %}
{% container %}
    # HELLO
{% endcontainer %}
{% endfullbleed %}

HELLO

You may have noticed that we were using another shortcode, called container. This container creates a block that is also centered as has the same width as the content block. Also this shortcode can render markdown inside itself, so you can write your content as usual:

Full bleed demo

You can use markdown inside container shortcode, and combining it with the fullbleed block is very cool.

Bender

You can insert images, lists, cards, everything.

This is the source for the full-bleed block above:

{% fullbleed "blue-soft", false %}
{% container %}
   # Full bleed demo

    You can use markdown inside container shortcode, and combining
    it with the fullbleed block is very cool.

   ![Bender](/img/bender.png)

   You can insert images, **lists**, cards, everything.
{% endcontainer %}
{% endfullbleed %}

Colors

Blue

Blue-soft

Yellow

Yellow-soft

Pink

Pink-soft