Sha256: 3904e18bca9fb3b1f253ad7a44e250f1a2132d94eca676ca50481adeba9663ec

Contents?: true

Size: 1.69 KB

Versions: 7

Compression:

Stored size: 1.69 KB

Contents

<div class="col-xs-12">
    <div class="row equal">
    {% for block in include.object.block_section_content.blocks %}
        <div class="col-xs-12 col-sm-{{include.object.block_section_content.item_width}} block {% if include.object.style %}{{include.object.style}}{% endif %}">
            {% if block.url %}<a href="{{block.url}}">{% endif %}
            <div class="block-inner {% if block.background_image %}background_image_block{% endif %}" {% if block.background_image %}style="background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url({{block.background_image}});"{% endif %}>
                {% if block.inner_image %}
                    {% if block.inner_image.icon %}
                        <i class="block_image_icon {{block.inner_image.icon_name}}"></i>
                    {% else %}
                        <img class="img-responsive lazyload" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
                         data-src="{{block.inner_image.path}}"
                         alt="{% if block.inner_image.alt %}{{block.inner_image.alt}}{% else %}Content block image{% endif %}"/>
                    {% endif %}
                {% endif %}
                {% if block.title %}
                    {% include core/title.html object=block.title %}
                {% endif %}
                {% if block.text_content %}
                    {% include core/text.html object=block %}
                {% endif %}
                {% if block.buttons %}
                    {% include core/buttons.html object=block.buttons %}
                {% endif %}
            </div>
            {% if block.url %}</a>{% endif%}
        </div>
    {% endfor %}
    </div>
</div>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jumbo-jekyll-theme-5.6.9.2 _includes/core/blocks.html
jumbo-jekyll-theme-5.6.9.1 _includes/core/blocks.html
jumbo-jekyll-theme-5.6.9 _includes/core/blocks.html
jumbo-jekyll-theme-5.6.8 _includes/core/blocks.html
jumbo-jekyll-theme-5.6.7 _includes/core/blocks.html
jumbo-jekyll-theme-5.6.6 _includes/core/blocks.html
jumbo-jekyll-theme-5.6.5 _includes/core/blocks.html