Sha256: b11706cdbed9ca0133fc9ac154f23ca43a9ae5e0410aba9ec4abb28b4453b097

Contents?: true

Size: 1.41 KB

Versions: 3

Compression:

Stored size: 1.41 KB

Contents

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

<!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 %}

      {% if privacy_policy %}
        <a href="{{ privacy_policy.url }}" rel="privacy-policy">{{ privacy_policy.title }}</a>
      {% endif %}
    </footer>
  </body>
</html>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sutty-jekyll-theme-0.2.4 _layouts/default.html
sutty-jekyll-theme-0.2.3 _layouts/default.html
sutty-jekyll-theme-0.2.1 _layouts/default.html