Initial commit

This commit is contained in:
2020-11-16 21:22:51 +01:00
commit 25d5bd4322
66 changed files with 8393 additions and 0 deletions

6
theme/helpers/aspect.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = (width, height) => {
if (width <0 || !width || height < 0 || !height) {
return null;
}
return width/height;
};