Sha256: 0edd774bde1ba1d82b9fa7d5ebe99df3bf4d4430b784056703e654868b0d9f96

Contents?: true

Size: 1.91 KB

Versions: 10

Compression:

Stored size: 1.91 KB

Contents

<footer class="site-footer" aria-label="footer" role="contentinfo">

    <div class="contained">

        <div class="footer-header">
            <a class="footer-title brand" rel="author" href="{{ '/' | relative_url }}">
                {%- if site.logo -%}
                <strong class="screen-reader-text">{{ site.title | escape }}</strong>
                <img src="{{ site.logo | relative_url }}" alt="{{ site.title | escape }}" height="2rem">
                {%- else -%}
                <strong class="h2">{{ site.title | escape }}</strong>
                {%- endif -%}
            </a>
        </div>

        <div class="footer-content">
            <div class="footer-cell">
                <ul class="contact-list">
                    <li class="p-name">
                        {%- if site.author -%}
                        {{ site.author | escape }}
                        {%- else -%}
                        {{ site.title | escape }}
                        {%- endif -%}
                    </li>
                    {%- if site.email -%}
                    <li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
                    {%- endif -%}
                </ul>
            </div>

            <div class="footer-cell">
                {%- include social.html -%}
            </div>

            <div class="footer-cell">
                <p>{{- site.colophon | escape -}}</p>
            </div>
        </div>

    </div>

</footer>

{%- assign use_social = false -%}

{%- for network in site.data.social.networks -%}
{%- if network.username != nil or network.use -%}
{%- assign use_social = true -%}
{%- endif -%}
{%- endfor -%}

{%- if use_social -%}
<svg xmlns="http://www.w3.org/2000/svg" class="hidden">
    {%- for network in site.data.social.networks -%}
    {%- if network.username != nil or network.use -%}
    {{ network.icon | raw }}
    {%- endif -%}
    {%- endfor -%}
</svg>
{%- endif -%}

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
aemi-1.2.4 _includes/footer.html
aemi-1.2.3 _includes/footer.html
aemi-1.2.2 _includes/footer.html
aemi-1.2.1 _includes/footer.html
aemi-1.2.0 _includes/footer.html
aemi-1.1.5 _includes/footer.html
aemi-1.1.4 _includes/footer.html
aemi-1.1.3 _includes/footer.html
aemi-1.1.2 _includes/footer.html
aemi-1.1.1 _includes/footer.html