Sha256: 0e8a8e129f593362e09ffaa98b2c4aad5bee04ab5d768599931c44f5b5baf415

Contents?: true

Size: 799 Bytes

Versions: 1

Compression:

Stored size: 799 Bytes

Contents

<!DOCTYPE html>
<html>
<head>
  {% include head.html %}
  <style>
    .photoblog-container {
      padding-top: 100px;
    }
    .photo-item {
      margin-bottom: 20px;
    }
  </style>
</head>
<body>
  {% include header.html %}
  <div class="container-fluid photoblog-container">
      <!-- Example row of columns -->
      <div class="row">
        {% assign image_files = site.static_files | where: "image", true %}
        {% for myimage in image_files %}
          <div class="col-md-4 photo-item">
            <a href="{{ myimage.path }}"><img src="http://placehold.it/300x300"></a>
          </div>
        {% endfor %}
      </div>
      <hr>
      <footer>
        <p>© Rituparna Dey 2017</p>
      </footer>
    </div>
  {% include footer.html %}
  </div><!-- /.main -->
</body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
photoblog-theme-0.1.8 _layouts/default.html