Sha256: 632bdba2b1842bf14469da713f0e276250f98bb660aff54591aa363c1cebb301
Contents?: true
Size: 1.06 KB
Versions: 14
Compression:
Stored size: 1.06 KB
Contents
<!doctype html> <html lang="en"> {% include head.html %} <body> {% 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><span class="ms-2 d-none d-sm-inline">Back to top</span> </button> {%- endif %} {% include footer.html %} {% include cookie-popup.html %} </body> </html>
Version data entries
14 entries across 14 versions & 1 rubygems