Sha256: d1d4fb8b8278b706e248d3ea856555a661a308d42baf40a529385093467aed41

Contents?: true

Size: 884 Bytes

Versions: 5

Compression:

Stored size: 884 Bytes

Contents

{% if page.homepage %}
    <div class="mt-4 mb-0">
        {% if site.project.download_url %}
            {% capture button_text -%}
                {{ site.project.download_text | default: 'Download' }}
            {%- endcapture %}

            {% include masthead/button.html
                 url=site.project.download_url
                 icon="download"
                 title=button_text
            %}
        {% endif %}

        {% for link in site.links.homepage %}
            {% include masthead/button.html
                   url=link.url
                   icon=link.icon
                   title=link.title
                   brand=link.brand
            %}
        {% endfor %}
    </div>

    {% if site.project.version %}
        <p class="site-masthead__version my-0">
            Latest release v{{ site.project.version }}
        </p>
    {% endif %}
{% endif %}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jekyll-docs-theme-1.0.0 _includes/masthead/buttons.html
jekyll-docs-theme-1.0.0.pre.beta.4 _includes/masthead/buttons.html
jekyll-docs-theme-1.0.0.pre.beta.3 _includes/masthead/buttons.html
jekyll-docs-theme-1.0.0.pre.beta.2 _includes/masthead/buttons.html
jekyll-docs-theme-1.0.0.pre.beta.1 _includes/masthead/buttons.html