Sha256: ed15d02171c5cc4631b1d172ffab2a3d9c1b6a5778a69c464a992f244e642ae6
Contents?: true
Size: 832 Bytes
Versions: 11
Compression:
Stored size: 832 Bytes
Contents
--- # default.html is the base layout for the site. it includes the skeletal # elements like the header, sidebar, and footer, that go # around every page on the site # --- <!DOCTYPE html> <html lang="{{-page.lang | default: site.lang | default: 'en'-}}"> <head> <!-- <title>{{-site.title-}}</title> --> {% include head.html %} </head> <body class="{{-page.body_class | default: page.collection | append: ' '-}}is-preload"> <div id="wrapper"> <main id="main" aria-label="Content"> <!-- Main Page Content --> <div class="inner"> {% include site_header.html %} {{ content }} </div> </main> {% include sidebar.html %} </div> <!-- End Wrapper --> <!-- Scripts --> {%-include scripts.html %} </body> </html>
Version data entries
11 entries across 11 versions & 1 rubygems