Sha256: 83223ccba78a59f0a75cc8ffb0cb3b76ee0d2779b2f91cf0d8fddaedaf58a0fb

Contents?: true

Size: 809 Bytes

Versions: 4

Compression:

Stored size: 809 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 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 class="gallery" 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

4 entries across 4 versions & 1 rubygems

Version Path
photoblog-theme-0.2.3 _layouts/default.html
photoblog-theme-0.2.1 _layouts/default.html
photoblog-theme-0.2.0 _layouts/default.html
photoblog-theme-0.1.9 _layouts/default.html