Go to file
2023-11-11 11:08:18 +04:00
app Initial commit 2023-11-11 10:34:31 +04:00
assets Initial commit 2023-11-11 10:34:31 +04:00
backend * Changed contact type in ContactForm 2023-11-11 11:08:18 +04:00
components * Changed contact type in ContactForm 2023-11-11 11:08:18 +04:00
layouts Initial commit 2023-11-11 10:34:31 +04:00
pages Initial commit 2023-11-11 10:34:31 +04:00
plugins Initial commit 2023-11-11 10:34:31 +04:00
static + gallery photos 2023-11-11 10:35:36 +04:00
store Initial commit 2023-11-11 10:34:31 +04:00
.editorconfig Initial commit 2023-11-11 10:34:31 +04:00
.gitignore Initial commit 2023-11-11 10:34:31 +04:00
.nuxtignore Initial commit 2023-11-11 10:34:31 +04:00
nuxt.config.js Initial commit 2023-11-11 10:34:31 +04:00
package.json Initial commit 2023-11-11 10:34:31 +04:00
README.md Initial commit 2023-11-11 10:34:31 +04:00
tailwind.config.js Initial commit 2023-11-11 10:34:31 +04:00

Useful commands

Create thumbnail (400px side max) for all jpg/JPG images in folder, move it to thumbs folder

for ext in jpg JPG; do mogrify -format $ext -path thumbs -auto-orient -thumbnail '400' *.$ext; done

Get thumbnail size for every file in folder

identify -ping -format 'image: "%[basename].%[extension]", thumbSize: {w: %[width], h: %[height]}},\n' *