Sha256: ba13bb8235b6b19f7387035ca8effa45201dda0a4b9c49ea3b4963575d22d8d6
Contents?: true
Size: 877 Bytes
Versions: 1
Compression:
Stored size: 877 Bytes
Contents
<!DOCTYPE html> <html> <head> {% include head.html %} </head> <body> {% include header.html %} <div class="container-fluid photoblog-container"> <!-- Example row of columns --> <div class="row"> <div class="col-md-4"> <img src="http://placehold.it/300x300"> </div> <div class="col-md-4"> <img src="http://placehold.it/300x300"> </div> <div class="col-md-4"> <img src="http://placehold.it/300x300"> </div> </div> <div class="row"> {% assign image_files = site.static_files | where: "image", true %} {% for myimage in image_files %} {{ myimage.path }} {% 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.6 | _layouts/default.html |