Sha256: f29e58c13011f0b39911d4eea86aafb30456d55107cdd07994fd95e9914717f3

Contents?: true

Size: 890 Bytes

Versions: 1

Compression:

Stored size: 890 Bytes

Contents

<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: 'en' }}">
  {% include head.html %}

  <body>
    <div id="layout" class="pure-g">
      {% assign cover = site.cover | default: "https://images.unsplash.com/photo-1601054578112-7fb1d6ab06d6" %}
      {% if page.cover %}
        {% assign cover = page.cover %}
      {% endif %}
      <div class="sidebar pure-u-1 pure-u-md-1-4" {% if cover %}style="background-image: url({{ cover | relative_url }});"{% endif %}>
        {% include header.html %}
      </div>
      <div class="content pure-u-1 pure-u-md-3-4">
        {{ content }}

        {% include footer.html %}
      </div>
    </div>

    {% if page.math %}
      {% include mathjax.html %}
    {% endif %}

    {% if jekyll.environment == 'production' and site.google_analytics %}
      {% include google-analytics.html %}
    {% endif %}
  </body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-hydure-0.1.0 _layouts/default.html