Sha256: 59989a827d7cfdfbe96da5f1c04259b103c33afd5f682e3b0dca7090f298210f

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

{%- assign license = site.posts | find: "layout", "license" -%}
{%- assign code_of_conduct = site.posts | find: "layout", "code_of_conduct" -%}

<!DOCTYPE html>
<html lang="{{ site.lang }}" dir="{{ site.dir }}">
  <head>
    <meta charset="UTF-8">
    <base href="{% base %}" />
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
    <meta content="width=device-width, initial-scale=1.0" name="viewport">
    <meta name="theme-color" content="white"/>
    <meta name="color-scheme" content="light"/>

    <link href="assets/css/styles.css" rel="stylesheet">

    {% seo %}
    {% feed_meta %}
  </head>
  <body class="min-vh-100 d-flex flex-column">
    {% include navbar.html %}

    <main class="container flex-grow-1">
      <div class="row justify-content-center d-print-block">
        <div class="col-md-8">
          {{ content }}
        </div>
      </div>
    </main>

    <footer class="p-3">
      {% if license %}
        <a href="{{ license.url }}" rel="license">{{ license.title }}</a>
      {% endif %}

      {% if code_of_conduct %}
        <a href="{{ code_of_conduct.url }}" rel="code-of-conduct">{{ code_of_conduct.title }}</a>
      {% endif %}
    </footer>
  </body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sutty-jekyll-theme-0.2.0 _layouts/default.html