Go to file
phzhik d867298599 * Removed Nuxt from project
+ Links to specific gallery categories
2024-06-14 18:58:44 +04:00
backend * Changed contact type in ContactForm 2023-11-11 11:08:18 +04:00
public * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
src * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
.editorconfig Initial commit 2023-11-11 10:34:31 +04:00
.gitignore * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
index.html * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
jsconfig.json * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
package.json * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
postcss.config.js * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
README.md Initial commit 2023-11-11 10:34:31 +04:00
tailwind.config.js * Removed Nuxt from project 2024-06-14 18:58:44 +04:00
vite.config.js * Removed Nuxt from project 2024-06-14 18:58:44 +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' *