Sha256: d57dc5da21f1138880f6340eef0d2cb1f87a35efe1542dce646431daf1bb21bb

Contents?: true

Size: 1.42 KB

Versions: 20

Compression:

Stored size: 1.42 KB

Contents

{% assign section = include.section %}
<section id="{{ section.section_id }}" class="block block-text outer">
    <div class="inner">
        <div class="grid grid-middle grid-center{% if section.image and section.image_position == 'right' %} grid-swap{% endif %}">
            {% assign image_is_not_empty = section.image | is_not_empty %} {% if image_is_not_empty %}
            <div class="grid-item block-image">
                <img src="{{ section.image | relative_url }}" alt="{{ section.title }}" />
            </div>
            {% endif %}
            <div class="grid-item block-body">
                {% assign title_is_not_empty = section.title | is_not_empty %} {% if title_is_not_empty %}
                <div class="block-header">
                    <h2 class="block-title">{{ section.title }}</h2>
                </div>
                {% endif %} {% assign content_is_not_empty = section.content | is_not_empty %} {% if content_is_not_empty %}
                <div class="block-content">
                    {{ section.content | markdownify }}
                </div>
                {% endif %} {% assign actions_is_not_empty = section.actions | is_not_empty %} {% if actions_is_not_empty %}
                <div class="block-buttons">

                    {% include cta_buttons.html actions=section.actions %}
                </div>
                {% endif %}
            </div>
        </div>
    </div>
</section>
<!-- .block -->

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
ledger_sync-3.0.0 documentation/site/_includes/section_content.html
ledger_sync-2.6.0 documentation/site/_includes/section_content.html
ledger_sync-2.5.0 documentation/site/_includes/section_content.html
ledger_sync-2.4.4 documentation/site/_includes/section_content.html
ledger_sync-2.3.1 documentation/site/_includes/section_content.html
ledger_sync-2.2.3 documentation/site/_includes/section_content.html
ledger_sync-2.2.1 documentation/site/_includes/section_content.html
ledger_sync-2.2.0 documentation/site/_includes/section_content.html
ledger_sync-2.0.2 documentation/site/_includes/section_content.html
ledger_sync-2.0.1 documentation/site/_includes/section_content.html
ledger_sync-2.0.0 documentation/site/_includes/section_content.html
ledger_sync-2.0.0.pre.1 documentation/site/_includes/section_content.html
ledger_sync-1.8.1 documentation/site/_includes/section_content.html
ledger_sync-1.8.0 documentation/site/_includes/section_content.html
ledger_sync-1.7.0 documentation/site/_includes/section_content.html
ledger_sync-1.6.0 documentation/site/_includes/section_content.html
ledger_sync-1.5.2 documentation/site/_includes/section_content.html
ledger_sync-1.5.1 documentation/site/_includes/section_content.html
ledger_sync-1.5.0 documentation/site/_includes/section_content.html
ledger_sync-1.4.4 documentation/site/_includes/section_content.html