Sha256: 89d29303bfc697cb54b2beb2590a6c80d289b7eb7d11d2644c81a56ad5c091de

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

<!doctype html>
<html lang="en">
{% include head.html %}
<body>
    {% if jekyll.environment == "development" %}{% include dev-info.html %}{% endif %}
    {% include topnav.html %}
    <!-- Page Content -->
    <div class="container min-vh-100">
        <!-- Content Row -->
        <div class="row gx-0 gx-lg-5">
            {%- assign content_col_size = "col-lg-12" %}{% unless page.hide_sidebar %}
            <!-- Sidebar Column -->
            <div class="col-lg-3">
                {% include sidebar.html %}
            </div>
            {%- assign content_col_size = "col-lg-9" %}{% endunless %}
            <!-- Content Column -->
            <div class="{{content_col_size}}">
                {{content}}
            </div>
        </div>
    </div>
    {%- if site.theme_variables.back_to_top or site.theme_variables.back_to_top == nil %}
    <button id="back-to-top" class="btn btn-primary" type="button" aria-hidden="true" onclick="topFunction()">
        <i class="fa-solid fa-arrow-up"></i>
    </button>
    {%- endif %}
    {% include footer.html %}
    {% include cookie-popup.html %}
</body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
elixir-toolkit-theme-1.23.0 _layouts/default.html
elixir-toolkit-theme-1.22.0 _layouts/default.html