photoblog-theme 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_layouts/default.html +8 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5610dec0509529f287002e4ab1ed8fdcb5817335
|
4
|
+
data.tar.gz: 4350293a9450624b7df3229e39a259d79d71d34c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e13132dce0bf8907996c8cc38b10e937fccc79020b5da259fe03b0fc8419b9f7663b40944dc8643b0d6b55b57ec953274a72b5b4faa3a677a4ff50adbef263c1
|
7
|
+
data.tar.gz: 637e746a4ca68179b244fc4c7882bc26be3558da8812a9d18838ea871e21fefc8ade83b546ee8827069133242edae9b69d2d65fb6547dea19d59392360e5fb73
|
data/_layouts/default.html
CHANGED
@@ -5,27 +5,30 @@
|
|
5
5
|
</head>
|
6
6
|
<body>
|
7
7
|
{% include header.html %}
|
8
|
-
<div class="container-fluid">
|
8
|
+
<div class="container-fluid photoblog-container">
|
9
9
|
<!-- Example row of columns -->
|
10
10
|
<div class="row">
|
11
11
|
<div class="col-md-4">
|
12
12
|
<img src="http://placehold.it/300x300">
|
13
|
-
<p><a class="btn btn-secondary" href="#" role="button">View details »</a></p>
|
14
13
|
</div>
|
15
14
|
<div class="col-md-4">
|
16
15
|
<img src="http://placehold.it/300x300">
|
17
|
-
<p><a class="btn btn-secondary" href="#" role="button">View details »</a></p>
|
18
16
|
</div>
|
19
17
|
<div class="col-md-4">
|
20
18
|
<img src="http://placehold.it/300x300">
|
21
|
-
<p><a class="btn btn-secondary" href="#" role="button">View details »</a></p>
|
22
19
|
</div>
|
23
20
|
</div>
|
21
|
+
<div class="row">
|
22
|
+
{% assign image_files = site.static_files | where: "image", true %}
|
23
|
+
{% for myimage in image_files %}
|
24
|
+
{{ myimage.path }}
|
25
|
+
{% endfor %}
|
26
|
+
</div>
|
24
27
|
|
25
28
|
<hr>
|
26
29
|
|
27
30
|
<footer>
|
28
|
-
<p>©
|
31
|
+
<p>© Rituparna Dey 2017</p>
|
29
32
|
</footer>
|
30
33
|
</div>
|
31
34
|
{% include footer.html %}
|