Sha256: 7b7b6e95430bfe19ca7c9efb748d8d5536490d2ade257372ab117bb4545e0f59

Contents?: true

Size: 599 Bytes

Versions: 2

Compression:

Stored size: 599 Bytes

Contents

{% assign links = include.links | where:'show', true %}

{% if links.size > 0 %}
    <p class="mb-3">Refer to the documentation by the links below:</p>

    <div class="pt-3">
    {% for item in links %}
        <a
            href="{{ item.link }}"
            {% if item.target %}target="{{ item.target }}"{% endif %}
            {% if item.direct_download and item.direct_download == true %}download="{{ item.link | split: '/' | last }}"{% endif %}
            class="btn btn-outline-secondary action-go"
        >
            {{ item.name }}
        </a>
    {% endfor %}
    </div>
{% endif %}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
infotorg-api-jekyll-theme-0.1.8 _includes/documentation_links.html
infotorg-api-jekyll-theme-0.1.7 _includes/documentation_links.html