Updated theme to Ghost 2.1
[ghost-theme-willow.git] / default.hbs
index 06b1b414a07ddce36b4bb2aff9cd313e562350d0..a9971b8b484c415f8779a0336e6b459fe396365e 100644 (file)
 
     <script src="{{asset "js/scripts.js"}}"></script>
     {{ghost_foot}}
+
+    <script>
+    var images = document.querySelectorAll('.kg-gallery-image img');
+    images.forEach(function (image) {
+        var container = image.closest('.kg-gallery-image');
+        var width = image.attributes.width.value;
+        var height = image.attributes.height.value;
+        var ratio = width / height;
+        container.style.flex = ratio + ' 1 0%';
+    })
+    </script>
+
 </body>
 </html>
\ No newline at end of file