photoblog-theme 0.1.6 → 0.1.7
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 +3 -14
- 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: 0c00505be6af6afdd39cd25b8680e0a2b5e4db09
|
4
|
+
data.tar.gz: 3ca9b58b511b61980b83eadbaf46ea5e9a5186a3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 882a136467295c95997da66e0bc0d1854360fc14a23aeefaf1608c6607e75ecc79de1a1251c91ad6fc84c6610d8229c5cc351499b27867945e499737fa32c99d
|
7
|
+
data.tar.gz: 4f9027787c59699449f3bd832a452f34c48b4b3db625e402dcfb3b887f64bc799001e6766cf99ecaf4cbe1ff309fa9015ab1fd69653188d631795a73c16d2ae6
|
data/_layouts/default.html
CHANGED
@@ -7,26 +7,15 @@
|
|
7
7
|
{% include header.html %}
|
8
8
|
<div class="container-fluid photoblog-container">
|
9
9
|
<!-- Example row of columns -->
|
10
|
-
<div class="row">
|
11
|
-
<div class="col-md-4">
|
12
|
-
<img src="http://placehold.it/300x300">
|
13
|
-
</div>
|
14
|
-
<div class="col-md-4">
|
15
|
-
<img src="http://placehold.it/300x300">
|
16
|
-
</div>
|
17
|
-
<div class="col-md-4">
|
18
|
-
<img src="http://placehold.it/300x300">
|
19
|
-
</div>
|
20
|
-
</div>
|
21
10
|
<div class="row">
|
22
11
|
{% assign image_files = site.static_files | where: "image", true %}
|
23
12
|
{% for myimage in image_files %}
|
24
|
-
|
13
|
+
<div class="col-md-4">
|
14
|
+
<a href="{{ myimage.path }}"></a><img src="http://placehold.it/300x300">
|
15
|
+
</div>
|
25
16
|
{% endfor %}
|
26
17
|
</div>
|
27
|
-
|
28
18
|
<hr>
|
29
|
-
|
30
19
|
<footer>
|
31
20
|
<p>© Rituparna Dey 2017</p>
|
32
21
|
</footer>
|