Sha256: f70074d0b29917958ebb34da96ed2d93d5b8c39ad6fdafad68d727fc07c7469f

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

{% assign collection = site.collections | where: "label", page.collection | first %}
{% assign lang = page.lang | default: site.lang | default: 'en' %}

{% assign menus = collection.menu | default: site.data.translations.menu %}
{% assign menu = menus[lang] %}

{% assign title = collection.title | default: site.title | default: page.title %}
{% assign subtitle = collection.subtitle | default: site.subtitle | default: page.subtitle %}
{% assign description = collection.description | default: site.description | default: page.description %}

<!DOCTYPE html>
<html lang="{{ lang }}">

{% include head.html title=title subtitle=subtitle %}

<body>

    <!-- Wrapper -->
    <div id="wrapper">

        <!-- Main -->
        <div id="main">
            <div class="inner">

                {% include header.html title=title subtitle=subtitle %}

                {{ content }}

            </div>
        </div>

        {% include sidebar.html menu=menu %}

    </div>

    {% include scripts.html %}

</body>

</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-theme-consulting-0.1.5 _layouts/default.html
jekyll-theme-consulting-0.1.4 _layouts/default.html