Sha256: e5fe7b8ef1fde085f8c63f2f4b65268f69ddbe9ded651a7768e7f2f6a6893499

Contents?: true

Size: 1.31 KB

Versions: 1

Compression:

Stored size: 1.31 KB

Contents

<!DOCTYPE html>

<html>
    {% include head.html %}
    <body class="site-container">
        <a class="site-title"
           href="{{ site.url }}">
            {{ site.title }}
        </a>

        <header class="site-description" >
            {{ site.description }}
        </header>

        <a href="{{ site.url }}"
           class="site-logo">
            <img src="{{ site.site_logo | relative_url }}" />
        </a>

        <section class="site-contacts">
            {% for link in site.social_links %}
            <a href="{{ link.url }}">
                {% if link.ico %}
                <img style="width: 2em;"
                     src="{{ link.ico | absolute_url }}" />
                {% else %}
                <img style="width: 2em;"
                     src="{%link /assets/bullet.svg %}" />
                {% endif %}
            </a>
            {% endfor %}
        </section>

        <nav class="site-navigation">
            {% include navigation.html %}
        </nav>

        <section class="site-content">
            {{ content }}
        </section>

        <section class="site-comments">
            <div id="disqus_thread" ></div>
            {% include disqus.html %}
        </section>

        <footer class="site-footer">
            {% include footer.html %}
        </footer>

    </body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-newtype-0.1.4 _layouts/default.html