| 1 | + | node_modules |
|
| 2 | + | ||
| 3 | + | # Output |
|
| 4 | + | .output |
|
| 5 | + | .vercel |
|
| 6 | + | .netlify |
|
| 7 | + | .wrangler |
|
| 8 | + | /.svelte-kit |
|
| 9 | + | /build |
|
| 10 | + | ||
| 11 | + | # OS |
|
| 12 | + | .DS_Store |
|
| 13 | + | Thumbs.db |
|
| 14 | + | ||
| 15 | + | # Env |
|
| 16 | + | .env |
|
| 17 | + | .env.* |
|
| 18 | + | !.env.example |
|
| 19 | + | !.env.test |
|
| 20 | + | ||
| 21 | + | # Vite |
|
| 22 | + | vite.config.js.timestamp-* |
|
| 23 | + | vite.config.ts.timestamp-* |
| 1 | + | engine-strict=true |
| 1 | + | # sv |
|
| 2 | + | ||
| 3 | + | Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). |
|
| 4 | + | ||
| 5 | + | ## Creating a project |
|
| 6 | + | ||
| 7 | + | If you're seeing this, you've probably already done this step. Congrats! |
|
| 8 | + | ||
| 9 | + | ```sh |
|
| 10 | + | # create a new project |
|
| 11 | + | npx sv create my-app |
|
| 12 | + | ``` |
|
| 13 | + | ||
| 14 | + | To recreate this project with the same configuration: |
|
| 15 | + | ||
| 16 | + | ```sh |
|
| 17 | + | # recreate this project |
|
| 18 | + | bun x sv create --template minimal --types ts --add tailwindcss="plugins:none" --install bun steve-photo-svelte |
|
| 19 | + | ``` |
|
| 20 | + | ||
| 21 | + | ## Developing |
|
| 22 | + | ||
| 23 | + | Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: |
|
| 24 | + | ||
| 25 | + | ```sh |
|
| 26 | + | npm run dev |
|
| 27 | + | ||
| 28 | + | # or start the server and open the app in a new browser tab |
|
| 29 | + | npm run dev -- --open |
|
| 30 | + | ``` |
|
| 31 | + | ||
| 32 | + | ## Building |
|
| 33 | + | ||
| 34 | + | To create a production version of your app: |
|
| 35 | + | ||
| 36 | + | ```sh |
|
| 37 | + | npm run build |
|
| 38 | + | ``` |
|
| 39 | + | ||
| 40 | + | You can preview the production build with `npm run preview`. |
|
| 41 | + | ||
| 42 | + | > To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment. |
| 1 | + | { |
|
| 2 | + | "$schema": "https://biomejs.dev/schemas/2.3.12/schema.json", |
|
| 3 | + | "vcs": { |
|
| 4 | + | "enabled": false, |
|
| 5 | + | "clientKind": "git", |
|
| 6 | + | "useIgnoreFile": true |
|
| 7 | + | }, |
|
| 8 | + | "files": { |
|
| 9 | + | "ignoreUnknown": false |
|
| 10 | + | }, |
|
| 11 | + | "formatter": { |
|
| 12 | + | "enabled": true, |
|
| 13 | + | "indentStyle": "tab" |
|
| 14 | + | }, |
|
| 15 | + | "linter": { |
|
| 16 | + | "enabled": false, |
|
| 17 | + | "rules": { |
|
| 18 | + | "recommended": true |
|
| 19 | + | } |
|
| 20 | + | }, |
|
| 21 | + | "javascript": { |
|
| 22 | + | "formatter": { |
|
| 23 | + | "quoteStyle": "double" |
|
| 24 | + | } |
|
| 25 | + | }, |
|
| 26 | + | "assist": { |
|
| 27 | + | "enabled": false, |
|
| 28 | + | "actions": { |
|
| 29 | + | "source": { |
|
| 30 | + | "organizeImports": "on" |
|
| 31 | + | } |
|
| 32 | + | } |
|
| 33 | + | }, |
|
| 34 | + | "overrides": [ |
|
| 35 | + | { |
|
| 36 | + | "includes": ["**/*.svelte", "**/*.astro", "**/*.vue"], |
|
| 37 | + | "linter": { |
|
| 38 | + | "rules": { |
|
| 39 | + | "style": { |
|
| 40 | + | "useConst": "off", |
|
| 41 | + | "useImportType": "off" |
|
| 42 | + | }, |
|
| 43 | + | "correctness": { |
|
| 44 | + | "noUnusedVariables": "off", |
|
| 45 | + | "noUnusedImports": "off" |
|
| 46 | + | } |
|
| 47 | + | } |
|
| 48 | + | } |
|
| 49 | + | } |
|
| 50 | + | ] |
|
| 51 | + | } |
| 1 | + | { |
|
| 2 | + | "lockfileVersion": 1, |
|
| 3 | + | "configVersion": 1, |
|
| 4 | + | "workspaces": { |
|
| 5 | + | "": { |
|
| 6 | + | "name": "steve-photo-svelte", |
|
| 7 | + | "devDependencies": { |
|
| 8 | + | "@sveltejs/adapter-auto": "^7.0.0", |
|
| 9 | + | "@sveltejs/kit": "^2.49.1", |
|
| 10 | + | "@sveltejs/vite-plugin-svelte": "^6.2.1", |
|
| 11 | + | "@tailwindcss/vite": "^4.1.17", |
|
| 12 | + | "svelte": "^5.45.6", |
|
| 13 | + | "svelte-check": "^4.3.4", |
|
| 14 | + | "tailwindcss": "^4.1.17", |
|
| 15 | + | "typescript": "^5.9.3", |
|
| 16 | + | "vite": "^7.2.6", |
|
| 17 | + | }, |
|
| 18 | + | }, |
|
| 19 | + | }, |
|
| 20 | + | "packages": { |
|
| 21 | + | "@esbuild/aix-ppc64": ["@esbuild/aix-ppc64@0.27.2", "", { "os": "aix", "cpu": "ppc64" }, "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw=="], |
|
| 22 | + | ||
| 23 | + | "@esbuild/android-arm": ["@esbuild/android-arm@0.27.2", "", { "os": "android", "cpu": "arm" }, "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA=="], |
|
| 24 | + | ||
| 25 | + | "@esbuild/android-arm64": ["@esbuild/android-arm64@0.27.2", "", { "os": "android", "cpu": "arm64" }, "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA=="], |
|
| 26 | + | ||
| 27 | + | "@esbuild/android-x64": ["@esbuild/android-x64@0.27.2", "", { "os": "android", "cpu": "x64" }, "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A=="], |
|
| 28 | + | ||
| 29 | + | "@esbuild/darwin-arm64": ["@esbuild/darwin-arm64@0.27.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg=="], |
|
| 30 | + | ||
| 31 | + | "@esbuild/darwin-x64": ["@esbuild/darwin-x64@0.27.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA=="], |
|
| 32 | + | ||
| 33 | + | "@esbuild/freebsd-arm64": ["@esbuild/freebsd-arm64@0.27.2", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g=="], |
|
| 34 | + | ||
| 35 | + | "@esbuild/freebsd-x64": ["@esbuild/freebsd-x64@0.27.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA=="], |
|
| 36 | + | ||
| 37 | + | "@esbuild/linux-arm": ["@esbuild/linux-arm@0.27.2", "", { "os": "linux", "cpu": "arm" }, "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw=="], |
|
| 38 | + | ||
| 39 | + | "@esbuild/linux-arm64": ["@esbuild/linux-arm64@0.27.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw=="], |
|
| 40 | + | ||
| 41 | + | "@esbuild/linux-ia32": ["@esbuild/linux-ia32@0.27.2", "", { "os": "linux", "cpu": "ia32" }, "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w=="], |
|
| 42 | + | ||
| 43 | + | "@esbuild/linux-loong64": ["@esbuild/linux-loong64@0.27.2", "", { "os": "linux", "cpu": "none" }, "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg=="], |
|
| 44 | + | ||
| 45 | + | "@esbuild/linux-mips64el": ["@esbuild/linux-mips64el@0.27.2", "", { "os": "linux", "cpu": "none" }, "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw=="], |
|
| 46 | + | ||
| 47 | + | "@esbuild/linux-ppc64": ["@esbuild/linux-ppc64@0.27.2", "", { "os": "linux", "cpu": "ppc64" }, "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ=="], |
|
| 48 | + | ||
| 49 | + | "@esbuild/linux-riscv64": ["@esbuild/linux-riscv64@0.27.2", "", { "os": "linux", "cpu": "none" }, "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA=="], |
|
| 50 | + | ||
| 51 | + | "@esbuild/linux-s390x": ["@esbuild/linux-s390x@0.27.2", "", { "os": "linux", "cpu": "s390x" }, "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w=="], |
|
| 52 | + | ||
| 53 | + | "@esbuild/linux-x64": ["@esbuild/linux-x64@0.27.2", "", { "os": "linux", "cpu": "x64" }, "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA=="], |
|
| 54 | + | ||
| 55 | + | "@esbuild/netbsd-arm64": ["@esbuild/netbsd-arm64@0.27.2", "", { "os": "none", "cpu": "arm64" }, "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw=="], |
|
| 56 | + | ||
| 57 | + | "@esbuild/netbsd-x64": ["@esbuild/netbsd-x64@0.27.2", "", { "os": "none", "cpu": "x64" }, "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA=="], |
|
| 58 | + | ||
| 59 | + | "@esbuild/openbsd-arm64": ["@esbuild/openbsd-arm64@0.27.2", "", { "os": "openbsd", "cpu": "arm64" }, "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA=="], |
|
| 60 | + | ||
| 61 | + | "@esbuild/openbsd-x64": ["@esbuild/openbsd-x64@0.27.2", "", { "os": "openbsd", "cpu": "x64" }, "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg=="], |
|
| 62 | + | ||
| 63 | + | "@esbuild/openharmony-arm64": ["@esbuild/openharmony-arm64@0.27.2", "", { "os": "none", "cpu": "arm64" }, "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag=="], |
|
| 64 | + | ||
| 65 | + | "@esbuild/sunos-x64": ["@esbuild/sunos-x64@0.27.2", "", { "os": "sunos", "cpu": "x64" }, "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg=="], |
|
| 66 | + | ||
| 67 | + | "@esbuild/win32-arm64": ["@esbuild/win32-arm64@0.27.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg=="], |
|
| 68 | + | ||
| 69 | + | "@esbuild/win32-ia32": ["@esbuild/win32-ia32@0.27.2", "", { "os": "win32", "cpu": "ia32" }, "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ=="], |
|
| 70 | + | ||
| 71 | + | "@esbuild/win32-x64": ["@esbuild/win32-x64@0.27.2", "", { "os": "win32", "cpu": "x64" }, "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ=="], |
|
| 72 | + | ||
| 73 | + | "@jridgewell/gen-mapping": ["@jridgewell/gen-mapping@0.3.13", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.0", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA=="], |
|
| 74 | + | ||
| 75 | + | "@jridgewell/remapping": ["@jridgewell/remapping@2.3.5", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ=="], |
|
| 76 | + | ||
| 77 | + | "@jridgewell/resolve-uri": ["@jridgewell/resolve-uri@3.1.2", "", {}, "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw=="], |
|
| 78 | + | ||
| 79 | + | "@jridgewell/sourcemap-codec": ["@jridgewell/sourcemap-codec@1.5.5", "", {}, "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og=="], |
|
| 80 | + | ||
| 81 | + | "@jridgewell/trace-mapping": ["@jridgewell/trace-mapping@0.3.31", "", { "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw=="], |
|
| 82 | + | ||
| 83 | + | "@polka/url": ["@polka/url@1.0.0-next.29", "", {}, "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww=="], |
|
| 84 | + | ||
| 85 | + | "@rollup/rollup-android-arm-eabi": ["@rollup/rollup-android-arm-eabi@4.56.0", "", { "os": "android", "cpu": "arm" }, "sha512-LNKIPA5k8PF1+jAFomGe3qN3bbIgJe/IlpDBwuVjrDKrJhVWywgnJvflMt/zkbVNLFtF1+94SljYQS6e99klnw=="], |
|
| 86 | + | ||
| 87 | + | "@rollup/rollup-android-arm64": ["@rollup/rollup-android-arm64@4.56.0", "", { "os": "android", "cpu": "arm64" }, "sha512-lfbVUbelYqXlYiU/HApNMJzT1E87UPGvzveGg2h0ktUNlOCxKlWuJ9jtfvs1sKHdwU4fzY7Pl8sAl49/XaEk6Q=="], |
|
| 88 | + | ||
| 89 | + | "@rollup/rollup-darwin-arm64": ["@rollup/rollup-darwin-arm64@4.56.0", "", { "os": "darwin", "cpu": "arm64" }, "sha512-EgxD1ocWfhoD6xSOeEEwyE7tDvwTgZc8Bss7wCWe+uc7wO8G34HHCUH+Q6cHqJubxIAnQzAsyUsClt0yFLu06w=="], |
|
| 90 | + | ||
| 91 | + | "@rollup/rollup-darwin-x64": ["@rollup/rollup-darwin-x64@4.56.0", "", { "os": "darwin", "cpu": "x64" }, "sha512-1vXe1vcMOssb/hOF8iv52A7feWW2xnu+c8BV4t1F//m9QVLTfNVpEdja5ia762j/UEJe2Z1jAmEqZAK42tVW3g=="], |
|
| 92 | + | ||
| 93 | + | "@rollup/rollup-freebsd-arm64": ["@rollup/rollup-freebsd-arm64@4.56.0", "", { "os": "freebsd", "cpu": "arm64" }, "sha512-bof7fbIlvqsyv/DtaXSck4VYQ9lPtoWNFCB/JY4snlFuJREXfZnm+Ej6yaCHfQvofJDXLDMTVxWscVSuQvVWUQ=="], |
|
| 94 | + | ||
| 95 | + | "@rollup/rollup-freebsd-x64": ["@rollup/rollup-freebsd-x64@4.56.0", "", { "os": "freebsd", "cpu": "x64" }, "sha512-KNa6lYHloW+7lTEkYGa37fpvPq+NKG/EHKM8+G/g9WDU7ls4sMqbVRV78J6LdNuVaeeK5WB9/9VAFbKxcbXKYg=="], |
|
| 96 | + | ||
| 97 | + | "@rollup/rollup-linux-arm-gnueabihf": ["@rollup/rollup-linux-arm-gnueabihf@4.56.0", "", { "os": "linux", "cpu": "arm" }, "sha512-E8jKK87uOvLrrLN28jnAAAChNq5LeCd2mGgZF+fGF5D507WlG/Noct3lP/QzQ6MrqJ5BCKNwI9ipADB6jyiq2A=="], |
|
| 98 | + | ||
| 99 | + | "@rollup/rollup-linux-arm-musleabihf": ["@rollup/rollup-linux-arm-musleabihf@4.56.0", "", { "os": "linux", "cpu": "arm" }, "sha512-jQosa5FMYF5Z6prEpTCCmzCXz6eKr/tCBssSmQGEeozA9tkRUty/5Vx06ibaOP9RCrW1Pvb8yp3gvZhHwTDsJw=="], |
|
| 100 | + | ||
| 101 | + | "@rollup/rollup-linux-arm64-gnu": ["@rollup/rollup-linux-arm64-gnu@4.56.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-uQVoKkrC1KGEV6udrdVahASIsaF8h7iLG0U0W+Xn14ucFwi6uS539PsAr24IEF9/FoDtzMeeJXJIBo5RkbNWvQ=="], |
|
| 102 | + | ||
| 103 | + | "@rollup/rollup-linux-arm64-musl": ["@rollup/rollup-linux-arm64-musl@4.56.0", "", { "os": "linux", "cpu": "arm64" }, "sha512-vLZ1yJKLxhQLFKTs42RwTwa6zkGln+bnXc8ueFGMYmBTLfNu58sl5/eXyxRa2RarTkJbXl8TKPgfS6V5ijNqEA=="], |
|
| 104 | + | ||
| 105 | + | "@rollup/rollup-linux-loong64-gnu": ["@rollup/rollup-linux-loong64-gnu@4.56.0", "", { "os": "linux", "cpu": "none" }, "sha512-FWfHOCub564kSE3xJQLLIC/hbKqHSVxy8vY75/YHHzWvbJL7aYJkdgwD/xGfUlL5UV2SB7otapLrcCj2xnF1dg=="], |
|
| 106 | + | ||
| 107 | + | "@rollup/rollup-linux-loong64-musl": ["@rollup/rollup-linux-loong64-musl@4.56.0", "", { "os": "linux", "cpu": "none" }, "sha512-z1EkujxIh7nbrKL1lmIpqFTc/sr0u8Uk0zK/qIEFldbt6EDKWFk/pxFq3gYj4Bjn3aa9eEhYRlL3H8ZbPT1xvA=="], |
|
| 108 | + | ||
| 109 | + | "@rollup/rollup-linux-ppc64-gnu": ["@rollup/rollup-linux-ppc64-gnu@4.56.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-iNFTluqgdoQC7AIE8Q34R3AuPrJGJirj5wMUErxj22deOcY7XwZRaqYmB6ZKFHoVGqRcRd0mqO+845jAibKCkw=="], |
|
| 110 | + | ||
| 111 | + | "@rollup/rollup-linux-ppc64-musl": ["@rollup/rollup-linux-ppc64-musl@4.56.0", "", { "os": "linux", "cpu": "ppc64" }, "sha512-MtMeFVlD2LIKjp2sE2xM2slq3Zxf9zwVuw0jemsxvh1QOpHSsSzfNOTH9uYW9i1MXFxUSMmLpeVeUzoNOKBaWg=="], |
|
| 112 | + | ||
| 113 | + | "@rollup/rollup-linux-riscv64-gnu": ["@rollup/rollup-linux-riscv64-gnu@4.56.0", "", { "os": "linux", "cpu": "none" }, "sha512-in+v6wiHdzzVhYKXIk5U74dEZHdKN9KH0Q4ANHOTvyXPG41bajYRsy7a8TPKbYPl34hU7PP7hMVHRvv/5aCSew=="], |
|
| 114 | + | ||
| 115 | + | "@rollup/rollup-linux-riscv64-musl": ["@rollup/rollup-linux-riscv64-musl@4.56.0", "", { "os": "linux", "cpu": "none" }, "sha512-yni2raKHB8m9NQpI9fPVwN754mn6dHQSbDTwxdr9SE0ks38DTjLMMBjrwvB5+mXrX+C0npX0CVeCUcvvvD8CNQ=="], |
|
| 116 | + | ||
| 117 | + | "@rollup/rollup-linux-s390x-gnu": ["@rollup/rollup-linux-s390x-gnu@4.56.0", "", { "os": "linux", "cpu": "s390x" }, "sha512-zhLLJx9nQPu7wezbxt2ut+CI4YlXi68ndEve16tPc/iwoylWS9B3FxpLS2PkmfYgDQtosah07Mj9E0khc3Y+vQ=="], |
|
| 118 | + | ||
| 119 | + | "@rollup/rollup-linux-x64-gnu": ["@rollup/rollup-linux-x64-gnu@4.56.0", "", { "os": "linux", "cpu": "x64" }, "sha512-MVC6UDp16ZSH7x4rtuJPAEoE1RwS8N4oK9DLHy3FTEdFoUTCFVzMfJl/BVJ330C+hx8FfprA5Wqx4FhZXkj2Kw=="], |
|
| 120 | + | ||
| 121 | + | "@rollup/rollup-linux-x64-musl": ["@rollup/rollup-linux-x64-musl@4.56.0", "", { "os": "linux", "cpu": "x64" }, "sha512-ZhGH1eA4Qv0lxaV00azCIS1ChedK0V32952Md3FtnxSqZTBTd6tgil4nZT5cU8B+SIw3PFYkvyR4FKo2oyZIHA=="], |
|
| 122 | + | ||
| 123 | + | "@rollup/rollup-openbsd-x64": ["@rollup/rollup-openbsd-x64@4.56.0", "", { "os": "openbsd", "cpu": "x64" }, "sha512-O16XcmyDeFI9879pEcmtWvD/2nyxR9mF7Gs44lf1vGGx8Vg2DRNx11aVXBEqOQhWb92WN4z7fW/q4+2NYzCbBA=="], |
|
| 124 | + | ||
| 125 | + | "@rollup/rollup-openharmony-arm64": ["@rollup/rollup-openharmony-arm64@4.56.0", "", { "os": "none", "cpu": "arm64" }, "sha512-LhN/Reh+7F3RCgQIRbgw8ZMwUwyqJM+8pXNT6IIJAqm2IdKkzpCh/V9EdgOMBKuebIrzswqy4ATlrDgiOwbRcQ=="], |
|
| 126 | + | ||
| 127 | + | "@rollup/rollup-win32-arm64-msvc": ["@rollup/rollup-win32-arm64-msvc@4.56.0", "", { "os": "win32", "cpu": "arm64" }, "sha512-kbFsOObXp3LBULg1d3JIUQMa9Kv4UitDmpS+k0tinPBz3watcUiV2/LUDMMucA6pZO3WGE27P7DsfaN54l9ing=="], |
|
| 128 | + | ||
| 129 | + | "@rollup/rollup-win32-ia32-msvc": ["@rollup/rollup-win32-ia32-msvc@4.56.0", "", { "os": "win32", "cpu": "ia32" }, "sha512-vSSgny54D6P4vf2izbtFm/TcWYedw7f8eBrOiGGecyHyQB9q4Kqentjaj8hToe+995nob/Wv48pDqL5a62EWtg=="], |
|
| 130 | + | ||
| 131 | + | "@rollup/rollup-win32-x64-gnu": ["@rollup/rollup-win32-x64-gnu@4.56.0", "", { "os": "win32", "cpu": "x64" }, "sha512-FeCnkPCTHQJFbiGG49KjV5YGW/8b9rrXAM2Mz2kiIoktq2qsJxRD5giEMEOD2lPdgs72upzefaUvS+nc8E3UzQ=="], |
|
| 132 | + | ||
| 133 | + | "@rollup/rollup-win32-x64-msvc": ["@rollup/rollup-win32-x64-msvc@4.56.0", "", { "os": "win32", "cpu": "x64" }, "sha512-H8AE9Ur/t0+1VXujj90w0HrSOuv0Nq9r1vSZF2t5km20NTfosQsGGUXDaKdQZzwuLts7IyL1fYT4hM95TI9c4g=="], |
|
| 134 | + | ||
| 135 | + | "@standard-schema/spec": ["@standard-schema/spec@1.1.0", "", {}, "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w=="], |
|
| 136 | + | ||
| 137 | + | "@sveltejs/acorn-typescript": ["@sveltejs/acorn-typescript@1.0.8", "", { "peerDependencies": { "acorn": "^8.9.0" } }, "sha512-esgN+54+q0NjB0Y/4BomT9samII7jGwNy/2a3wNZbT2A2RpmXsXwUt24LvLhx6jUq2gVk4cWEvcRO6MFQbOfNA=="], |
|
| 138 | + | ||
| 139 | + | "@sveltejs/adapter-auto": ["@sveltejs/adapter-auto@7.0.0", "", { "peerDependencies": { "@sveltejs/kit": "^2.0.0" } }, "sha512-ImDWaErTOCkRS4Gt+5gZuymKFBobnhChXUZ9lhUZLahUgvA4OOvRzi3sahzYgbxGj5nkA6OV0GAW378+dl/gyw=="], |
|
| 140 | + | ||
| 141 | + | "@sveltejs/kit": ["@sveltejs/kit@2.50.1", "", { "dependencies": { "@standard-schema/spec": "^1.0.0", "@sveltejs/acorn-typescript": "^1.0.5", "@types/cookie": "^0.6.0", "acorn": "^8.14.1", "cookie": "^0.6.0", "devalue": "^5.6.2", "esm-env": "^1.2.2", "kleur": "^4.1.5", "magic-string": "^0.30.5", "mrmime": "^2.0.0", "sade": "^1.8.1", "set-cookie-parser": "^2.6.0", "sirv": "^3.0.0" }, "peerDependencies": { "@opentelemetry/api": "^1.0.0", "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0", "svelte": "^4.0.0 || ^5.0.0-next.0", "typescript": "^5.3.3", "vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0" }, "optionalPeers": ["@opentelemetry/api", "typescript"], "bin": { "svelte-kit": "svelte-kit.js" } }, "sha512-XRHD2i3zC4ukhz2iCQzO4mbsts081PAZnnMAQ7LNpWeYgeBmwMsalf0FGSwhFXBbtr2XViPKnFJBDCckWqrsLw=="], |
|
| 142 | + | ||
| 143 | + | "@sveltejs/vite-plugin-svelte": ["@sveltejs/vite-plugin-svelte@6.2.4", "", { "dependencies": { "@sveltejs/vite-plugin-svelte-inspector": "^5.0.0", "deepmerge": "^4.3.1", "magic-string": "^0.30.21", "obug": "^2.1.0", "vitefu": "^1.1.1" }, "peerDependencies": { "svelte": "^5.0.0", "vite": "^6.3.0 || ^7.0.0" } }, "sha512-ou/d51QSdTyN26D7h6dSpusAKaZkAiGM55/AKYi+9AGZw7q85hElbjK3kEyzXHhLSnRISHOYzVge6x0jRZ7DXA=="], |
|
| 144 | + | ||
| 145 | + | "@sveltejs/vite-plugin-svelte-inspector": ["@sveltejs/vite-plugin-svelte-inspector@5.0.2", "", { "dependencies": { "obug": "^2.1.0" }, "peerDependencies": { "@sveltejs/vite-plugin-svelte": "^6.0.0-next.0", "svelte": "^5.0.0", "vite": "^6.3.0 || ^7.0.0" } }, "sha512-TZzRTcEtZffICSAoZGkPSl6Etsj2torOVrx6Uw0KpXxrec9Gg6jFWQ60Q3+LmNGfZSxHRCZL7vXVZIWmuV50Ig=="], |
|
| 146 | + | ||
| 147 | + | "@tailwindcss/node": ["@tailwindcss/node@4.1.18", "", { "dependencies": { "@jridgewell/remapping": "^2.3.4", "enhanced-resolve": "^5.18.3", "jiti": "^2.6.1", "lightningcss": "1.30.2", "magic-string": "^0.30.21", "source-map-js": "^1.2.1", "tailwindcss": "4.1.18" } }, "sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ=="], |
|
| 148 | + | ||
| 149 | + | "@tailwindcss/oxide": ["@tailwindcss/oxide@4.1.18", "", { "optionalDependencies": { "@tailwindcss/oxide-android-arm64": "4.1.18", "@tailwindcss/oxide-darwin-arm64": "4.1.18", "@tailwindcss/oxide-darwin-x64": "4.1.18", "@tailwindcss/oxide-freebsd-x64": "4.1.18", "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.18", "@tailwindcss/oxide-linux-arm64-gnu": "4.1.18", "@tailwindcss/oxide-linux-arm64-musl": "4.1.18", "@tailwindcss/oxide-linux-x64-gnu": "4.1.18", "@tailwindcss/oxide-linux-x64-musl": "4.1.18", "@tailwindcss/oxide-wasm32-wasi": "4.1.18", "@tailwindcss/oxide-win32-arm64-msvc": "4.1.18", "@tailwindcss/oxide-win32-x64-msvc": "4.1.18" } }, "sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A=="], |
|
| 150 | + | ||
| 151 | + | "@tailwindcss/oxide-android-arm64": ["@tailwindcss/oxide-android-arm64@4.1.18", "", { "os": "android", "cpu": "arm64" }, "sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q=="], |
|
| 152 | + | ||
| 153 | + | "@tailwindcss/oxide-darwin-arm64": ["@tailwindcss/oxide-darwin-arm64@4.1.18", "", { "os": "darwin", "cpu": "arm64" }, "sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A=="], |
|
| 154 | + | ||
| 155 | + | "@tailwindcss/oxide-darwin-x64": ["@tailwindcss/oxide-darwin-x64@4.1.18", "", { "os": "darwin", "cpu": "x64" }, "sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw=="], |
|
| 156 | + | ||
| 157 | + | "@tailwindcss/oxide-freebsd-x64": ["@tailwindcss/oxide-freebsd-x64@4.1.18", "", { "os": "freebsd", "cpu": "x64" }, "sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA=="], |
|
| 158 | + | ||
| 159 | + | "@tailwindcss/oxide-linux-arm-gnueabihf": ["@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18", "", { "os": "linux", "cpu": "arm" }, "sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA=="], |
|
| 160 | + | ||
| 161 | + | "@tailwindcss/oxide-linux-arm64-gnu": ["@tailwindcss/oxide-linux-arm64-gnu@4.1.18", "", { "os": "linux", "cpu": "arm64" }, "sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw=="], |
|
| 162 | + | ||
| 163 | + | "@tailwindcss/oxide-linux-arm64-musl": ["@tailwindcss/oxide-linux-arm64-musl@4.1.18", "", { "os": "linux", "cpu": "arm64" }, "sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg=="], |
|
| 164 | + | ||
| 165 | + | "@tailwindcss/oxide-linux-x64-gnu": ["@tailwindcss/oxide-linux-x64-gnu@4.1.18", "", { "os": "linux", "cpu": "x64" }, "sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g=="], |
|
| 166 | + | ||
| 167 | + | "@tailwindcss/oxide-linux-x64-musl": ["@tailwindcss/oxide-linux-x64-musl@4.1.18", "", { "os": "linux", "cpu": "x64" }, "sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ=="], |
|
| 168 | + | ||
| 169 | + | "@tailwindcss/oxide-wasm32-wasi": ["@tailwindcss/oxide-wasm32-wasi@4.1.18", "", { "dependencies": { "@emnapi/core": "^1.7.1", "@emnapi/runtime": "^1.7.1", "@emnapi/wasi-threads": "^1.1.0", "@napi-rs/wasm-runtime": "^1.1.0", "@tybys/wasm-util": "^0.10.1", "tslib": "^2.4.0" }, "cpu": "none" }, "sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA=="], |
|
| 170 | + | ||
| 171 | + | "@tailwindcss/oxide-win32-arm64-msvc": ["@tailwindcss/oxide-win32-arm64-msvc@4.1.18", "", { "os": "win32", "cpu": "arm64" }, "sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA=="], |
|
| 172 | + | ||
| 173 | + | "@tailwindcss/oxide-win32-x64-msvc": ["@tailwindcss/oxide-win32-x64-msvc@4.1.18", "", { "os": "win32", "cpu": "x64" }, "sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q=="], |
|
| 174 | + | ||
| 175 | + | "@tailwindcss/vite": ["@tailwindcss/vite@4.1.18", "", { "dependencies": { "@tailwindcss/node": "4.1.18", "@tailwindcss/oxide": "4.1.18", "tailwindcss": "4.1.18" }, "peerDependencies": { "vite": "^5.2.0 || ^6 || ^7" } }, "sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA=="], |
|
| 176 | + | ||
| 177 | + | "@types/cookie": ["@types/cookie@0.6.0", "", {}, "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA=="], |
|
| 178 | + | ||
| 179 | + | "@types/estree": ["@types/estree@1.0.8", "", {}, "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w=="], |
|
| 180 | + | ||
| 181 | + | "acorn": ["acorn@8.15.0", "", { "bin": { "acorn": "bin/acorn" } }, "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg=="], |
|
| 182 | + | ||
| 183 | + | "aria-query": ["aria-query@5.3.2", "", {}, "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw=="], |
|
| 184 | + | ||
| 185 | + | "axobject-query": ["axobject-query@4.1.0", "", {}, "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ=="], |
|
| 186 | + | ||
| 187 | + | "chokidar": ["chokidar@4.0.3", "", { "dependencies": { "readdirp": "^4.0.1" } }, "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA=="], |
|
| 188 | + | ||
| 189 | + | "clsx": ["clsx@2.1.1", "", {}, "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA=="], |
|
| 190 | + | ||
| 191 | + | "cookie": ["cookie@0.6.0", "", {}, "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw=="], |
|
| 192 | + | ||
| 193 | + | "deepmerge": ["deepmerge@4.3.1", "", {}, "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A=="], |
|
| 194 | + | ||
| 195 | + | "detect-libc": ["detect-libc@2.1.2", "", {}, "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ=="], |
|
| 196 | + | ||
| 197 | + | "devalue": ["devalue@5.6.2", "", {}, "sha512-nPRkjWzzDQlsejL1WVifk5rvcFi/y1onBRxjaFMjZeR9mFpqu2gmAZ9xUB9/IEanEP/vBtGeGganC/GO1fmufg=="], |
|
| 198 | + | ||
| 199 | + | "enhanced-resolve": ["enhanced-resolve@5.18.4", "", { "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" } }, "sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q=="], |
|
| 200 | + | ||
| 201 | + | "esbuild": ["esbuild@0.27.2", "", { "optionalDependencies": { "@esbuild/aix-ppc64": "0.27.2", "@esbuild/android-arm": "0.27.2", "@esbuild/android-arm64": "0.27.2", "@esbuild/android-x64": "0.27.2", "@esbuild/darwin-arm64": "0.27.2", "@esbuild/darwin-x64": "0.27.2", "@esbuild/freebsd-arm64": "0.27.2", "@esbuild/freebsd-x64": "0.27.2", "@esbuild/linux-arm": "0.27.2", "@esbuild/linux-arm64": "0.27.2", "@esbuild/linux-ia32": "0.27.2", "@esbuild/linux-loong64": "0.27.2", "@esbuild/linux-mips64el": "0.27.2", "@esbuild/linux-ppc64": "0.27.2", "@esbuild/linux-riscv64": "0.27.2", "@esbuild/linux-s390x": "0.27.2", "@esbuild/linux-x64": "0.27.2", "@esbuild/netbsd-arm64": "0.27.2", "@esbuild/netbsd-x64": "0.27.2", "@esbuild/openbsd-arm64": "0.27.2", "@esbuild/openbsd-x64": "0.27.2", "@esbuild/openharmony-arm64": "0.27.2", "@esbuild/sunos-x64": "0.27.2", "@esbuild/win32-arm64": "0.27.2", "@esbuild/win32-ia32": "0.27.2", "@esbuild/win32-x64": "0.27.2" }, "bin": { "esbuild": "bin/esbuild" } }, "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw=="], |
|
| 202 | + | ||
| 203 | + | "esm-env": ["esm-env@1.2.2", "", {}, "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA=="], |
|
| 204 | + | ||
| 205 | + | "esrap": ["esrap@2.2.2", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" } }, "sha512-zA6497ha+qKvoWIK+WM9NAh5ni17sKZKhbS5B3PoYbBvaYHZWoS33zmFybmyqpn07RLUxSmn+RCls2/XF+d0oQ=="], |
|
| 206 | + | ||
| 207 | + | "fdir": ["fdir@6.5.0", "", { "peerDependencies": { "picomatch": "^3 || ^4" }, "optionalPeers": ["picomatch"] }, "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg=="], |
|
| 208 | + | ||
| 209 | + | "fsevents": ["fsevents@2.3.3", "", { "os": "darwin" }, "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw=="], |
|
| 210 | + | ||
| 211 | + | "graceful-fs": ["graceful-fs@4.2.11", "", {}, "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="], |
|
| 212 | + | ||
| 213 | + | "is-reference": ["is-reference@3.0.3", "", { "dependencies": { "@types/estree": "^1.0.6" } }, "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw=="], |
|
| 214 | + | ||
| 215 | + | "jiti": ["jiti@2.6.1", "", { "bin": { "jiti": "lib/jiti-cli.mjs" } }, "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ=="], |
|
| 216 | + | ||
| 217 | + | "kleur": ["kleur@4.1.5", "", {}, "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="], |
|
| 218 | + | ||
| 219 | + | "lightningcss": ["lightningcss@1.30.2", "", { "dependencies": { "detect-libc": "^2.0.3" }, "optionalDependencies": { "lightningcss-android-arm64": "1.30.2", "lightningcss-darwin-arm64": "1.30.2", "lightningcss-darwin-x64": "1.30.2", "lightningcss-freebsd-x64": "1.30.2", "lightningcss-linux-arm-gnueabihf": "1.30.2", "lightningcss-linux-arm64-gnu": "1.30.2", "lightningcss-linux-arm64-musl": "1.30.2", "lightningcss-linux-x64-gnu": "1.30.2", "lightningcss-linux-x64-musl": "1.30.2", "lightningcss-win32-arm64-msvc": "1.30.2", "lightningcss-win32-x64-msvc": "1.30.2" } }, "sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ=="], |
|
| 220 | + | ||
| 221 | + | "lightningcss-android-arm64": ["lightningcss-android-arm64@1.30.2", "", { "os": "android", "cpu": "arm64" }, "sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A=="], |
|
| 222 | + | ||
| 223 | + | "lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.30.2", "", { "os": "darwin", "cpu": "arm64" }, "sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA=="], |
|
| 224 | + | ||
| 225 | + | "lightningcss-darwin-x64": ["lightningcss-darwin-x64@1.30.2", "", { "os": "darwin", "cpu": "x64" }, "sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ=="], |
|
| 226 | + | ||
| 227 | + | "lightningcss-freebsd-x64": ["lightningcss-freebsd-x64@1.30.2", "", { "os": "freebsd", "cpu": "x64" }, "sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA=="], |
|
| 228 | + | ||
| 229 | + | "lightningcss-linux-arm-gnueabihf": ["lightningcss-linux-arm-gnueabihf@1.30.2", "", { "os": "linux", "cpu": "arm" }, "sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA=="], |
|
| 230 | + | ||
| 231 | + | "lightningcss-linux-arm64-gnu": ["lightningcss-linux-arm64-gnu@1.30.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A=="], |
|
| 232 | + | ||
| 233 | + | "lightningcss-linux-arm64-musl": ["lightningcss-linux-arm64-musl@1.30.2", "", { "os": "linux", "cpu": "arm64" }, "sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA=="], |
|
| 234 | + | ||
| 235 | + | "lightningcss-linux-x64-gnu": ["lightningcss-linux-x64-gnu@1.30.2", "", { "os": "linux", "cpu": "x64" }, "sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w=="], |
|
| 236 | + | ||
| 237 | + | "lightningcss-linux-x64-musl": ["lightningcss-linux-x64-musl@1.30.2", "", { "os": "linux", "cpu": "x64" }, "sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA=="], |
|
| 238 | + | ||
| 239 | + | "lightningcss-win32-arm64-msvc": ["lightningcss-win32-arm64-msvc@1.30.2", "", { "os": "win32", "cpu": "arm64" }, "sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ=="], |
|
| 240 | + | ||
| 241 | + | "lightningcss-win32-x64-msvc": ["lightningcss-win32-x64-msvc@1.30.2", "", { "os": "win32", "cpu": "x64" }, "sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw=="], |
|
| 242 | + | ||
| 243 | + | "locate-character": ["locate-character@3.0.0", "", {}, "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA=="], |
|
| 244 | + | ||
| 245 | + | "magic-string": ["magic-string@0.30.21", "", { "dependencies": { "@jridgewell/sourcemap-codec": "^1.5.5" } }, "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ=="], |
|
| 246 | + | ||
| 247 | + | "mri": ["mri@1.2.0", "", {}, "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA=="], |
|
| 248 | + | ||
| 249 | + | "mrmime": ["mrmime@2.0.1", "", {}, "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ=="], |
|
| 250 | + | ||
| 251 | + | "nanoid": ["nanoid@3.3.11", "", { "bin": { "nanoid": "bin/nanoid.cjs" } }, "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w=="], |
|
| 252 | + | ||
| 253 | + | "obug": ["obug@2.1.1", "", {}, "sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ=="], |
|
| 254 | + | ||
| 255 | + | "picocolors": ["picocolors@1.1.1", "", {}, "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA=="], |
|
| 256 | + | ||
| 257 | + | "picomatch": ["picomatch@4.0.3", "", {}, "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q=="], |
|
| 258 | + | ||
| 259 | + | "postcss": ["postcss@8.5.6", "", { "dependencies": { "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" } }, "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg=="], |
|
| 260 | + | ||
| 261 | + | "readdirp": ["readdirp@4.1.2", "", {}, "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg=="], |
|
| 262 | + | ||
| 263 | + | "rollup": ["rollup@4.56.0", "", { "dependencies": { "@types/estree": "1.0.8" }, "optionalDependencies": { "@rollup/rollup-android-arm-eabi": "4.56.0", "@rollup/rollup-android-arm64": "4.56.0", "@rollup/rollup-darwin-arm64": "4.56.0", "@rollup/rollup-darwin-x64": "4.56.0", "@rollup/rollup-freebsd-arm64": "4.56.0", "@rollup/rollup-freebsd-x64": "4.56.0", "@rollup/rollup-linux-arm-gnueabihf": "4.56.0", "@rollup/rollup-linux-arm-musleabihf": "4.56.0", "@rollup/rollup-linux-arm64-gnu": "4.56.0", "@rollup/rollup-linux-arm64-musl": "4.56.0", "@rollup/rollup-linux-loong64-gnu": "4.56.0", "@rollup/rollup-linux-loong64-musl": "4.56.0", "@rollup/rollup-linux-ppc64-gnu": "4.56.0", "@rollup/rollup-linux-ppc64-musl": "4.56.0", "@rollup/rollup-linux-riscv64-gnu": "4.56.0", "@rollup/rollup-linux-riscv64-musl": "4.56.0", "@rollup/rollup-linux-s390x-gnu": "4.56.0", "@rollup/rollup-linux-x64-gnu": "4.56.0", "@rollup/rollup-linux-x64-musl": "4.56.0", "@rollup/rollup-openbsd-x64": "4.56.0", "@rollup/rollup-openharmony-arm64": "4.56.0", "@rollup/rollup-win32-arm64-msvc": "4.56.0", "@rollup/rollup-win32-ia32-msvc": "4.56.0", "@rollup/rollup-win32-x64-gnu": "4.56.0", "@rollup/rollup-win32-x64-msvc": "4.56.0", "fsevents": "~2.3.2" }, "bin": { "rollup": "dist/bin/rollup" } }, "sha512-9FwVqlgUHzbXtDg9RCMgodF3Ua4Na6Gau+Sdt9vyCN4RhHfVKX2DCHy3BjMLTDd47ITDhYAnTwGulWTblJSDLg=="], |
|
| 264 | + | ||
| 265 | + | "sade": ["sade@1.8.1", "", { "dependencies": { "mri": "^1.1.0" } }, "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A=="], |
|
| 266 | + | ||
| 267 | + | "set-cookie-parser": ["set-cookie-parser@2.7.2", "", {}, "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw=="], |
|
| 268 | + | ||
| 269 | + | "sirv": ["sirv@3.0.2", "", { "dependencies": { "@polka/url": "^1.0.0-next.24", "mrmime": "^2.0.0", "totalist": "^3.0.0" } }, "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g=="], |
|
| 270 | + | ||
| 271 | + | "source-map-js": ["source-map-js@1.2.1", "", {}, "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA=="], |
|
| 272 | + | ||
| 273 | + | "svelte": ["svelte@5.48.2", "", { "dependencies": { "@jridgewell/remapping": "^2.3.4", "@jridgewell/sourcemap-codec": "^1.5.0", "@sveltejs/acorn-typescript": "^1.0.5", "@types/estree": "^1.0.5", "acorn": "^8.12.1", "aria-query": "^5.3.1", "axobject-query": "^4.1.0", "clsx": "^2.1.1", "devalue": "^5.6.2", "esm-env": "^1.2.1", "esrap": "^2.2.1", "is-reference": "^3.0.3", "locate-character": "^3.0.0", "magic-string": "^0.30.11", "zimmerframe": "^1.1.2" } }, "sha512-VPWD+UyoSFZ7Nxix5K/F8yWiKWOiROkLlWYXOZReE0TUycw+58YWB3D6lAKT+57xmN99wRX4H3oZmw0NPy7y3Q=="], |
|
| 274 | + | ||
| 275 | + | "svelte-check": ["svelte-check@4.3.5", "", { "dependencies": { "@jridgewell/trace-mapping": "^0.3.25", "chokidar": "^4.0.1", "fdir": "^6.2.0", "picocolors": "^1.0.0", "sade": "^1.7.4" }, "peerDependencies": { "svelte": "^4.0.0 || ^5.0.0-next.0", "typescript": ">=5.0.0" }, "bin": { "svelte-check": "bin/svelte-check" } }, "sha512-e4VWZETyXaKGhpkxOXP+B/d0Fp/zKViZoJmneZWe/05Y2aqSKj3YN2nLfYPJBQ87WEiY4BQCQ9hWGu9mPT1a1Q=="], |
|
| 276 | + | ||
| 277 | + | "tailwindcss": ["tailwindcss@4.1.18", "", {}, "sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw=="], |
|
| 278 | + | ||
| 279 | + | "tapable": ["tapable@2.3.0", "", {}, "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg=="], |
|
| 280 | + | ||
| 281 | + | "tinyglobby": ["tinyglobby@0.2.15", "", { "dependencies": { "fdir": "^6.5.0", "picomatch": "^4.0.3" } }, "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ=="], |
|
| 282 | + | ||
| 283 | + | "totalist": ["totalist@3.0.1", "", {}, "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ=="], |
|
| 284 | + | ||
| 285 | + | "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="], |
|
| 286 | + | ||
| 287 | + | "vite": ["vite@7.3.1", "", { "dependencies": { "esbuild": "^0.27.0", "fdir": "^6.5.0", "picomatch": "^4.0.3", "postcss": "^8.5.6", "rollup": "^4.43.0", "tinyglobby": "^0.2.15" }, "optionalDependencies": { "fsevents": "~2.3.3" }, "peerDependencies": { "@types/node": "^20.19.0 || >=22.12.0", "jiti": ">=1.21.0", "less": "^4.0.0", "lightningcss": "^1.21.0", "sass": "^1.70.0", "sass-embedded": "^1.70.0", "stylus": ">=0.54.8", "sugarss": "^5.0.0", "terser": "^5.16.0", "tsx": "^4.8.1", "yaml": "^2.4.2" }, "optionalPeers": ["@types/node", "jiti", "less", "lightningcss", "sass", "sass-embedded", "stylus", "sugarss", "terser", "tsx", "yaml"], "bin": { "vite": "bin/vite.js" } }, "sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA=="], |
|
| 288 | + | ||
| 289 | + | "vitefu": ["vitefu@1.1.1", "", { "peerDependencies": { "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0" }, "optionalPeers": ["vite"] }, "sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ=="], |
|
| 290 | + | ||
| 291 | + | "zimmerframe": ["zimmerframe@1.1.4", "", {}, "sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ=="], |
|
| 292 | + | ||
| 293 | + | "@tailwindcss/oxide-wasm32-wasi/@emnapi/core": ["@emnapi/core@1.8.1", "", { "dependencies": { "@emnapi/wasi-threads": "1.1.0", "tslib": "^2.4.0" }, "bundled": true }, "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg=="], |
|
| 294 | + | ||
| 295 | + | "@tailwindcss/oxide-wasm32-wasi/@emnapi/runtime": ["@emnapi/runtime@1.8.1", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg=="], |
|
| 296 | + | ||
| 297 | + | "@tailwindcss/oxide-wasm32-wasi/@emnapi/wasi-threads": ["@emnapi/wasi-threads@1.1.0", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ=="], |
|
| 298 | + | ||
| 299 | + | "@tailwindcss/oxide-wasm32-wasi/@napi-rs/wasm-runtime": ["@napi-rs/wasm-runtime@1.1.1", "", { "dependencies": { "@emnapi/core": "^1.7.1", "@emnapi/runtime": "^1.7.1", "@tybys/wasm-util": "^0.10.1" }, "bundled": true }, "sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A=="], |
|
| 300 | + | ||
| 301 | + | "@tailwindcss/oxide-wasm32-wasi/@tybys/wasm-util": ["@tybys/wasm-util@0.10.1", "", { "dependencies": { "tslib": "^2.4.0" }, "bundled": true }, "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg=="], |
|
| 302 | + | ||
| 303 | + | "@tailwindcss/oxide-wasm32-wasi/tslib": ["tslib@2.8.1", "", { "bundled": true }, "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w=="], |
|
| 304 | + | } |
|
| 305 | + | } |
| 1 | + | { |
|
| 2 | + | "name": "steve-photo-svelte", |
|
| 3 | + | "private": true, |
|
| 4 | + | "version": "0.0.1", |
|
| 5 | + | "type": "module", |
|
| 6 | + | "scripts": { |
|
| 7 | + | "dev": "vite dev", |
|
| 8 | + | "build": "vite build", |
|
| 9 | + | "preview": "vite preview", |
|
| 10 | + | "prepare": "svelte-kit sync || echo ''", |
|
| 11 | + | "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", |
|
| 12 | + | "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" |
|
| 13 | + | }, |
|
| 14 | + | "devDependencies": { |
|
| 15 | + | "@sveltejs/adapter-auto": "^7.0.0", |
|
| 16 | + | "@sveltejs/kit": "^2.49.1", |
|
| 17 | + | "@sveltejs/vite-plugin-svelte": "^6.2.1", |
|
| 18 | + | "@tailwindcss/vite": "^4.1.17", |
|
| 19 | + | "svelte": "^5.45.6", |
|
| 20 | + | "svelte-check": "^4.3.4", |
|
| 21 | + | "tailwindcss": "^4.1.17", |
|
| 22 | + | "typescript": "^5.9.3", |
|
| 23 | + | "vite": "^7.2.6" |
|
| 24 | + | } |
|
| 25 | + | } |
| 1 | + | import fs from "fs"; |
|
| 2 | + | import path from "path"; |
|
| 3 | + | import { fileURLToPath } from "url"; |
|
| 4 | + | ||
| 5 | + | const __filename = fileURLToPath(import.meta.url); |
|
| 6 | + | const __dirname = path.dirname(__filename); |
|
| 7 | + | ||
| 8 | + | const postsDir = path.join(__dirname, "../static/posts"); |
|
| 9 | + | const outputFile = path.join(__dirname, "../src/data.json"); |
|
| 10 | + | ||
| 11 | + | function parseFrontmatter(content) { |
|
| 12 | + | const frontmatterRegex = /^---\n([\s\S]*?)\n---/; |
|
| 13 | + | const match = content.match(frontmatterRegex); |
|
| 14 | + | ||
| 15 | + | if (!match) return null; |
|
| 16 | + | ||
| 17 | + | const frontmatterStr = match[1]; |
|
| 18 | + | const data = {}; |
|
| 19 | + | ||
| 20 | + | let currentKey = null; |
|
| 21 | + | let inArray = false; |
|
| 22 | + | let arrayValues = []; |
|
| 23 | + | ||
| 24 | + | const lines = frontmatterStr.split("\n"); |
|
| 25 | + | ||
| 26 | + | for (const line of lines) { |
|
| 27 | + | // Check if this is an array item |
|
| 28 | + | if (line.match(/^\s+-\s+/)) { |
|
| 29 | + | if (currentKey && inArray) { |
|
| 30 | + | let value = line.replace(/^\s+-\s+/, "").trim(); |
|
| 31 | + | // Remove quotes if present |
|
| 32 | + | value = value.replace(/^["']|["']$/g, ""); |
|
| 33 | + | // Clean up null characters |
|
| 34 | + | value = value.replace(/\0/g, "").trim(); |
|
| 35 | + | if (value) { |
|
| 36 | + | arrayValues.push(value); |
|
| 37 | + | } |
|
| 38 | + | } |
|
| 39 | + | continue; |
|
| 40 | + | } |
|
| 41 | + | ||
| 42 | + | // Check if this is a key-value pair |
|
| 43 | + | const keyMatch = line.match(/^(\w+):\s*(.*)/); |
|
| 44 | + | if (keyMatch) { |
|
| 45 | + | // Save previous array if exists |
|
| 46 | + | if (currentKey && inArray && arrayValues.length > 0) { |
|
| 47 | + | data[currentKey] = arrayValues; |
|
| 48 | + | } |
|
| 49 | + | ||
| 50 | + | currentKey = keyMatch[1]; |
|
| 51 | + | let value = keyMatch[2].trim(); |
|
| 52 | + | ||
| 53 | + | // Check if value starts an array |
|
| 54 | + | if (value === "") { |
|
| 55 | + | inArray = true; |
|
| 56 | + | arrayValues = []; |
|
| 57 | + | } else { |
|
| 58 | + | inArray = false; |
|
| 59 | + | // Remove quotes if present |
|
| 60 | + | value = value.replace(/^["']|["']$/g, ""); |
|
| 61 | + | // Clean up null characters |
|
| 62 | + | value = value.replace(/\0/g, "").trim(); |
|
| 63 | + | data[currentKey] = value; |
|
| 64 | + | } |
|
| 65 | + | } |
|
| 66 | + | } |
|
| 67 | + | ||
| 68 | + | // Save last array if exists |
|
| 69 | + | if (currentKey && inArray && arrayValues.length > 0) { |
|
| 70 | + | data[currentKey] = arrayValues; |
|
| 71 | + | } |
|
| 72 | + | ||
| 73 | + | return data; |
|
| 74 | + | } |
|
| 75 | + | ||
| 76 | + | function generateData() { |
|
| 77 | + | const posts = []; |
|
| 78 | + | ||
| 79 | + | // Get all subdirectories in posts folder |
|
| 80 | + | const dirs = fs |
|
| 81 | + | .readdirSync(postsDir, { withFileTypes: true }) |
|
| 82 | + | .filter((dirent) => dirent.isDirectory()) |
|
| 83 | + | .map((dirent) => dirent.name); |
|
| 84 | + | ||
| 85 | + | for (const dir of dirs) { |
|
| 86 | + | const mdFile = path.join(postsDir, dir, `${dir}.md`); |
|
| 87 | + | ||
| 88 | + | if (!fs.existsSync(mdFile)) { |
|
| 89 | + | console.warn(`No markdown file found for ${dir}`); |
|
| 90 | + | continue; |
|
| 91 | + | } |
|
| 92 | + | ||
| 93 | + | const content = fs.readFileSync(mdFile, "utf-8"); |
|
| 94 | + | const frontmatter = parseFrontmatter(content); |
|
| 95 | + | ||
| 96 | + | if (!frontmatter) { |
|
| 97 | + | console.warn(`No frontmatter found in ${dir}`); |
|
| 98 | + | continue; |
|
| 99 | + | } |
|
| 100 | + | ||
| 101 | + | // Build the image path relative to static folder |
|
| 102 | + | const imagePath = frontmatter.image |
|
| 103 | + | ? `/posts/${dir}/${frontmatter.image}` |
|
| 104 | + | : null; |
|
| 105 | + | const thumbPath = frontmatter.thumb |
|
| 106 | + | ? `/posts/${dir}/${frontmatter.thumb}` |
|
| 107 | + | : null; |
|
| 108 | + | ||
| 109 | + | posts.push({ |
|
| 110 | + | slug: frontmatter.slug || dir, |
|
| 111 | + | title: frontmatter.title || dir, |
|
| 112 | + | date: frontmatter.date || null, |
|
| 113 | + | image: imagePath, |
|
| 114 | + | thumb: thumbPath, |
|
| 115 | + | type: frontmatter.type || "photo", |
|
| 116 | + | camera: frontmatter.camera || null, |
|
| 117 | + | lens: frontmatter.lens || null, |
|
| 118 | + | aperture: frontmatter.aperture_friendly || null, |
|
| 119 | + | exposure: frontmatter.exposure_friendly || null, |
|
| 120 | + | focalLength: frontmatter.focal_length_friendly || null, |
|
| 121 | + | iso: frontmatter.iso || null, |
|
| 122 | + | make: frontmatter.make || null, |
|
| 123 | + | tags: frontmatter.tags || [], |
|
| 124 | + | }); |
|
| 125 | + | } |
|
| 126 | + | ||
| 127 | + | // Sort by date (newest first) |
|
| 128 | + | posts.sort((a, b) => { |
|
| 129 | + | if (!a.date) return 1; |
|
| 130 | + | if (!b.date) return -1; |
|
| 131 | + | return new Date(b.date).getTime() - new Date(a.date).getTime(); |
|
| 132 | + | }); |
|
| 133 | + | ||
| 134 | + | // Write to data.json |
|
| 135 | + | fs.writeFileSync(outputFile, JSON.stringify(posts, null, 2)); |
|
| 136 | + | ||
| 137 | + | console.log(`Generated ${outputFile} with ${posts.length} posts`); |
|
| 138 | + | } |
|
| 139 | + | ||
| 140 | + | generateData(); |
| 1 | + | // See https://svelte.dev/docs/kit/types#app.d.ts |
|
| 2 | + | // for information about these interfaces |
|
| 3 | + | declare global { |
|
| 4 | + | namespace App { |
|
| 5 | + | // interface Error {} |
|
| 6 | + | // interface Locals {} |
|
| 7 | + | // interface PageData {} |
|
| 8 | + | // interface PageState {} |
|
| 9 | + | // interface Platform {} |
|
| 10 | + | } |
|
| 11 | + | } |
|
| 12 | + | ||
| 13 | + | export {}; |
| 1 | + | <!doctype html> |
|
| 2 | + | <html lang="en"> |
|
| 3 | + | <head> |
|
| 4 | + | <meta charset="utf-8" /> |
|
| 5 | + | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
|
| 6 | + | %sveltekit.head% |
|
| 7 | + | </head> |
|
| 8 | + | <body data-sveltekit-preload-data="hover"> |
|
| 9 | + | <div style="display: contents">%sveltekit.body%</div> |
|
| 10 | + | </body> |
|
| 11 | + | </html> |
| 1 | + | <svg xmlns="http://www.w3.org/2000/svg" width="107" height="128" viewBox="0 0 107 128"><title>svelte-logo</title><path d="M94.157 22.819c-10.4-14.885-30.94-19.297-45.792-9.835L22.282 29.608A29.92 29.92 0 0 0 8.764 49.65a31.5 31.5 0 0 0 3.108 20.231 30 30 0 0 0-4.477 11.183 31.9 31.9 0 0 0 5.448 24.116c10.402 14.887 30.942 19.297 45.791 9.835l26.083-16.624A29.92 29.92 0 0 0 98.235 78.35a31.53 31.53 0 0 0-3.105-20.232 30 30 0 0 0 4.474-11.182 31.88 31.88 0 0 0-5.447-24.116" style="fill:#ff3e00"/><path d="M45.817 106.582a20.72 20.72 0 0 1-22.237-8.243 19.17 19.17 0 0 1-3.277-14.503 18 18 0 0 1 .624-2.435l.49-1.498 1.337.981a33.6 33.6 0 0 0 10.203 5.098l.97.294-.09.968a5.85 5.85 0 0 0 1.052 3.878 6.24 6.24 0 0 0 6.695 2.485 5.8 5.8 0 0 0 1.603-.704L69.27 76.28a5.43 5.43 0 0 0 2.45-3.631 5.8 5.8 0 0 0-.987-4.371 6.24 6.24 0 0 0-6.698-2.487 5.7 5.7 0 0 0-1.6.704l-9.953 6.345a19 19 0 0 1-5.296 2.326 20.72 20.72 0 0 1-22.237-8.243 19.17 19.17 0 0 1-3.277-14.502 17.99 17.99 0 0 1 8.13-12.052l26.081-16.623a19 19 0 0 1 5.3-2.329 20.72 20.72 0 0 1 22.237 8.243 19.17 19.17 0 0 1 3.277 14.503 18 18 0 0 1-.624 2.435l-.49 1.498-1.337-.98a33.6 33.6 0 0 0-10.203-5.1l-.97-.294.09-.968a5.86 5.86 0 0 0-1.052-3.878 6.24 6.24 0 0 0-6.696-2.485 5.8 5.8 0 0 0-1.602.704L37.73 51.72a5.42 5.42 0 0 0-2.449 3.63 5.79 5.79 0 0 0 .986 4.372 6.24 6.24 0 0 0 6.698 2.486 5.8 5.8 0 0 0 1.602-.704l9.952-6.342a19 19 0 0 1 5.295-2.328 20.72 20.72 0 0 1 22.237 8.242 19.17 19.17 0 0 1 3.277 14.503 18 18 0 0 1-8.13 12.053l-26.081 16.622a19 19 0 0 1-5.3 2.328" style="fill:#fff"/></svg> |
| 1 | + | [ |
|
| 2 | + | { |
|
| 3 | + | "slug": "tree-web", |
|
| 4 | + | "title": "Tree Web", |
|
| 5 | + | "date": "2025-11-03T12:32:24Z", |
|
| 6 | + | "image": "/posts/tree-web/Tree Web.jpeg", |
|
| 7 | + | "thumb": "/posts/tree-web/Tree Web-thumb.jpeg", |
|
| 8 | + | "type": "photo", |
|
| 9 | + | "camera": "X-E4", |
|
| 10 | + | "lens": "XF23mmF2 R WR", |
|
| 11 | + | "aperture": "f/3.2", |
|
| 12 | + | "exposure": "1/800s", |
|
| 13 | + | "focalLength": "23.0mm", |
|
| 14 | + | "iso": "640", |
|
| 15 | + | "make": "FUJIFILM", |
|
| 16 | + | "tags": [ |
|
| 17 | + | "23.0mm", |
|
| 18 | + | "XF23mmF2 R WR", |
|
| 19 | + | "X-E4", |
|
| 20 | + | "FUJIFILM", |
|
| 21 | + | "640", |
|
| 22 | + | "f/3.2", |
|
| 23 | + | "1/800s" |
|
| 24 | + | ] |
|
| 25 | + | }, |
|
| 26 | + | { |
|
| 27 | + | "slug": "autumn-glow", |
|
| 28 | + | "title": "Autumn Glow", |
|
| 29 | + | "date": "2025-11-03T12:09:12Z", |
|
| 30 | + | "image": "/posts/autumn-glow/Autumn Glow.jpeg", |
|
| 31 | + | "thumb": "/posts/autumn-glow/Autumn Glow-thumb.jpeg", |
|
| 32 | + | "type": "photo", |
|
| 33 | + | "camera": "X-E4", |
|
| 34 | + | "lens": "XF23mmF2 R WR", |
|
| 35 | + | "aperture": "f/2.8", |
|
| 36 | + | "exposure": "1/250s", |
|
| 37 | + | "focalLength": "23.0mm", |
|
| 38 | + | "iso": "640", |
|
| 39 | + | "make": "FUJIFILM", |
|
| 40 | + | "tags": [ |
|
| 41 | + | "X-E4", |
|
| 42 | + | "FUJIFILM", |
|
| 43 | + | "640", |
|
| 44 | + | "f/2.8", |
|
| 45 | + | "1/250s", |
|
| 46 | + | "23.0mm", |
|
| 47 | + | "XF23mmF2 R WR" |
|
| 48 | + | ] |
|
| 49 | + | }, |
|
| 50 | + | { |
|
| 51 | + | "slug": "tumble", |
|
| 52 | + | "title": "Tumble", |
|
| 53 | + | "date": "2025-11-03T11:54:09Z", |
|
| 54 | + | "image": "/posts/tumble/Tumble.jpeg", |
|
| 55 | + | "thumb": "/posts/tumble/Tumble-thumb.jpeg", |
|
| 56 | + | "type": "photo", |
|
| 57 | + | "camera": "X-E4", |
|
| 58 | + | "lens": "XF23mmF2 R WR", |
|
| 59 | + | "aperture": "f/2.8", |
|
| 60 | + | "exposure": "1/500s", |
|
| 61 | + | "focalLength": "23.0mm", |
|
| 62 | + | "iso": "640", |
|
| 63 | + | "make": "FUJIFILM", |
|
| 64 | + | "tags": [ |
|
| 65 | + | "X-E4", |
|
| 66 | + | "FUJIFILM", |
|
| 67 | + | "640", |
|
| 68 | + | "f/2.8", |
|
| 69 | + | "1/500s", |
|
| 70 | + | "23.0mm", |
|
| 71 | + | "XF23mmF2 R WR" |
|
| 72 | + | ] |
|
| 73 | + | }, |
|
| 74 | + | { |
|
| 75 | + | "slug": "hike", |
|
| 76 | + | "title": "Hike", |
|
| 77 | + | "date": "2025-11-03T11:50:25Z", |
|
| 78 | + | "image": "/posts/hike/Hike.jpeg", |
|
| 79 | + | "thumb": "/posts/hike/Hike-thumb.jpeg", |
|
| 80 | + | "type": "photo", |
|
| 81 | + | "camera": "X-E4", |
|
| 82 | + | "lens": "XF23mmF2 R WR", |
|
| 83 | + | "aperture": "f/2.8", |
|
| 84 | + | "exposure": "1/320s", |
|
| 85 | + | "focalLength": "23.0mm", |
|
| 86 | + | "iso": "640", |
|
| 87 | + | "make": "FUJIFILM", |
|
| 88 | + | "tags": [ |
|
| 89 | + | "23.0mm", |
|
| 90 | + | "XF23mmF2 R WR", |
|
| 91 | + | "X-E4", |
|
| 92 | + | "FUJIFILM", |
|
| 93 | + | "640", |
|
| 94 | + | "f/2.8", |
|
| 95 | + | "1/320s" |
|
| 96 | + | ] |
|
| 97 | + | }, |
|
| 98 | + | { |
|
| 99 | + | "slug": "cold-vinyl", |
|
| 100 | + | "title": "Cold Vinyl", |
|
| 101 | + | "date": "2025-11-03T08:47:54Z", |
|
| 102 | + | "image": "/posts/cold-vinyl/Cold Vinyl.jpeg", |
|
| 103 | + | "thumb": "/posts/cold-vinyl/Cold Vinyl-thumb.jpeg", |
|
| 104 | + | "type": "photo", |
|
| 105 | + | "camera": "X-E4", |
|
| 106 | + | "lens": "XF23mmF2 R WR", |
|
| 107 | + | "aperture": "f/2.8", |
|
| 108 | + | "exposure": "1/60s", |
|
| 109 | + | "focalLength": "23.0mm", |
|
| 110 | + | "iso": "400", |
|
| 111 | + | "make": "FUJIFILM", |
|
| 112 | + | "tags": [ |
|
| 113 | + | "FUJIFILM", |
|
| 114 | + | "400", |
|
| 115 | + | "f/2.8", |
|
| 116 | + | "1/60s", |
|
| 117 | + | "23.0mm", |
|
| 118 | + | "XF23mmF2 R WR", |
|
| 119 | + | "X-E4" |
|
| 120 | + | ] |
|
| 121 | + | }, |
|
| 122 | + | { |
|
| 123 | + | "slug": "super-8", |
|
| 124 | + | "title": "Super 8", |
|
| 125 | + | "date": "2025-11-02T12:17:19Z", |
|
| 126 | + | "image": "/posts/super-8/Super 8.jpeg", |
|
| 127 | + | "thumb": "/posts/super-8/Super 8-thumb.jpeg", |
|
| 128 | + | "type": "photo", |
|
| 129 | + | "camera": "X-E4", |
|
| 130 | + | "lens": "XF23mmF2 R WR", |
|
| 131 | + | "aperture": "f/2.8", |
|
| 132 | + | "exposure": "1/2000s", |
|
| 133 | + | "focalLength": "23.0mm", |
|
| 134 | + | "iso": "400", |
|
| 135 | + | "make": "FUJIFILM", |
|
| 136 | + | "tags": [ |
|
| 137 | + | "400", |
|
| 138 | + | "f/2.8", |
|
| 139 | + | "1/2000s", |
|
| 140 | + | "23.0mm", |
|
| 141 | + | "XF23mmF2 R WR", |
|
| 142 | + | "X-E4", |
|
| 143 | + | "FUJIFILM" |
|
| 144 | + | ] |
|
| 145 | + | }, |
|
| 146 | + | { |
|
| 147 | + | "slug": "golden-river", |
|
| 148 | + | "title": "Golden River", |
|
| 149 | + | "date": "2025-11-02T12:17:11Z", |
|
| 150 | + | "image": "/posts/golden-river/Golden River.jpeg", |
|
| 151 | + | "thumb": "/posts/golden-river/Golden River-thumb.jpeg", |
|
| 152 | + | "type": "photo", |
|
| 153 | + | "camera": "X-E4", |
|
| 154 | + | "lens": "XF23mmF2 R WR", |
|
| 155 | + | "aperture": "f/2.8", |
|
| 156 | + | "exposure": "1/1250s", |
|
| 157 | + | "focalLength": "23.0mm", |
|
| 158 | + | "iso": "400", |
|
| 159 | + | "make": "FUJIFILM", |
|
| 160 | + | "tags": [ |
|
| 161 | + | "X-E4", |
|
| 162 | + | "FUJIFILM", |
|
| 163 | + | "400", |
|
| 164 | + | "f/2.8", |
|
| 165 | + | "1/1250s", |
|
| 166 | + | "23.0mm", |
|
| 167 | + | "XF23mmF2 R WR" |
|
| 168 | + | ] |
|
| 169 | + | }, |
|
| 170 | + | { |
|
| 171 | + | "slug": "cookie-time", |
|
| 172 | + | "title": "Cookie Time", |
|
| 173 | + | "date": "2025-11-02T11:24:10Z", |
|
| 174 | + | "image": "/posts/cookie-time/Cookie Time.jpeg", |
|
| 175 | + | "thumb": "/posts/cookie-time/Cookie Time-thumb.jpeg", |
|
| 176 | + | "type": "photo", |
|
| 177 | + | "camera": "X-E4", |
|
| 178 | + | "lens": "XF23mmF2 R WR", |
|
| 179 | + | "aperture": "f/2.8", |
|
| 180 | + | "exposure": "1/640s", |
|
| 181 | + | "focalLength": "23.0mm", |
|
| 182 | + | "iso": "400", |
|
| 183 | + | "make": "FUJIFILM", |
|
| 184 | + | "tags": [ |
|
| 185 | + | "FUJIFILM", |
|
| 186 | + | "400", |
|
| 187 | + | "f/2.8", |
|
| 188 | + | "1/640s", |
|
| 189 | + | "23.0mm", |
|
| 190 | + | "XF23mmF2 R WR", |
|
| 191 | + | "X-E4" |
|
| 192 | + | ] |
|
| 193 | + | }, |
|
| 194 | + | { |
|
| 195 | + | "slug": "suby", |
|
| 196 | + | "title": "Suby", |
|
| 197 | + | "date": "2025-11-02T11:23:36Z", |
|
| 198 | + | "image": "/posts/suby/Suby.jpeg", |
|
| 199 | + | "thumb": "/posts/suby/Suby-thumb.jpeg", |
|
| 200 | + | "type": "photo", |
|
| 201 | + | "camera": "X-E4", |
|
| 202 | + | "lens": "XF23mmF2 R WR", |
|
| 203 | + | "aperture": "f/2.8", |
|
| 204 | + | "exposure": "1/800s", |
|
| 205 | + | "focalLength": "23.0mm", |
|
| 206 | + | "iso": "400", |
|
| 207 | + | "make": "FUJIFILM", |
|
| 208 | + | "tags": [ |
|
| 209 | + | "X-E4", |
|
| 210 | + | "FUJIFILM", |
|
| 211 | + | "400", |
|
| 212 | + | "f/2.8", |
|
| 213 | + | "1/800s", |
|
| 214 | + | "23.0mm", |
|
| 215 | + | "XF23mmF2 R WR" |
|
| 216 | + | ] |
|
| 217 | + | }, |
|
| 218 | + | { |
|
| 219 | + | "slug": "good-gourd", |
|
| 220 | + | "title": "Good Gourd", |
|
| 221 | + | "date": "2025-10-11T10:34:16Z", |
|
| 222 | + | "image": "/posts/good-gourd/Good Gourd.JPG", |
|
| 223 | + | "thumb": "/posts/good-gourd/Good Gourd-thumb.JPG", |
|
| 224 | + | "type": "photo", |
|
| 225 | + | "camera": "X-E4", |
|
| 226 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 227 | + | "aperture": "f/4.0", |
|
| 228 | + | "exposure": "10/40000s", |
|
| 229 | + | "focalLength": "23.0mm", |
|
| 230 | + | "iso": "400", |
|
| 231 | + | "make": "FUJIFILM", |
|
| 232 | + | "tags": [ |
|
| 233 | + | "f/4.0", |
|
| 234 | + | "10/40000s", |
|
| 235 | + | "23.0mm", |
|
| 236 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 237 | + | "X-E4", |
|
| 238 | + | "FUJIFILM", |
|
| 239 | + | "400" |
|
| 240 | + | ] |
|
| 241 | + | }, |
|
| 242 | + | { |
|
| 243 | + | "slug": "seuss-trees", |
|
| 244 | + | "title": "Seuss Trees", |
|
| 245 | + | "date": "2025-10-11T10:09:49Z", |
|
| 246 | + | "image": "/posts/seuss-trees/Seuss Trees.JPG", |
|
| 247 | + | "thumb": "/posts/seuss-trees/Seuss Trees-thumb.JPG", |
|
| 248 | + | "type": "photo", |
|
| 249 | + | "camera": "X-E4", |
|
| 250 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 251 | + | "aperture": "f/5.6", |
|
| 252 | + | "exposure": "10/16000s", |
|
| 253 | + | "focalLength": "23.0mm", |
|
| 254 | + | "iso": "400", |
|
| 255 | + | "make": "FUJIFILM", |
|
| 256 | + | "tags": [ |
|
| 257 | + | "X-E4", |
|
| 258 | + | "FUJIFILM", |
|
| 259 | + | "400", |
|
| 260 | + | "f/5.6", |
|
| 261 | + | "10/16000s", |
|
| 262 | + | "23.0mm", |
|
| 263 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0" |
|
| 264 | + | ] |
|
| 265 | + | }, |
|
| 266 | + | { |
|
| 267 | + | "slug": "monarch", |
|
| 268 | + | "title": "Monarch", |
|
| 269 | + | "date": "2025-10-11T10:06:54Z", |
|
| 270 | + | "image": "/posts/monarch/Monarch.JPG", |
|
| 271 | + | "thumb": "/posts/monarch/Monarch-thumb.JPG", |
|
| 272 | + | "type": "photo", |
|
| 273 | + | "camera": "X-E4", |
|
| 274 | + | "lens": "XF23mmF2 R WR", |
|
| 275 | + | "aperture": "f/8.0", |
|
| 276 | + | "exposure": "1/1000s", |
|
| 277 | + | "focalLength": "23.0mm", |
|
| 278 | + | "iso": "400", |
|
| 279 | + | "make": "FUJIFILM", |
|
| 280 | + | "tags": [ |
|
| 281 | + | "400", |
|
| 282 | + | "f/8.0", |
|
| 283 | + | "1/1000s", |
|
| 284 | + | "23.0mm", |
|
| 285 | + | "XF23mmF2 R WR", |
|
| 286 | + | "X-E4", |
|
| 287 | + | "FUJIFILM" |
|
| 288 | + | ] |
|
| 289 | + | }, |
|
| 290 | + | { |
|
| 291 | + | "slug": "flower-moon", |
|
| 292 | + | "title": "Flower Moon", |
|
| 293 | + | "date": "2025-10-11T10:06:05Z", |
|
| 294 | + | "image": "/posts/flower-moon/Flower Moon.JPG", |
|
| 295 | + | "thumb": "/posts/flower-moon/Flower Moon-thumb.JPG", |
|
| 296 | + | "type": "photo", |
|
| 297 | + | "camera": "X-E4", |
|
| 298 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 299 | + | "aperture": "f/6.4", |
|
| 300 | + | "exposure": "10/20000s", |
|
| 301 | + | "focalLength": "23.0mm", |
|
| 302 | + | "iso": "400", |
|
| 303 | + | "make": "FUJIFILM", |
|
| 304 | + | "tags": [ |
|
| 305 | + | "400", |
|
| 306 | + | "f/6.4", |
|
| 307 | + | "10/20000s", |
|
| 308 | + | "23.0mm", |
|
| 309 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 310 | + | "X-E4", |
|
| 311 | + | "FUJIFILM" |
|
| 312 | + | ] |
|
| 313 | + | }, |
|
| 314 | + | { |
|
| 315 | + | "slug": "hills-of-gold", |
|
| 316 | + | "title": "Hills of Gold", |
|
| 317 | + | "date": "2025-10-11T09:27:07Z", |
|
| 318 | + | "image": "/posts/hills-of-gold/Hills of Gold.JPG", |
|
| 319 | + | "thumb": "/posts/hills-of-gold/Hills of Gold-thumb.JPG", |
|
| 320 | + | "type": "photo", |
|
| 321 | + | "camera": "X-E4", |
|
| 322 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 323 | + | "aperture": "f/4.0", |
|
| 324 | + | "exposure": "10/20000s", |
|
| 325 | + | "focalLength": "23.0mm", |
|
| 326 | + | "iso": "320", |
|
| 327 | + | "make": "FUJIFILM", |
|
| 328 | + | "tags": [ |
|
| 329 | + | "X-E4", |
|
| 330 | + | "FUJIFILM", |
|
| 331 | + | "320", |
|
| 332 | + | "f/4.0", |
|
| 333 | + | "10/20000s", |
|
| 334 | + | "23.0mm", |
|
| 335 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0" |
|
| 336 | + | ] |
|
| 337 | + | }, |
|
| 338 | + | { |
|
| 339 | + | "slug": "howdy", |
|
| 340 | + | "title": "Howdy", |
|
| 341 | + | "date": "2025-10-11T09:22:00Z", |
|
| 342 | + | "image": "/posts/howdy/Howdy.JPG", |
|
| 343 | + | "thumb": "/posts/howdy/Howdy-thumb.JPG", |
|
| 344 | + | "type": "photo", |
|
| 345 | + | "camera": "X-E4", |
|
| 346 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 347 | + | "aperture": "f/4.0", |
|
| 348 | + | "exposure": "10/20000s", |
|
| 349 | + | "focalLength": "23.0mm", |
|
| 350 | + | "iso": "250", |
|
| 351 | + | "make": "FUJIFILM", |
|
| 352 | + | "tags": [ |
|
| 353 | + | "10/20000s", |
|
| 354 | + | "23.0mm", |
|
| 355 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 356 | + | "X-E4", |
|
| 357 | + | "FUJIFILM", |
|
| 358 | + | "250", |
|
| 359 | + | "f/4.0" |
|
| 360 | + | ] |
|
| 361 | + | }, |
|
| 362 | + | { |
|
| 363 | + | "slug": "helper", |
|
| 364 | + | "title": "Helper", |
|
| 365 | + | "date": "2025-08-03T17:01:51Z", |
|
| 366 | + | "image": "/posts/helper/Helper.JPG", |
|
| 367 | + | "thumb": "/posts/helper/Helper-thumb.JPG", |
|
| 368 | + | "type": "photo", |
|
| 369 | + | "camera": "X-E4", |
|
| 370 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 371 | + | "aperture": "f/4.0", |
|
| 372 | + | "exposure": "10/2500s", |
|
| 373 | + | "focalLength": "23.0mm", |
|
| 374 | + | "iso": "640", |
|
| 375 | + | "make": "FUJIFILM", |
|
| 376 | + | "tags": [ |
|
| 377 | + | "X-E4", |
|
| 378 | + | "FUJIFILM", |
|
| 379 | + | "640", |
|
| 380 | + | "f/4.0", |
|
| 381 | + | "10/2500s", |
|
| 382 | + | "23.0mm", |
|
| 383 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0" |
|
| 384 | + | ] |
|
| 385 | + | }, |
|
| 386 | + | { |
|
| 387 | + | "slug": "green-hands", |
|
| 388 | + | "title": "Green Hands", |
|
| 389 | + | "date": "2025-08-03T16:57:19Z", |
|
| 390 | + | "image": "/posts/green-hands/Green Hands.JPG", |
|
| 391 | + | "thumb": "/posts/green-hands/Green Hands-thumb.JPG", |
|
| 392 | + | "type": "photo", |
|
| 393 | + | "camera": "X-E4", |
|
| 394 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 395 | + | "aperture": "f/4.0", |
|
| 396 | + | "exposure": "10/4000s", |
|
| 397 | + | "focalLength": "23.0mm", |
|
| 398 | + | "iso": "800", |
|
| 399 | + | "make": "FUJIFILM", |
|
| 400 | + | "tags": [ |
|
| 401 | + | "X-E4", |
|
| 402 | + | "FUJIFILM", |
|
| 403 | + | "800", |
|
| 404 | + | "f/4.0", |
|
| 405 | + | "10/4000s", |
|
| 406 | + | "23.0mm", |
|
| 407 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0" |
|
| 408 | + | ] |
|
| 409 | + | }, |
|
| 410 | + | { |
|
| 411 | + | "slug": "star", |
|
| 412 | + | "title": "Star", |
|
| 413 | + | "date": "2025-08-03T16:44:20Z", |
|
| 414 | + | "image": "/posts/star/Star.JPG", |
|
| 415 | + | "thumb": "/posts/star/Star-thumb.JPG", |
|
| 416 | + | "type": "photo", |
|
| 417 | + | "camera": "X-E4", |
|
| 418 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 419 | + | "aperture": "f/4.0", |
|
| 420 | + | "exposure": "10/5000s", |
|
| 421 | + | "focalLength": "23.0mm", |
|
| 422 | + | "iso": "800", |
|
| 423 | + | "make": "FUJIFILM", |
|
| 424 | + | "tags": [ |
|
| 425 | + | "FUJIFILM", |
|
| 426 | + | "800", |
|
| 427 | + | "f/4.0", |
|
| 428 | + | "10/5000s", |
|
| 429 | + | "23.0mm", |
|
| 430 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 431 | + | "X-E4" |
|
| 432 | + | ] |
|
| 433 | + | }, |
|
| 434 | + | { |
|
| 435 | + | "slug": "summer-face", |
|
| 436 | + | "title": "Summer Face", |
|
| 437 | + | "date": "2025-05-31T13:33:34Z", |
|
| 438 | + | "image": "/posts/summer-face/Summer Face.webp", |
|
| 439 | + | "thumb": "/posts/summer-face/Summer Face-thumb.jpeg", |
|
| 440 | + | "type": "photo", |
|
| 441 | + | "camera": "X-E4", |
|
| 442 | + | "lens": "XF23mmF2 R WR", |
|
| 443 | + | "aperture": "f/3.6", |
|
| 444 | + | "exposure": "1/640s", |
|
| 445 | + | "focalLength": "23.0mm", |
|
| 446 | + | "iso": "400", |
|
| 447 | + | "make": "FUJIFILM", |
|
| 448 | + | "tags": [ |
|
| 449 | + | "23.0mm", |
|
| 450 | + | "XF23mmF2 R WR", |
|
| 451 | + | "X-E4", |
|
| 452 | + | "FUJIFILM", |
|
| 453 | + | "400", |
|
| 454 | + | "f/3.6", |
|
| 455 | + | "1/640s" |
|
| 456 | + | ] |
|
| 457 | + | }, |
|
| 458 | + | { |
|
| 459 | + | "slug": "old-town-guide", |
|
| 460 | + | "title": "Old Town Guide", |
|
| 461 | + | "date": "2025-05-31T13:29:52Z", |
|
| 462 | + | "image": "/posts/old-town-guide/Old Town Guide.webp", |
|
| 463 | + | "thumb": "/posts/old-town-guide/Old Town Guide-thumb.jpeg", |
|
| 464 | + | "type": "photo", |
|
| 465 | + | "camera": "X-E4", |
|
| 466 | + | "lens": "XF23mmF2 R WR", |
|
| 467 | + | "aperture": "f/3.6", |
|
| 468 | + | "exposure": "1/640s", |
|
| 469 | + | "focalLength": "23.0mm", |
|
| 470 | + | "iso": "400", |
|
| 471 | + | "make": "FUJIFILM", |
|
| 472 | + | "tags": [ |
|
| 473 | + | "X-E4", |
|
| 474 | + | "FUJIFILM", |
|
| 475 | + | "400", |
|
| 476 | + | "f/3.6", |
|
| 477 | + | "1/640s", |
|
| 478 | + | "23.0mm", |
|
| 479 | + | "XF23mmF2 R WR" |
|
| 480 | + | ] |
|
| 481 | + | }, |
|
| 482 | + | { |
|
| 483 | + | "slug": "ticket", |
|
| 484 | + | "title": "Ticket", |
|
| 485 | + | "date": "2024-12-29T13:51:40Z", |
|
| 486 | + | "image": "/posts/ticket/Ticket.webp", |
|
| 487 | + | "thumb": "/posts/ticket/Ticket-thumb.jpeg", |
|
| 488 | + | "type": "photo", |
|
| 489 | + | "camera": "X-E4", |
|
| 490 | + | "lens": "XF23mmF2 R WR", |
|
| 491 | + | "aperture": "f/2.8", |
|
| 492 | + | "exposure": "1/160s", |
|
| 493 | + | "focalLength": "23.0mm", |
|
| 494 | + | "iso": "640", |
|
| 495 | + | "make": "FUJIFILM", |
|
| 496 | + | "tags": [ |
|
| 497 | + | "FUJIFILM", |
|
| 498 | + | "640", |
|
| 499 | + | "f/2.8", |
|
| 500 | + | "1/160s", |
|
| 501 | + | "23.0mm", |
|
| 502 | + | "XF23mmF2 R WR", |
|
| 503 | + | "X-E4" |
|
| 504 | + | ] |
|
| 505 | + | }, |
|
| 506 | + | { |
|
| 507 | + | "slug": "north-end", |
|
| 508 | + | "title": "North End", |
|
| 509 | + | "date": "2024-12-08T14:56:38Z", |
|
| 510 | + | "image": "/posts/north-end/North End.webp", |
|
| 511 | + | "thumb": "/posts/north-end/North End-thumb.jpeg", |
|
| 512 | + | "type": "photo", |
|
| 513 | + | "camera": "X-E4", |
|
| 514 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 515 | + | "aperture": "f/4.0", |
|
| 516 | + | "exposure": "10/3200s", |
|
| 517 | + | "focalLength": "23.0mm", |
|
| 518 | + | "iso": "640", |
|
| 519 | + | "make": "FUJIFILM", |
|
| 520 | + | "tags": [ |
|
| 521 | + | "10/3200s", |
|
| 522 | + | "23.0mm", |
|
| 523 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 524 | + | "X-E4", |
|
| 525 | + | "FUJIFILM", |
|
| 526 | + | "640", |
|
| 527 | + | "f/4.0" |
|
| 528 | + | ] |
|
| 529 | + | }, |
|
| 530 | + | { |
|
| 531 | + | "slug": "dirt", |
|
| 532 | + | "title": "Dirt", |
|
| 533 | + | "date": "2024-12-08T14:36:57Z", |
|
| 534 | + | "image": "/posts/dirt/Dirt.webp", |
|
| 535 | + | "thumb": "/posts/dirt/Dirt-thumb.jpeg", |
|
| 536 | + | "type": "photo", |
|
| 537 | + | "camera": "X-E4", |
|
| 538 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 539 | + | "aperture": "f/4.0", |
|
| 540 | + | "exposure": "10/4000s", |
|
| 541 | + | "focalLength": "23.0mm", |
|
| 542 | + | "iso": "640", |
|
| 543 | + | "make": "FUJIFILM", |
|
| 544 | + | "tags": [ |
|
| 545 | + | "X-E4", |
|
| 546 | + | "FUJIFILM", |
|
| 547 | + | "640", |
|
| 548 | + | "f/4.0", |
|
| 549 | + | "10/4000s", |
|
| 550 | + | "23.0mm", |
|
| 551 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0" |
|
| 552 | + | ] |
|
| 553 | + | }, |
|
| 554 | + | { |
|
| 555 | + | "slug": "gaze", |
|
| 556 | + | "title": "Gaze", |
|
| 557 | + | "date": "2024-11-29T14:04:03Z", |
|
| 558 | + | "image": "/posts/gaze/Gaze.webp", |
|
| 559 | + | "thumb": "/posts/gaze/Gaze-thumb.jpeg", |
|
| 560 | + | "type": "photo", |
|
| 561 | + | "camera": "X-E4", |
|
| 562 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 563 | + | "aperture": "f/4.0", |
|
| 564 | + | "exposure": "10/32000s", |
|
| 565 | + | "focalLength": "23.0mm", |
|
| 566 | + | "iso": "400", |
|
| 567 | + | "make": "FUJIFILM", |
|
| 568 | + | "tags": [ |
|
| 569 | + | "400", |
|
| 570 | + | "f/4.0", |
|
| 571 | + | "10/32000s", |
|
| 572 | + | "23.0mm", |
|
| 573 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 574 | + | "X-E4", |
|
| 575 | + | "FUJIFILM" |
|
| 576 | + | ] |
|
| 577 | + | }, |
|
| 578 | + | { |
|
| 579 | + | "slug": "walk", |
|
| 580 | + | "title": "Walk", |
|
| 581 | + | "date": "2024-11-29T14:02:00Z", |
|
| 582 | + | "image": "/posts/walk/Walk.webp", |
|
| 583 | + | "thumb": "/posts/walk/Walk-thumb.jpeg", |
|
| 584 | + | "type": "photo", |
|
| 585 | + | "camera": "X-E4", |
|
| 586 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 587 | + | "aperture": "f/5.0", |
|
| 588 | + | "exposure": "10/25000s", |
|
| 589 | + | "focalLength": "23.0mm", |
|
| 590 | + | "iso": "400", |
|
| 591 | + | "make": "FUJIFILM", |
|
| 592 | + | "tags": [ |
|
| 593 | + | "10/25000s", |
|
| 594 | + | "23.0mm", |
|
| 595 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 596 | + | "X-E4", |
|
| 597 | + | "FUJIFILM", |
|
| 598 | + | "400", |
|
| 599 | + | "f/5.0" |
|
| 600 | + | ] |
|
| 601 | + | }, |
|
| 602 | + | { |
|
| 603 | + | "slug": "lighthouse", |
|
| 604 | + | "title": "Lighthouse", |
|
| 605 | + | "date": "2024-11-29T13:51:57Z", |
|
| 606 | + | "image": "/posts/lighthouse/Lighthouse.webp", |
|
| 607 | + | "thumb": "/posts/lighthouse/Lighthouse-thumb.jpeg", |
|
| 608 | + | "type": "photo", |
|
| 609 | + | "camera": "X-E4", |
|
| 610 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 611 | + | "aperture": "f/4.0", |
|
| 612 | + | "exposure": "10/25000s", |
|
| 613 | + | "focalLength": "23.0mm", |
|
| 614 | + | "iso": "400", |
|
| 615 | + | "make": "FUJIFILM", |
|
| 616 | + | "tags": [ |
|
| 617 | + | "10/25000s", |
|
| 618 | + | "23.0mm", |
|
| 619 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 620 | + | "X-E4", |
|
| 621 | + | "FUJIFILM", |
|
| 622 | + | "400", |
|
| 623 | + | "f/4.0" |
|
| 624 | + | ] |
|
| 625 | + | }, |
|
| 626 | + | { |
|
| 627 | + | "slug": "absolute-unit", |
|
| 628 | + | "title": "Absolute Unit", |
|
| 629 | + | "date": "2024-11-29T13:49:12Z", |
|
| 630 | + | "image": "/posts/absolute-unit/Absolute Unit.webp", |
|
| 631 | + | "thumb": "/posts/absolute-unit/Absolute Unit-thumb.jpeg", |
|
| 632 | + | "type": "photo", |
|
| 633 | + | "camera": "X-E4", |
|
| 634 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 635 | + | "aperture": "f/4.0", |
|
| 636 | + | "exposure": "10/40000s", |
|
| 637 | + | "focalLength": "23.0mm", |
|
| 638 | + | "iso": "400", |
|
| 639 | + | "make": "FUJIFILM", |
|
| 640 | + | "tags": [ |
|
| 641 | + | "400", |
|
| 642 | + | "f/4.0", |
|
| 643 | + | "10/40000s", |
|
| 644 | + | "23.0mm", |
|
| 645 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 646 | + | "X-E4", |
|
| 647 | + | "FUJIFILM" |
|
| 648 | + | ] |
|
| 649 | + | }, |
|
| 650 | + | { |
|
| 651 | + | "slug": "queen", |
|
| 652 | + | "title": "Queen", |
|
| 653 | + | "date": "2024-11-04T09:53:22Z", |
|
| 654 | + | "image": "/posts/queen/Queen.webp", |
|
| 655 | + | "thumb": "/posts/queen/Queen-thumb.jpeg", |
|
| 656 | + | "type": "photo", |
|
| 657 | + | "camera": "X-E4", |
|
| 658 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 659 | + | "aperture": "f/3.2", |
|
| 660 | + | "exposure": "10/5000s", |
|
| 661 | + | "focalLength": "23.0mm", |
|
| 662 | + | "iso": "400", |
|
| 663 | + | "make": "FUJIFILM", |
|
| 664 | + | "tags": [ |
|
| 665 | + | "FUJIFILM", |
|
| 666 | + | "400", |
|
| 667 | + | "f/3.2", |
|
| 668 | + | "10/5000s", |
|
| 669 | + | "23.0mm", |
|
| 670 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 671 | + | "X-E4" |
|
| 672 | + | ] |
|
| 673 | + | }, |
|
| 674 | + | { |
|
| 675 | + | "slug": "fall-face", |
|
| 676 | + | "title": "Fall Face", |
|
| 677 | + | "date": "2024-11-04T09:38:46Z", |
|
| 678 | + | "image": "/posts/fall-face/Fall Face.webp", |
|
| 679 | + | "thumb": "/posts/fall-face/Fall Face-thumb.jpeg", |
|
| 680 | + | "type": "photo", |
|
| 681 | + | "camera": "X-E4", |
|
| 682 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 683 | + | "aperture": "f/4.0", |
|
| 684 | + | "exposure": "10/2500s", |
|
| 685 | + | "focalLength": "23.0mm", |
|
| 686 | + | "iso": "400", |
|
| 687 | + | "make": "FUJIFILM", |
|
| 688 | + | "tags": [ |
|
| 689 | + | "400", |
|
| 690 | + | "f/4.0", |
|
| 691 | + | "10/2500s", |
|
| 692 | + | "23.0mm", |
|
| 693 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 694 | + | "X-E4", |
|
| 695 | + | "FUJIFILM" |
|
| 696 | + | ] |
|
| 697 | + | }, |
|
| 698 | + | { |
|
| 699 | + | "slug": "uncle-bread", |
|
| 700 | + | "title": "Uncle Bread", |
|
| 701 | + | "date": "2024-11-04T09:26:53Z", |
|
| 702 | + | "image": "/posts/uncle-bread/Uncle Bread.webp", |
|
| 703 | + | "thumb": "/posts/uncle-bread/Uncle Bread-thumb.jpeg", |
|
| 704 | + | "type": "photo", |
|
| 705 | + | "camera": "X-E4", |
|
| 706 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 707 | + | "aperture": "f/4.0", |
|
| 708 | + | "exposure": "10/5000s", |
|
| 709 | + | "focalLength": "23.0mm", |
|
| 710 | + | "iso": "400", |
|
| 711 | + | "make": "FUJIFILM", |
|
| 712 | + | "tags": [ |
|
| 713 | + | "f/4.0", |
|
| 714 | + | "10/5000s", |
|
| 715 | + | "23.0mm", |
|
| 716 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 717 | + | "X-E4", |
|
| 718 | + | "FUJIFILM", |
|
| 719 | + | "400" |
|
| 720 | + | ] |
|
| 721 | + | }, |
|
| 722 | + | { |
|
| 723 | + | "slug": "bench", |
|
| 724 | + | "title": "Bench", |
|
| 725 | + | "date": "2024-10-28T09:52:23Z", |
|
| 726 | + | "image": "/posts/bench/Bench.webp", |
|
| 727 | + | "thumb": "/posts/bench/Bench-thumb.jpeg", |
|
| 728 | + | "type": "photo", |
|
| 729 | + | "camera": "X-E4", |
|
| 730 | + | "lens": "XF23mmF2 R WR", |
|
| 731 | + | "aperture": "f/2.8", |
|
| 732 | + | "exposure": "1/400s", |
|
| 733 | + | "focalLength": "23.0mm", |
|
| 734 | + | "iso": "400", |
|
| 735 | + | "make": "FUJIFILM", |
|
| 736 | + | "tags": [ |
|
| 737 | + | "f/2.8", |
|
| 738 | + | "1/400s", |
|
| 739 | + | "23.0mm", |
|
| 740 | + | "XF23mmF2 R WR", |
|
| 741 | + | "X-E4", |
|
| 742 | + | "FUJIFILM", |
|
| 743 | + | "400" |
|
| 744 | + | ] |
|
| 745 | + | }, |
|
| 746 | + | { |
|
| 747 | + | "slug": "autumn-floor", |
|
| 748 | + | "title": "Autumn Floor", |
|
| 749 | + | "date": "2024-10-28T09:42:18Z", |
|
| 750 | + | "image": "/posts/autumn-floor/Autumn Floor.webp", |
|
| 751 | + | "thumb": "/posts/autumn-floor/Autumn Floor-thumb.jpeg", |
|
| 752 | + | "type": "photo", |
|
| 753 | + | "camera": "X-E4", |
|
| 754 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 755 | + | "aperture": "f/2.8", |
|
| 756 | + | "exposure": "10/5000s", |
|
| 757 | + | "focalLength": "23.0mm", |
|
| 758 | + | "iso": "400", |
|
| 759 | + | "make": "FUJIFILM", |
|
| 760 | + | "tags": [ |
|
| 761 | + | "400", |
|
| 762 | + | "f/2.8", |
|
| 763 | + | "10/5000s", |
|
| 764 | + | "23.0mm", |
|
| 765 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 766 | + | "X-E4", |
|
| 767 | + | "FUJIFILM" |
|
| 768 | + | ] |
|
| 769 | + | }, |
|
| 770 | + | { |
|
| 771 | + | "slug": "bend", |
|
| 772 | + | "title": "Bend", |
|
| 773 | + | "date": "2024-10-28T09:35:43Z", |
|
| 774 | + | "image": "/posts/bend/Bend.webp", |
|
| 775 | + | "thumb": "/posts/bend/Bend-thumb.jpeg", |
|
| 776 | + | "type": "photo", |
|
| 777 | + | "camera": "X-E4", |
|
| 778 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 779 | + | "aperture": "f/2.8", |
|
| 780 | + | "exposure": "10/5000s", |
|
| 781 | + | "focalLength": "23.0mm", |
|
| 782 | + | "iso": "400", |
|
| 783 | + | "make": "FUJIFILM", |
|
| 784 | + | "tags": [ |
|
| 785 | + | "400", |
|
| 786 | + | "f/2.8", |
|
| 787 | + | "10/5000s", |
|
| 788 | + | "23.0mm", |
|
| 789 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 790 | + | "X-E4", |
|
| 791 | + | "FUJIFILM" |
|
| 792 | + | ] |
|
| 793 | + | }, |
|
| 794 | + | { |
|
| 795 | + | "slug": "dcw", |
|
| 796 | + | "title": "Dcw", |
|
| 797 | + | "date": "2024-10-27T17:25:54Z", |
|
| 798 | + | "image": "/posts/dcw/DCW.webp", |
|
| 799 | + | "thumb": "/posts/dcw/DCW-thumb.jpeg", |
|
| 800 | + | "type": "photo", |
|
| 801 | + | "camera": "X-E4", |
|
| 802 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 803 | + | "aperture": "f/2.8", |
|
| 804 | + | "exposure": "10/5000s", |
|
| 805 | + | "focalLength": "23.0mm", |
|
| 806 | + | "iso": "500", |
|
| 807 | + | "make": "FUJIFILM", |
|
| 808 | + | "tags": [ |
|
| 809 | + | "23.0mm", |
|
| 810 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 811 | + | "X-E4", |
|
| 812 | + | "FUJIFILM", |
|
| 813 | + | "500", |
|
| 814 | + | "f/2.8", |
|
| 815 | + | "10/5000s" |
|
| 816 | + | ] |
|
| 817 | + | }, |
|
| 818 | + | { |
|
| 819 | + | "slug": "follow-the-leader", |
|
| 820 | + | "title": "Follow The Leader", |
|
| 821 | + | "date": "2024-10-26T10:12:33Z", |
|
| 822 | + | "image": "/posts/follow-the-leader/Follow the Leader.webp", |
|
| 823 | + | "thumb": "/posts/follow-the-leader/Follow the Leader-thumb.jpeg", |
|
| 824 | + | "type": "photo", |
|
| 825 | + | "camera": "X-E4", |
|
| 826 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 827 | + | "aperture": "f/4.0", |
|
| 828 | + | "exposure": "10/4000s", |
|
| 829 | + | "focalLength": "23.0mm", |
|
| 830 | + | "iso": "500", |
|
| 831 | + | "make": "FUJIFILM", |
|
| 832 | + | "tags": [ |
|
| 833 | + | "f/4.0", |
|
| 834 | + | "10/4000s", |
|
| 835 | + | "23.0mm", |
|
| 836 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 837 | + | "X-E4", |
|
| 838 | + | "FUJIFILM", |
|
| 839 | + | "500" |
|
| 840 | + | ] |
|
| 841 | + | }, |
|
| 842 | + | { |
|
| 843 | + | "slug": "welcome-to-pottsfield", |
|
| 844 | + | "title": "Welcome To Pottsfield", |
|
| 845 | + | "date": "2024-10-19T17:17:07Z", |
|
| 846 | + | "image": "/posts/welcome-to-pottsfield/Welcome to Pottsfield .webp", |
|
| 847 | + | "thumb": "/posts/welcome-to-pottsfield/Welcome to Pottsfield -thumb.jpeg", |
|
| 848 | + | "type": "photo", |
|
| 849 | + | "camera": "X-E4", |
|
| 850 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 851 | + | "aperture": "f/2.5", |
|
| 852 | + | "exposure": "10/6400s", |
|
| 853 | + | "focalLength": "23.0mm", |
|
| 854 | + | "iso": "800", |
|
| 855 | + | "make": "FUJIFILM", |
|
| 856 | + | "tags": [ |
|
| 857 | + | "10/6400s", |
|
| 858 | + | "23.0mm", |
|
| 859 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 860 | + | "X-E4", |
|
| 861 | + | "FUJIFILM", |
|
| 862 | + | "800", |
|
| 863 | + | "f/2.5" |
|
| 864 | + | ] |
|
| 865 | + | }, |
|
| 866 | + | { |
|
| 867 | + | "slug": "the-park", |
|
| 868 | + | "title": "The Park", |
|
| 869 | + | "date": "2024-10-19T10:38:01Z", |
|
| 870 | + | "image": "/posts/the-park/The Park.webp", |
|
| 871 | + | "thumb": "/posts/the-park/The Park-thumb.jpeg", |
|
| 872 | + | "type": "photo", |
|
| 873 | + | "camera": "X-E4", |
|
| 874 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 875 | + | "aperture": "f/2.2", |
|
| 876 | + | "exposure": "10/8000s", |
|
| 877 | + | "focalLength": "23.0mm", |
|
| 878 | + | "iso": "800", |
|
| 879 | + | "make": "FUJIFILM", |
|
| 880 | + | "tags": [ |
|
| 881 | + | "FUJIFILM", |
|
| 882 | + | "800", |
|
| 883 | + | "f/2.2", |
|
| 884 | + | "10/8000s", |
|
| 885 | + | "23.0mm", |
|
| 886 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 887 | + | "X-E4" |
|
| 888 | + | ] |
|
| 889 | + | }, |
|
| 890 | + | { |
|
| 891 | + | "slug": "zinnia", |
|
| 892 | + | "title": "Zinnia", |
|
| 893 | + | "date": "2024-10-12T10:40:18Z", |
|
| 894 | + | "image": "/posts/zinnia/Zinnia.webp", |
|
| 895 | + | "thumb": "/posts/zinnia/Zinnia-thumb.jpeg", |
|
| 896 | + | "type": "photo", |
|
| 897 | + | "camera": "X-E4", |
|
| 898 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 899 | + | "aperture": "f/5.6", |
|
| 900 | + | "exposure": "10/20000s", |
|
| 901 | + | "focalLength": "23.0mm", |
|
| 902 | + | "iso": "400", |
|
| 903 | + | "make": "FUJIFILM", |
|
| 904 | + | "tags": [ |
|
| 905 | + | "400", |
|
| 906 | + | "f/5.6", |
|
| 907 | + | "10/20000s", |
|
| 908 | + | "23.0mm", |
|
| 909 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 910 | + | "X-E4", |
|
| 911 | + | "FUJIFILM" |
|
| 912 | + | ] |
|
| 913 | + | }, |
|
| 914 | + | { |
|
| 915 | + | "slug": "edge-of-the-mountain", |
|
| 916 | + | "title": "Edge Of The Mountain", |
|
| 917 | + | "date": "2024-10-12T10:14:21Z", |
|
| 918 | + | "image": "/posts/edge-of-the-mountain/Edge of the Mountain.webp", |
|
| 919 | + | "thumb": "/posts/edge-of-the-mountain/Edge of the Mountain-thumb.jpeg", |
|
| 920 | + | "type": "photo", |
|
| 921 | + | "camera": "X-E4", |
|
| 922 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 923 | + | "aperture": "f/5.6", |
|
| 924 | + | "exposure": "10/40000s", |
|
| 925 | + | "focalLength": "23.0mm", |
|
| 926 | + | "iso": "400", |
|
| 927 | + | "make": "FUJIFILM", |
|
| 928 | + | "tags": [ |
|
| 929 | + | "400", |
|
| 930 | + | "f/5.6", |
|
| 931 | + | "10/40000s", |
|
| 932 | + | "23.0mm", |
|
| 933 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 934 | + | "X-E4", |
|
| 935 | + | "FUJIFILM" |
|
| 936 | + | ] |
|
| 937 | + | }, |
|
| 938 | + | { |
|
| 939 | + | "slug": "old-love", |
|
| 940 | + | "title": "Old Love", |
|
| 941 | + | "date": "2024-09-29T17:08:57Z", |
|
| 942 | + | "image": "/posts/old-love/Old Love.webp", |
|
| 943 | + | "thumb": "/posts/old-love/Old Love-thumb.jpeg", |
|
| 944 | + | "type": "photo", |
|
| 945 | + | "camera": "X-E4", |
|
| 946 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 947 | + | "aperture": "f/2.8", |
|
| 948 | + | "exposure": "10/1800s", |
|
| 949 | + | "focalLength": "23.0mm", |
|
| 950 | + | "iso": "800", |
|
| 951 | + | "make": "FUJIFILM", |
|
| 952 | + | "tags": [ |
|
| 953 | + | "FUJIFILM", |
|
| 954 | + | "800", |
|
| 955 | + | "f/2.8", |
|
| 956 | + | "10/1800s", |
|
| 957 | + | "23.0mm", |
|
| 958 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 959 | + | "X-E4" |
|
| 960 | + | ] |
|
| 961 | + | }, |
|
| 962 | + | { |
|
| 963 | + | "slug": "vaer", |
|
| 964 | + | "title": "Vaer", |
|
| 965 | + | "date": "2024-09-29T16:04:17Z", |
|
| 966 | + | "image": "/posts/vaer/VAER.webp", |
|
| 967 | + | "thumb": "/posts/vaer/VAER-thumb.jpeg", |
|
| 968 | + | "type": "photo", |
|
| 969 | + | "camera": "X-E4", |
|
| 970 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 971 | + | "aperture": "f/2.8", |
|
| 972 | + | "exposure": "10/3200s", |
|
| 973 | + | "focalLength": "23.0mm", |
|
| 974 | + | "iso": "800", |
|
| 975 | + | "make": "FUJIFILM", |
|
| 976 | + | "tags": [ |
|
| 977 | + | "f/2.8", |
|
| 978 | + | "10/3200s", |
|
| 979 | + | "23.0mm", |
|
| 980 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 981 | + | "X-E4", |
|
| 982 | + | "FUJIFILM", |
|
| 983 | + | "800" |
|
| 984 | + | ] |
|
| 985 | + | }, |
|
| 986 | + | { |
|
| 987 | + | "slug": "brothers", |
|
| 988 | + | "title": "Brothers", |
|
| 989 | + | "date": "2024-09-29T15:39:43Z", |
|
| 990 | + | "image": "/posts/brothers/Brothers.webp", |
|
| 991 | + | "thumb": "/posts/brothers/Brothers-thumb.jpeg", |
|
| 992 | + | "type": "photo", |
|
| 993 | + | "camera": "X-E4", |
|
| 994 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 995 | + | "aperture": "f/2.8", |
|
| 996 | + | "exposure": "10/2500s", |
|
| 997 | + | "focalLength": "23.0mm", |
|
| 998 | + | "iso": "800", |
|
| 999 | + | "make": "FUJIFILM", |
|
| 1000 | + | "tags": [ |
|
| 1001 | + | "FUJIFILM", |
|
| 1002 | + | "800", |
|
| 1003 | + | "f/2.8", |
|
| 1004 | + | "10/2500s", |
|
| 1005 | + | "23.0mm", |
|
| 1006 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1007 | + | "X-E4" |
|
| 1008 | + | ] |
|
| 1009 | + | }, |
|
| 1010 | + | { |
|
| 1011 | + | "slug": "summer-breeze", |
|
| 1012 | + | "title": "Summer Breeze", |
|
| 1013 | + | "date": "2024-08-02T23:01:28Z", |
|
| 1014 | + | "image": "/posts/summer-breeze/Summer Breeze.webp", |
|
| 1015 | + | "thumb": "/posts/summer-breeze/Summer Breeze-thumb.jpeg", |
|
| 1016 | + | "type": "photo", |
|
| 1017 | + | "camera": "Canon EOS 6D", |
|
| 1018 | + | "lens": "35mm F1.4 DG HSM | Art 012", |
|
| 1019 | + | "aperture": "f/2.8", |
|
| 1020 | + | "exposure": "1/1250s", |
|
| 1021 | + | "focalLength": "35.0mm", |
|
| 1022 | + | "iso": "640", |
|
| 1023 | + | "make": null, |
|
| 1024 | + | "tags": [ |
|
| 1025 | + | "Canon EOS 6D", |
|
| 1026 | + | "Canon", |
|
| 1027 | + | "640", |
|
| 1028 | + | "f/2.8", |
|
| 1029 | + | "1/1250s", |
|
| 1030 | + | "35.0mm", |
|
| 1031 | + | "35mm F1.4 DG HSM | Art 012" |
|
| 1032 | + | ] |
|
| 1033 | + | }, |
|
| 1034 | + | { |
|
| 1035 | + | "slug": "olive", |
|
| 1036 | + | "title": "Olive", |
|
| 1037 | + | "date": "2024-08-02T23:01:16Z", |
|
| 1038 | + | "image": "/posts/olive/Olive.webp", |
|
| 1039 | + | "thumb": "/posts/olive/Olive-thumb.jpeg", |
|
| 1040 | + | "type": "photo", |
|
| 1041 | + | "camera": "Canon EOS 6D", |
|
| 1042 | + | "lens": "35mm F1.4 DG HSM | Art 012", |
|
| 1043 | + | "aperture": "f/2.8", |
|
| 1044 | + | "exposure": "1/1600s", |
|
| 1045 | + | "focalLength": "35.0mm", |
|
| 1046 | + | "iso": "640", |
|
| 1047 | + | "make": null, |
|
| 1048 | + | "tags": [ |
|
| 1049 | + | "35mm F1.4 DG HSM | Art 012", |
|
| 1050 | + | "Canon EOS 6D", |
|
| 1051 | + | "Canon", |
|
| 1052 | + | "640", |
|
| 1053 | + | "f/2.8", |
|
| 1054 | + | "1/1600s", |
|
| 1055 | + | "35.0mm" |
|
| 1056 | + | ] |
|
| 1057 | + | }, |
|
| 1058 | + | { |
|
| 1059 | + | "slug": "field-horses", |
|
| 1060 | + | "title": "Field Horses", |
|
| 1061 | + | "date": "2024-05-13T17:51:15Z", |
|
| 1062 | + | "image": "/posts/field-horses/Field Horses.webp", |
|
| 1063 | + | "thumb": "/posts/field-horses/Field Horses-thumb.jpeg", |
|
| 1064 | + | "type": "photo", |
|
| 1065 | + | "camera": "Canon EOS 6D", |
|
| 1066 | + | "lens": "EF40mm f/2.8 STM", |
|
| 1067 | + | "aperture": "f/4.0", |
|
| 1068 | + | "exposure": "1/1600s", |
|
| 1069 | + | "focalLength": "40.0mm", |
|
| 1070 | + | "iso": "640", |
|
| 1071 | + | "make": null, |
|
| 1072 | + | "tags": [ |
|
| 1073 | + | "Canon EOS 6D", |
|
| 1074 | + | "Canon", |
|
| 1075 | + | "640", |
|
| 1076 | + | "f/4.0", |
|
| 1077 | + | "1/1600s", |
|
| 1078 | + | "40.0mm", |
|
| 1079 | + | "EF40mm f/2.8 STM" |
|
| 1080 | + | ] |
|
| 1081 | + | }, |
|
| 1082 | + | { |
|
| 1083 | + | "slug": "mountain-roads", |
|
| 1084 | + | "title": "Mountain Roads", |
|
| 1085 | + | "date": "2024-05-13T17:50:42Z", |
|
| 1086 | + | "image": "/posts/mountain-roads/Mountain Roads.webp", |
|
| 1087 | + | "thumb": "/posts/mountain-roads/Mountain Roads-thumb.jpeg", |
|
| 1088 | + | "type": "photo", |
|
| 1089 | + | "camera": "Canon EOS 6D", |
|
| 1090 | + | "lens": "EF40mm f/2.8 STM", |
|
| 1091 | + | "aperture": "f/2.8", |
|
| 1092 | + | "exposure": "1/400s", |
|
| 1093 | + | "focalLength": "40.0mm", |
|
| 1094 | + | "iso": "640", |
|
| 1095 | + | "make": null, |
|
| 1096 | + | "tags": [ |
|
| 1097 | + | "Canon EOS 6D", |
|
| 1098 | + | "Canon", |
|
| 1099 | + | "640", |
|
| 1100 | + | "f/2.8", |
|
| 1101 | + | "1/400s", |
|
| 1102 | + | "40.0mm", |
|
| 1103 | + | "EF40mm f/2.8 STM" |
|
| 1104 | + | ] |
|
| 1105 | + | }, |
|
| 1106 | + | { |
|
| 1107 | + | "slug": "river-sticks", |
|
| 1108 | + | "title": "River Sticks", |
|
| 1109 | + | "date": "2024-05-11T22:39:11Z", |
|
| 1110 | + | "image": "/posts/river-sticks/River Sticks.webp", |
|
| 1111 | + | "thumb": "/posts/river-sticks/River Sticks-thumb.jpeg", |
|
| 1112 | + | "type": "photo", |
|
| 1113 | + | "camera": "Canon EOS 6D", |
|
| 1114 | + | "lens": "EF40mm f/2.8 STM", |
|
| 1115 | + | "aperture": "f/2.8", |
|
| 1116 | + | "exposure": "1/1000s", |
|
| 1117 | + | "focalLength": "40.0mm", |
|
| 1118 | + | "iso": "800", |
|
| 1119 | + | "make": null, |
|
| 1120 | + | "tags": [ |
|
| 1121 | + | "800", |
|
| 1122 | + | "f/2.8", |
|
| 1123 | + | "1/1000s", |
|
| 1124 | + | "40.0mm", |
|
| 1125 | + | "EF40mm f/2.8 STM", |
|
| 1126 | + | "Canon EOS 6D", |
|
| 1127 | + | "Canon" |
|
| 1128 | + | ] |
|
| 1129 | + | }, |
|
| 1130 | + | { |
|
| 1131 | + | "slug": "young-wanderer", |
|
| 1132 | + | "title": "Young Wanderer", |
|
| 1133 | + | "date": "2024-05-11T22:39:07Z", |
|
| 1134 | + | "image": "/posts/young-wanderer/Young Wanderer.webp", |
|
| 1135 | + | "thumb": "/posts/young-wanderer/Young Wanderer-thumb.jpeg", |
|
| 1136 | + | "type": "photo", |
|
| 1137 | + | "camera": "Canon EOS 6D", |
|
| 1138 | + | "lens": "EF40mm f/2.8 STM", |
|
| 1139 | + | "aperture": "f/2.8", |
|
| 1140 | + | "exposure": "1/400s", |
|
| 1141 | + | "focalLength": "40.0mm", |
|
| 1142 | + | "iso": "800", |
|
| 1143 | + | "make": null, |
|
| 1144 | + | "tags": [ |
|
| 1145 | + | "40.0mm", |
|
| 1146 | + | "EF40mm f/2.8 STM", |
|
| 1147 | + | "Canon EOS 6D", |
|
| 1148 | + | "Canon", |
|
| 1149 | + | "800", |
|
| 1150 | + | "f/2.8", |
|
| 1151 | + | "1/400s" |
|
| 1152 | + | ] |
|
| 1153 | + | }, |
|
| 1154 | + | { |
|
| 1155 | + | "slug": "home", |
|
| 1156 | + | "title": "Home", |
|
| 1157 | + | "date": "2024-04-27T17:30:52Z", |
|
| 1158 | + | "image": "/posts/home/Home.webp", |
|
| 1159 | + | "thumb": "/posts/home/Home-thumb.jpeg", |
|
| 1160 | + | "type": "photo", |
|
| 1161 | + | "camera": "X-E4", |
|
| 1162 | + | "lens": "XF23mmF2 R WR", |
|
| 1163 | + | "aperture": "f/5.6", |
|
| 1164 | + | "exposure": "1/4000s", |
|
| 1165 | + | "focalLength": "23.0mm", |
|
| 1166 | + | "iso": "640", |
|
| 1167 | + | "make": "FUJIFILM", |
|
| 1168 | + | "tags": [ |
|
| 1169 | + | "XF23mmF2 R WR", |
|
| 1170 | + | "X-E4", |
|
| 1171 | + | "FUJIFILM", |
|
| 1172 | + | "640", |
|
| 1173 | + | "f/5.6", |
|
| 1174 | + | "1/4000s", |
|
| 1175 | + | "23.0mm" |
|
| 1176 | + | ] |
|
| 1177 | + | }, |
|
| 1178 | + | { |
|
| 1179 | + | "slug": "picket-fence", |
|
| 1180 | + | "title": "Picket Fence", |
|
| 1181 | + | "date": "2024-04-22T17:33:36Z", |
|
| 1182 | + | "image": "/posts/picket-fence/Picket Fence.webp", |
|
| 1183 | + | "thumb": "/posts/picket-fence/Picket Fence-thumb.jpeg", |
|
| 1184 | + | "type": "photo", |
|
| 1185 | + | "camera": "X-E4", |
|
| 1186 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1187 | + | "aperture": "f/4.0", |
|
| 1188 | + | "exposure": "10/32000s", |
|
| 1189 | + | "focalLength": "23.0mm", |
|
| 1190 | + | "iso": "640", |
|
| 1191 | + | "make": "FUJIFILM", |
|
| 1192 | + | "tags": [ |
|
| 1193 | + | "FUJIFILM", |
|
| 1194 | + | "640", |
|
| 1195 | + | "f/4.0", |
|
| 1196 | + | "10/32000s", |
|
| 1197 | + | "23.0mm", |
|
| 1198 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1199 | + | "X-E4" |
|
| 1200 | + | ] |
|
| 1201 | + | }, |
|
| 1202 | + | { |
|
| 1203 | + | "slug": "mountain-flowers", |
|
| 1204 | + | "title": "Mountain Flowers", |
|
| 1205 | + | "date": "2024-04-20T12:44:12Z", |
|
| 1206 | + | "image": "/posts/mountain-flowers/Mountain Flowers.webp", |
|
| 1207 | + | "thumb": "/posts/mountain-flowers/Mountain Flowers-thumb.jpeg", |
|
| 1208 | + | "type": "photo", |
|
| 1209 | + | "camera": "X-E4", |
|
| 1210 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1211 | + | "aperture": "f/4.0", |
|
| 1212 | + | "exposure": "10/5000s", |
|
| 1213 | + | "focalLength": "23.0mm", |
|
| 1214 | + | "iso": "800", |
|
| 1215 | + | "make": "FUJIFILM", |
|
| 1216 | + | "tags": [ |
|
| 1217 | + | "23.0mm", |
|
| 1218 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1219 | + | "X-E4", |
|
| 1220 | + | "FUJIFILM", |
|
| 1221 | + | "800", |
|
| 1222 | + | "f/4.0", |
|
| 1223 | + | "10/5000s" |
|
| 1224 | + | ] |
|
| 1225 | + | }, |
|
| 1226 | + | { |
|
| 1227 | + | "slug": "snakes", |
|
| 1228 | + | "title": "Snakes", |
|
| 1229 | + | "date": "2024-04-20T12:11:31Z", |
|
| 1230 | + | "image": "/posts/snakes/Snakes.webp", |
|
| 1231 | + | "thumb": "/posts/snakes/Snakes-thumb.jpeg", |
|
| 1232 | + | "type": "photo", |
|
| 1233 | + | "camera": "X-E4", |
|
| 1234 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1235 | + | "aperture": "f/2.8", |
|
| 1236 | + | "exposure": "10/1250s", |
|
| 1237 | + | "focalLength": "23.0mm", |
|
| 1238 | + | "iso": "800", |
|
| 1239 | + | "make": "FUJIFILM", |
|
| 1240 | + | "tags": [ |
|
| 1241 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1242 | + | "X-E4", |
|
| 1243 | + | "FUJIFILM", |
|
| 1244 | + | "800", |
|
| 1245 | + | "f/2.8", |
|
| 1246 | + | "10/1250s", |
|
| 1247 | + | "23.0mm" |
|
| 1248 | + | ] |
|
| 1249 | + | }, |
|
| 1250 | + | { |
|
| 1251 | + | "slug": "hill-on-a-mountain", |
|
| 1252 | + | "title": "Hill On A Mountain", |
|
| 1253 | + | "date": "2024-04-13T09:40:37Z", |
|
| 1254 | + | "image": "/posts/hill-on-a-mountain/Hill on a Mountain.webp", |
|
| 1255 | + | "thumb": "/posts/hill-on-a-mountain/Hill on a Mountain-thumb.jpeg", |
|
| 1256 | + | "type": "photo", |
|
| 1257 | + | "camera": "X-E4", |
|
| 1258 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1259 | + | "aperture": "f/4.0", |
|
| 1260 | + | "exposure": "10/25000s", |
|
| 1261 | + | "focalLength": "23.0mm", |
|
| 1262 | + | "iso": "400", |
|
| 1263 | + | "make": "FUJIFILM", |
|
| 1264 | + | "tags": [ |
|
| 1265 | + | "10/25000s", |
|
| 1266 | + | "23.0mm", |
|
| 1267 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1268 | + | "X-E4", |
|
| 1269 | + | "FUJIFILM", |
|
| 1270 | + | "400", |
|
| 1271 | + | "f/4.0" |
|
| 1272 | + | ] |
|
| 1273 | + | }, |
|
| 1274 | + | { |
|
| 1275 | + | "slug": "the-valley", |
|
| 1276 | + | "title": "The Valley", |
|
| 1277 | + | "date": "2024-03-23T12:41:42Z", |
|
| 1278 | + | "image": "/posts/the-valley/The Valley.webp", |
|
| 1279 | + | "thumb": "/posts/the-valley/The Valley-thumb.jpeg", |
|
| 1280 | + | "type": "photo", |
|
| 1281 | + | "camera": "X-E4", |
|
| 1282 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1283 | + | "aperture": "f/8.0", |
|
| 1284 | + | "exposure": "10/12500s", |
|
| 1285 | + | "focalLength": "23.0mm", |
|
| 1286 | + | "iso": "400", |
|
| 1287 | + | "make": "FUJIFILM", |
|
| 1288 | + | "tags": [ |
|
| 1289 | + | "10/12500s", |
|
| 1290 | + | "23.0mm", |
|
| 1291 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1292 | + | "X-E4", |
|
| 1293 | + | "FUJIFILM", |
|
| 1294 | + | "400", |
|
| 1295 | + | "f/8.0" |
|
| 1296 | + | ] |
|
| 1297 | + | }, |
|
| 1298 | + | { |
|
| 1299 | + | "slug": "above-the-valley", |
|
| 1300 | + | "title": "Above The Valley", |
|
| 1301 | + | "date": "2024-03-23T12:29:00Z", |
|
| 1302 | + | "image": "/posts/above-the-valley/Above the Valley.webp", |
|
| 1303 | + | "thumb": "/posts/above-the-valley/Above the Valley-thumb.jpeg", |
|
| 1304 | + | "type": "photo", |
|
| 1305 | + | "camera": "X-E4", |
|
| 1306 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1307 | + | "aperture": "f/4.0", |
|
| 1308 | + | "exposure": "10/25000s", |
|
| 1309 | + | "focalLength": "23.0mm", |
|
| 1310 | + | "iso": "400", |
|
| 1311 | + | "make": "FUJIFILM", |
|
| 1312 | + | "tags": [ |
|
| 1313 | + | "23.0mm", |
|
| 1314 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1315 | + | "X-E4", |
|
| 1316 | + | "FUJIFILM", |
|
| 1317 | + | "400", |
|
| 1318 | + | "f/4.0", |
|
| 1319 | + | "10/25000s" |
|
| 1320 | + | ] |
|
| 1321 | + | }, |
|
| 1322 | + | { |
|
| 1323 | + | "slug": "green-space", |
|
| 1324 | + | "title": "Green Space", |
|
| 1325 | + | "date": "2024-03-20T17:24:05Z", |
|
| 1326 | + | "image": "/posts/green-space/Green Space.webp", |
|
| 1327 | + | "thumb": "/posts/green-space/Green Space-thumb.jpeg", |
|
| 1328 | + | "type": "photo", |
|
| 1329 | + | "camera": "X-E4", |
|
| 1330 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1331 | + | "aperture": "f/4.0", |
|
| 1332 | + | "exposure": "10/12500s", |
|
| 1333 | + | "focalLength": "23.0mm", |
|
| 1334 | + | "iso": "320", |
|
| 1335 | + | "make": "FUJIFILM", |
|
| 1336 | + | "tags": [ |
|
| 1337 | + | "23.0mm", |
|
| 1338 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1339 | + | "X-E4", |
|
| 1340 | + | "FUJIFILM", |
|
| 1341 | + | "320", |
|
| 1342 | + | "f/4.0", |
|
| 1343 | + | "10/12500s" |
|
| 1344 | + | ] |
|
| 1345 | + | }, |
|
| 1346 | + | { |
|
| 1347 | + | "slug": "nordic", |
|
| 1348 | + | "title": "Nordic", |
|
| 1349 | + | "date": "2024-03-20T17:22:22Z", |
|
| 1350 | + | "image": "/posts/nordic/Nordic.webp", |
|
| 1351 | + | "thumb": "/posts/nordic/Nordic-thumb.jpeg", |
|
| 1352 | + | "type": "photo", |
|
| 1353 | + | "camera": "X-E4", |
|
| 1354 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1355 | + | "aperture": "f/4.0", |
|
| 1356 | + | "exposure": "10/8000s", |
|
| 1357 | + | "focalLength": "23.0mm", |
|
| 1358 | + | "iso": "320", |
|
| 1359 | + | "make": "FUJIFILM", |
|
| 1360 | + | "tags": [ |
|
| 1361 | + | "10/8000s", |
|
| 1362 | + | "23.0mm", |
|
| 1363 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1364 | + | "X-E4", |
|
| 1365 | + | "FUJIFILM", |
|
| 1366 | + | "320", |
|
| 1367 | + | "f/4.0" |
|
| 1368 | + | ] |
|
| 1369 | + | }, |
|
| 1370 | + | { |
|
| 1371 | + | "slug": "mountain-queen", |
|
| 1372 | + | "title": "Mountain Queen", |
|
| 1373 | + | "date": "2024-03-16T10:47:50Z", |
|
| 1374 | + | "image": "/posts/mountain-queen/Mountain Queen.webp", |
|
| 1375 | + | "thumb": "/posts/mountain-queen/Mountain Queen-thumb.jpeg", |
|
| 1376 | + | "type": "photo", |
|
| 1377 | + | "camera": "X-E4", |
|
| 1378 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1379 | + | "aperture": "f/4.5", |
|
| 1380 | + | "exposure": "10/16000s", |
|
| 1381 | + | "focalLength": "23.0mm", |
|
| 1382 | + | "iso": "640", |
|
| 1383 | + | "make": "FUJIFILM", |
|
| 1384 | + | "tags": [ |
|
| 1385 | + | "640", |
|
| 1386 | + | "f/4.5", |
|
| 1387 | + | "10/16000s", |
|
| 1388 | + | "23.0mm", |
|
| 1389 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1390 | + | "X-E4", |
|
| 1391 | + | "FUJIFILM" |
|
| 1392 | + | ] |
|
| 1393 | + | }, |
|
| 1394 | + | { |
|
| 1395 | + | "slug": "spring", |
|
| 1396 | + | "title": "Spring", |
|
| 1397 | + | "date": "2024-03-10T17:43:19Z", |
|
| 1398 | + | "image": "/posts/spring/Spring.webp", |
|
| 1399 | + | "thumb": "/posts/spring/Spring-thumb.jpeg", |
|
| 1400 | + | "type": "photo", |
|
| 1401 | + | "camera": "X-E4", |
|
| 1402 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1403 | + | "aperture": "f/4.0", |
|
| 1404 | + | "exposure": "10/25000s", |
|
| 1405 | + | "focalLength": "23.0mm", |
|
| 1406 | + | "iso": "640", |
|
| 1407 | + | "make": "FUJIFILM", |
|
| 1408 | + | "tags": [ |
|
| 1409 | + | "X-E4", |
|
| 1410 | + | "FUJIFILM", |
|
| 1411 | + | "640", |
|
| 1412 | + | "f/4.0", |
|
| 1413 | + | "10/25000s", |
|
| 1414 | + | "23.0mm", |
|
| 1415 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0" |
|
| 1416 | + | ] |
|
| 1417 | + | }, |
|
| 1418 | + | { |
|
| 1419 | + | "slug": "rockets", |
|
| 1420 | + | "title": "Rockets", |
|
| 1421 | + | "date": "2023-11-23T15:22:17Z", |
|
| 1422 | + | "image": "/posts/rockets/Rockets.webp", |
|
| 1423 | + | "thumb": "/posts/rockets/Rockets-thumb.jpeg", |
|
| 1424 | + | "type": "photo", |
|
| 1425 | + | "camera": "X-E4", |
|
| 1426 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1427 | + | "aperture": "f/3.6", |
|
| 1428 | + | "exposure": "10/5000s", |
|
| 1429 | + | "focalLength": "23.0mm", |
|
| 1430 | + | "iso": "400", |
|
| 1431 | + | "make": "FUJIFILM", |
|
| 1432 | + | "tags": [ |
|
| 1433 | + | "10/5000s", |
|
| 1434 | + | "23.0mm", |
|
| 1435 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1436 | + | "X-E4", |
|
| 1437 | + | "FUJIFILM", |
|
| 1438 | + | "400", |
|
| 1439 | + | "f/3.6" |
|
| 1440 | + | ] |
|
| 1441 | + | }, |
|
| 1442 | + | { |
|
| 1443 | + | "slug": "three-ships", |
|
| 1444 | + | "title": "Three Ships", |
|
| 1445 | + | "date": "2023-11-23T08:00:17Z", |
|
| 1446 | + | "image": "/posts/three-ships/Three Ships.webp", |
|
| 1447 | + | "thumb": "/posts/three-ships/Three Ships-thumb.jpeg", |
|
| 1448 | + | "type": "photo", |
|
| 1449 | + | "camera": "X-E4", |
|
| 1450 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1451 | + | "aperture": "f/4.0", |
|
| 1452 | + | "exposure": "10/25000s", |
|
| 1453 | + | "focalLength": "23.0mm", |
|
| 1454 | + | "iso": "640", |
|
| 1455 | + | "make": "FUJIFILM", |
|
| 1456 | + | "tags": [ |
|
| 1457 | + | "f/4.0", |
|
| 1458 | + | "10/25000s", |
|
| 1459 | + | "23.0mm", |
|
| 1460 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1461 | + | "X-E4", |
|
| 1462 | + | "FUJIFILM", |
|
| 1463 | + | "640" |
|
| 1464 | + | ] |
|
| 1465 | + | }, |
|
| 1466 | + | { |
|
| 1467 | + | "slug": "autumn-trail", |
|
| 1468 | + | "title": "Autumn Trail", |
|
| 1469 | + | "date": "2023-10-28T09:14:17Z", |
|
| 1470 | + | "image": "/posts/autumn-trail/Autumn Trail.webp", |
|
| 1471 | + | "thumb": "/posts/autumn-trail/Autumn Trail-thumb.jpeg", |
|
| 1472 | + | "type": "photo", |
|
| 1473 | + | "camera": "X-E4", |
|
| 1474 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1475 | + | "aperture": "f/4.0", |
|
| 1476 | + | "exposure": "10/4000s", |
|
| 1477 | + | "focalLength": "23.0mm", |
|
| 1478 | + | "iso": "640", |
|
| 1479 | + | "make": "FUJIFILM", |
|
| 1480 | + | "tags": [ |
|
| 1481 | + | "f/4.0", |
|
| 1482 | + | "10/4000s", |
|
| 1483 | + | "23.0mm", |
|
| 1484 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1485 | + | "X-E4", |
|
| 1486 | + | "FUJIFILM", |
|
| 1487 | + | "640" |
|
| 1488 | + | ] |
|
| 1489 | + | }, |
|
| 1490 | + | { |
|
| 1491 | + | "slug": "julia", |
|
| 1492 | + | "title": "Julia", |
|
| 1493 | + | "date": "2023-10-28T09:07:50Z", |
|
| 1494 | + | "image": "/posts/julia/Julia.webp", |
|
| 1495 | + | "thumb": "/posts/julia/Julia-thumb.jpeg", |
|
| 1496 | + | "type": "photo", |
|
| 1497 | + | "camera": "X-E4", |
|
| 1498 | + | "lens": "XF23mmF2 R WR", |
|
| 1499 | + | "aperture": "f/4.0", |
|
| 1500 | + | "exposure": "1/320s", |
|
| 1501 | + | "focalLength": "23.0mm", |
|
| 1502 | + | "iso": "640", |
|
| 1503 | + | "make": "FUJIFILM", |
|
| 1504 | + | "tags": [ |
|
| 1505 | + | "23.0mm", |
|
| 1506 | + | "XF23mmF2 R WR", |
|
| 1507 | + | "X-E4", |
|
| 1508 | + | "FUJIFILM", |
|
| 1509 | + | "640", |
|
| 1510 | + | "f/4.0", |
|
| 1511 | + | "1/320s" |
|
| 1512 | + | ] |
|
| 1513 | + | }, |
|
| 1514 | + | { |
|
| 1515 | + | "slug": "shack", |
|
| 1516 | + | "title": "Shack", |
|
| 1517 | + | "date": "2023-10-28T08:49:29Z", |
|
| 1518 | + | "image": "/posts/shack/Shack.webp", |
|
| 1519 | + | "thumb": "/posts/shack/Shack-thumb.jpeg", |
|
| 1520 | + | "type": "photo", |
|
| 1521 | + | "camera": "X-E4", |
|
| 1522 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1523 | + | "aperture": "f/4.0", |
|
| 1524 | + | "exposure": "10/1250s", |
|
| 1525 | + | "focalLength": "23.0mm", |
|
| 1526 | + | "iso": "640", |
|
| 1527 | + | "make": "FUJIFILM", |
|
| 1528 | + | "tags": [ |
|
| 1529 | + | "FUJIFILM", |
|
| 1530 | + | "640", |
|
| 1531 | + | "f/4.0", |
|
| 1532 | + | "10/1250s", |
|
| 1533 | + | "23.0mm", |
|
| 1534 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1535 | + | "X-E4" |
|
| 1536 | + | ] |
|
| 1537 | + | }, |
|
| 1538 | + | { |
|
| 1539 | + | "slug": "reservoir", |
|
| 1540 | + | "title": "Reservoir", |
|
| 1541 | + | "date": "2023-10-24T16:28:34Z", |
|
| 1542 | + | "image": "/posts/reservoir/Reservoir.webp", |
|
| 1543 | + | "thumb": "/posts/reservoir/Reservoir-thumb.jpeg", |
|
| 1544 | + | "type": "photo", |
|
| 1545 | + | "camera": "X-E4", |
|
| 1546 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1547 | + | "aperture": "f/4.0", |
|
| 1548 | + | "exposure": "10/1800s", |
|
| 1549 | + | "focalLength": "23.0mm", |
|
| 1550 | + | "iso": "640", |
|
| 1551 | + | "make": "FUJIFILM", |
|
| 1552 | + | "tags": [ |
|
| 1553 | + | "10/1800s", |
|
| 1554 | + | "23.0mm", |
|
| 1555 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1556 | + | "X-E4", |
|
| 1557 | + | "FUJIFILM", |
|
| 1558 | + | "640", |
|
| 1559 | + | "f/4.0" |
|
| 1560 | + | ] |
|
| 1561 | + | }, |
|
| 1562 | + | { |
|
| 1563 | + | "slug": "gentle-hands", |
|
| 1564 | + | "title": "Gentle Hands", |
|
| 1565 | + | "date": "2023-10-15T10:22:36Z", |
|
| 1566 | + | "image": "/posts/gentle-hands/Gentle Hands.webp", |
|
| 1567 | + | "thumb": "/posts/gentle-hands/Gentle Hands-thumb.jpeg", |
|
| 1568 | + | "type": "photo", |
|
| 1569 | + | "camera": "X-E4", |
|
| 1570 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1571 | + | "aperture": "f/4.0", |
|
| 1572 | + | "exposure": "10/10000s", |
|
| 1573 | + | "focalLength": "23.0mm", |
|
| 1574 | + | "iso": "500", |
|
| 1575 | + | "make": "FUJIFILM", |
|
| 1576 | + | "tags": [ |
|
| 1577 | + | "23.0mm", |
|
| 1578 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1579 | + | "X-E4", |
|
| 1580 | + | "FUJIFILM", |
|
| 1581 | + | "500", |
|
| 1582 | + | "f/4.0", |
|
| 1583 | + | "10/10000s" |
|
| 1584 | + | ] |
|
| 1585 | + | }, |
|
| 1586 | + | { |
|
| 1587 | + | "slug": "flower-farm", |
|
| 1588 | + | "title": "Flower Farm", |
|
| 1589 | + | "date": "2023-09-30T09:57:01Z", |
|
| 1590 | + | "image": "/posts/flower-farm/Flower Farm.webp", |
|
| 1591 | + | "thumb": "/posts/flower-farm/Flower Farm-thumb.jpeg", |
|
| 1592 | + | "type": "photo", |
|
| 1593 | + | "camera": "X-E4", |
|
| 1594 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1595 | + | "aperture": "f/4.0", |
|
| 1596 | + | "exposure": "10/16000s", |
|
| 1597 | + | "focalLength": "23.0mm", |
|
| 1598 | + | "iso": "160", |
|
| 1599 | + | "make": "FUJIFILM", |
|
| 1600 | + | "tags": [ |
|
| 1601 | + | "23.0mm", |
|
| 1602 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1603 | + | "X-E4", |
|
| 1604 | + | "FUJIFILM", |
|
| 1605 | + | "160", |
|
| 1606 | + | "f/4.0", |
|
| 1607 | + | "10/16000s" |
|
| 1608 | + | ] |
|
| 1609 | + | }, |
|
| 1610 | + | { |
|
| 1611 | + | "slug": "saturn-v", |
|
| 1612 | + | "title": "Saturn V", |
|
| 1613 | + | "date": "2023-09-19T12:10:15Z", |
|
| 1614 | + | "image": "/posts/saturn-v/Saturn V.webp", |
|
| 1615 | + | "thumb": "/posts/saturn-v/Saturn V-thumb.jpeg", |
|
| 1616 | + | "type": "photo", |
|
| 1617 | + | "camera": "X-E4", |
|
| 1618 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1619 | + | "aperture": "f/4.0", |
|
| 1620 | + | "exposure": "10/40000s", |
|
| 1621 | + | "focalLength": "23.0mm", |
|
| 1622 | + | "iso": "800", |
|
| 1623 | + | "make": "FUJIFILM", |
|
| 1624 | + | "tags": [ |
|
| 1625 | + | "23.0mm", |
|
| 1626 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1627 | + | "X-E4", |
|
| 1628 | + | "FUJIFILM", |
|
| 1629 | + | "800", |
|
| 1630 | + | "f/4.0", |
|
| 1631 | + | "10/40000s" |
|
| 1632 | + | ] |
|
| 1633 | + | }, |
|
| 1634 | + | { |
|
| 1635 | + | "slug": "f5", |
|
| 1636 | + | "title": "F5", |
|
| 1637 | + | "date": "2023-09-19T10:42:33Z", |
|
| 1638 | + | "image": "/posts/f5/F5.webp", |
|
| 1639 | + | "thumb": "/posts/f5/F5-thumb.jpeg", |
|
| 1640 | + | "type": "photo", |
|
| 1641 | + | "camera": "X-E4", |
|
| 1642 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1643 | + | "aperture": "f/2.8", |
|
| 1644 | + | "exposure": "10/1250s", |
|
| 1645 | + | "focalLength": "23.0mm", |
|
| 1646 | + | "iso": "640", |
|
| 1647 | + | "make": "FUJIFILM", |
|
| 1648 | + | "tags": [ |
|
| 1649 | + | "FUJIFILM", |
|
| 1650 | + | "640", |
|
| 1651 | + | "f/2.8", |
|
| 1652 | + | "10/1250s", |
|
| 1653 | + | "23.0mm", |
|
| 1654 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1655 | + | "X-E4" |
|
| 1656 | + | ] |
|
| 1657 | + | }, |
|
| 1658 | + | { |
|
| 1659 | + | "slug": "deep-valley", |
|
| 1660 | + | "title": "Deep Valley", |
|
| 1661 | + | "date": "2023-08-12T08:59:23Z", |
|
| 1662 | + | "image": "/posts/deep-valley/Deep Valley.webp", |
|
| 1663 | + | "thumb": "/posts/deep-valley/Deep Valley-thumb.jpeg", |
|
| 1664 | + | "type": "photo", |
|
| 1665 | + | "camera": "X-E4", |
|
| 1666 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1667 | + | "aperture": "f/7.1", |
|
| 1668 | + | "exposure": "10/10000s", |
|
| 1669 | + | "focalLength": "23.0mm", |
|
| 1670 | + | "iso": "640", |
|
| 1671 | + | "make": "FUJIFILM", |
|
| 1672 | + | "tags": [ |
|
| 1673 | + | "10/10000s", |
|
| 1674 | + | "23.0mm", |
|
| 1675 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1676 | + | "X-E4", |
|
| 1677 | + | "FUJIFILM", |
|
| 1678 | + | "640", |
|
| 1679 | + | "f/7.1" |
|
| 1680 | + | ] |
|
| 1681 | + | }, |
|
| 1682 | + | { |
|
| 1683 | + | "slug": "page-turner", |
|
| 1684 | + | "title": "Page Turner", |
|
| 1685 | + | "date": "2023-08-05T13:27:56Z", |
|
| 1686 | + | "image": "/posts/page-turner/Page Turner.webp", |
|
| 1687 | + | "thumb": "/posts/page-turner/Page Turner-thumb.jpeg", |
|
| 1688 | + | "type": "photo", |
|
| 1689 | + | "camera": "X-E4", |
|
| 1690 | + | "lens": "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1691 | + | "aperture": "f/2.8", |
|
| 1692 | + | "exposure": "10/600s", |
|
| 1693 | + | "focalLength": "23.0mm", |
|
| 1694 | + | "iso": "640", |
|
| 1695 | + | "make": "FUJIFILM", |
|
| 1696 | + | "tags": [ |
|
| 1697 | + | "640", |
|
| 1698 | + | "f/2.8", |
|
| 1699 | + | "10/600s", |
|
| 1700 | + | "23.0mm", |
|
| 1701 | + | "XF23mmF2 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1702 | + | "X-E4", |
|
| 1703 | + | "FUJIFILM" |
|
| 1704 | + | ] |
|
| 1705 | + | }, |
|
| 1706 | + | { |
|
| 1707 | + | "slug": "studio", |
|
| 1708 | + | "title": "Studio", |
|
| 1709 | + | "date": "2023-06-22T09:30:14Z", |
|
| 1710 | + | "image": "/posts/studio/Studio.webp", |
|
| 1711 | + | "thumb": "/posts/studio/Studio-thumb.jpeg", |
|
| 1712 | + | "type": "photo", |
|
| 1713 | + | "camera": "X-E4", |
|
| 1714 | + | "lens": "XF23mmF2 R WR", |
|
| 1715 | + | "aperture": "f/2.8", |
|
| 1716 | + | "exposure": "1/80s", |
|
| 1717 | + | "focalLength": "23.0mm", |
|
| 1718 | + | "iso": "800", |
|
| 1719 | + | "make": "FUJIFILM", |
|
| 1720 | + | "tags": [ |
|
| 1721 | + | "f/2.8", |
|
| 1722 | + | "1/80s", |
|
| 1723 | + | "23.0mm", |
|
| 1724 | + | "XF23mmF2 R WR", |
|
| 1725 | + | "X-E4", |
|
| 1726 | + | "FUJIFILM", |
|
| 1727 | + | "800" |
|
| 1728 | + | ] |
|
| 1729 | + | }, |
|
| 1730 | + | { |
|
| 1731 | + | "slug": "train", |
|
| 1732 | + | "title": "Train", |
|
| 1733 | + | "date": "2022-09-24T16:36:10Z", |
|
| 1734 | + | "image": "/posts/train/Train.webp", |
|
| 1735 | + | "thumb": "/posts/train/Train-thumb.jpeg", |
|
| 1736 | + | "type": "photo", |
|
| 1737 | + | "camera": "X-E4", |
|
| 1738 | + | "lens": "XF27mmF2.8 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0", |
|
| 1739 | + | "aperture": "f/4.0", |
|
| 1740 | + | "exposure": "10/1000s", |
|
| 1741 | + | "focalLength": "27.0mm", |
|
| 1742 | + | "iso": "640", |
|
| 1743 | + | "make": "FUJIFILM", |
|
| 1744 | + | "tags": [ |
|
| 1745 | + | "X-E4", |
|
| 1746 | + | "FUJIFILM", |
|
| 1747 | + | "640", |
|
| 1748 | + | "f/4.0", |
|
| 1749 | + | "10/1000s", |
|
| 1750 | + | "27.0mm", |
|
| 1751 | + | "XF27mmF2.8 R WR\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0" |
|
| 1752 | + | ] |
|
| 1753 | + | } |
|
| 1754 | + | ] |
| 1 | + | // place files you want to import through the `$lib` alias in this folder. |
| 1 | + | export type ImageItem = { |
|
| 2 | + | slug: string; |
|
| 3 | + | title: string; |
|
| 4 | + | date: string; |
|
| 5 | + | image: string; |
|
| 6 | + | thumb: string; |
|
| 7 | + | type: string; |
|
| 8 | + | camera: string; |
|
| 9 | + | lens: string; |
|
| 10 | + | aperture: string; |
|
| 11 | + | exposure: string; |
|
| 12 | + | focalLength: string; |
|
| 13 | + | iso: string; |
|
| 14 | + | make: string; |
|
| 15 | + | tags: string[]; |
|
| 16 | + | }; |
|
| 17 | + | ||
| 18 | + | export type ImageArray = { |
|
| 19 | + | images: ImageItem[]; |
|
| 20 | + | }; |
| 1 | + | <script lang="ts"> |
|
| 2 | + | import "./layout.css"; |
|
| 3 | + | import favicon from "$lib/assets/favicon.svg"; |
|
| 4 | + | ||
| 5 | + | let { children } = $props(); |
|
| 6 | + | </script> |
|
| 7 | + | ||
| 8 | + | <svelte:head><link rel="icon" href={favicon} /></svelte:head> |
|
| 9 | + | <div class="bg-[#121113] min-h-screen w-full font-mono text-white"> |
|
| 10 | + | {@render children()} |
|
| 11 | + | </div> |
| 1 | + | <script lang="ts"> |
|
| 2 | + | import data from '$lib/data.json'; |
|
| 3 | + | import type { ImageItem } from '$lib/types' |
|
| 4 | + | </script> |
|
| 5 | + | ||
| 6 | + | <div class="bg-[#121113] min-h-screen text-white"> |
|
| 7 | + | <div class="fixed bg-[#121113] w-full py-4 px-8"> |
|
| 8 | + | <h1 class="text-sm">steve.photo</h1> |
|
| 9 | + | </div> |
|
| 10 | + | ||
| 11 | + | {#snippet figure(image: ImageItem)} |
|
| 12 | + | <div class="flex gap-2 px-8 pt-2"> |
|
| 13 | + | <div class="flex-2 min-w-0"> |
|
| 14 | + | <img class="max-w-full h-auto block" src={image.image} alt={image.title} /> |
|
| 15 | + | </div> |
|
| 16 | + | <div class="flex flex-col gap-1 flex-1 min-w-0 p-4"> |
|
| 17 | + | <h2 class="text-lg">{image.title.toUpperCase()}</h2> |
|
| 18 | + | <h3 class="text-sm">{image.make} {image.camera}</h3> |
|
| 19 | + | <div class="flex flex-col gap-2 text-neutral-400 font-thin text-xs mt-4"> |
|
| 20 | + | <p>{image.focalLength}</p> |
|
| 21 | + | <p>{image.aperture}</p> |
|
| 22 | + | <p>{image.exposure}</p> |
|
| 23 | + | <p>ISO {image.iso}</p> |
|
| 24 | + | <p>-</p> |
|
| 25 | + | <p class="text-neutral-700 text-xs">{new Date(image.date).toLocaleDateString()}</p> |
|
| 26 | + | </div> |
|
| 27 | + | ||
| 28 | + | </div> |
|
| 29 | + | </div> |
|
| 30 | + | {/snippet} |
|
| 31 | + | ||
| 32 | + | <div class="flex flex-col gap-2 pt-12"> |
|
| 33 | + | {#each data as image} |
|
| 34 | + | {@render figure(image)} |
|
| 35 | + | {/each} |
|
| 36 | + | </div> |
|
| 37 | + | </div> |
| 1 | + | @import 'tailwindcss'; |
|
| 2 | + | ||
| 3 | + | html { |
|
| 4 | + | @apply bg-[#121113]; |
|
| 5 | + | } |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-03-23T12:29:00Z |
|
| 3 | + | slug: above-the-valley |
|
| 4 | + | title: Above The Valley |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "400" |
|
| 11 | + | - f/4.0 |
|
| 12 | + | - 10/25000s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Above the Valley.webp |
|
| 16 | + | - Above the Valley-thumb.jpeg |
|
| 17 | + | image: Above the Valley.webp |
|
| 18 | + | thumb: Above the Valley-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/25000 |
|
| 24 | + | exposure_friendly: 10/25000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-11-29T13:49:12Z |
|
| 3 | + | slug: absolute-unit |
|
| 4 | + | title: Absolute Unit |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/4.0 |
|
| 8 | + | - 10/40000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Absolute Unit.webp |
|
| 16 | + | - Absolute Unit-thumb.jpeg |
|
| 17 | + | image: Absolute Unit.webp |
|
| 18 | + | thumb: Absolute Unit-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/40000 |
|
| 24 | + | exposure_friendly: 10/40000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-28T09:42:18Z |
|
| 3 | + | slug: autumn-floor |
|
| 4 | + | title: Autumn Floor |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/2.8 |
|
| 8 | + | - 10/5000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Autumn Floor.webp |
|
| 16 | + | - Autumn Floor-thumb.jpeg |
|
| 17 | + | image: Autumn Floor.webp |
|
| 18 | + | thumb: Autumn Floor-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/5000 |
|
| 24 | + | exposure_friendly: 10/5000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Autumn Glow |
|
| 3 | + | date: 2025-11-03T12:09:12Z |
|
| 4 | + | slug: autumn-glow |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "640" |
|
| 9 | + | - f/2.8 |
|
| 10 | + | - 1/250s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - XF23mmF2 R WR |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Autumn Glow.jpeg |
|
| 16 | + | - Autumn Glow-thumb.jpeg |
|
| 17 | + | image: Autumn Glow.jpeg |
|
| 18 | + | thumb: Autumn Glow-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/250 |
|
| 24 | + | exposure_friendly: 1/250s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-10-28T09:14:17Z |
|
| 3 | + | slug: autumn-trail |
|
| 4 | + | title: Autumn Trail |
|
| 5 | + | tags: |
|
| 6 | + | - f/4.0 |
|
| 7 | + | - 10/4000s |
|
| 8 | + | - 23.0mm |
|
| 9 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 10 | + | - X-E4 |
|
| 11 | + | - FUJIFILM |
|
| 12 | + | - "640" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Autumn Trail.webp |
|
| 16 | + | - Autumn Trail-thumb.jpeg |
|
| 17 | + | image: Autumn Trail.webp |
|
| 18 | + | thumb: Autumn Trail-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/4000 |
|
| 24 | + | exposure_friendly: 10/4000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-28T09:52:23Z |
|
| 3 | + | slug: bench |
|
| 4 | + | title: Bench |
|
| 5 | + | tags: |
|
| 6 | + | - f/2.8 |
|
| 7 | + | - 1/400s |
|
| 8 | + | - 23.0mm |
|
| 9 | + | - XF23mmF2 R WR |
|
| 10 | + | - X-E4 |
|
| 11 | + | - FUJIFILM |
|
| 12 | + | - "400" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Bench.webp |
|
| 16 | + | - Bench-thumb.jpeg |
|
| 17 | + | image: Bench.webp |
|
| 18 | + | thumb: Bench-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/400 |
|
| 24 | + | exposure_friendly: 1/400s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-28T09:35:43Z |
|
| 3 | + | slug: bend |
|
| 4 | + | title: Bend |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/2.8 |
|
| 8 | + | - 10/5000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Bend.webp |
|
| 16 | + | - Bend-thumb.jpeg |
|
| 17 | + | image: Bend.webp |
|
| 18 | + | thumb: Bend-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/5000 |
|
| 24 | + | exposure_friendly: 10/5000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-09-29T15:39:43Z |
|
| 3 | + | slug: brothers |
|
| 4 | + | title: Brothers |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "800" |
|
| 8 | + | - f/2.8 |
|
| 9 | + | - 10/2500s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Brothers.webp |
|
| 16 | + | - Brothers-thumb.jpeg |
|
| 17 | + | image: Brothers.webp |
|
| 18 | + | thumb: Brothers-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/2500 |
|
| 24 | + | exposure_friendly: 10/2500s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Cold Vinyl |
|
| 3 | + | date: 2025-11-03T08:47:54Z |
|
| 4 | + | slug: cold-vinyl |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "400" |
|
| 8 | + | - f/2.8 |
|
| 9 | + | - 1/60s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - XF23mmF2 R WR |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Cold Vinyl.jpeg |
|
| 16 | + | - Cold Vinyl-thumb.jpeg |
|
| 17 | + | image: Cold Vinyl.jpeg |
|
| 18 | + | thumb: Cold Vinyl-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/60 |
|
| 24 | + | exposure_friendly: 1/60s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Cookie Time |
|
| 3 | + | date: 2025-11-02T11:24:10Z |
|
| 4 | + | slug: cookie-time |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "400" |
|
| 8 | + | - f/2.8 |
|
| 9 | + | - 1/640s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - XF23mmF2 R WR |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Cookie Time.jpeg |
|
| 16 | + | - Cookie Time-thumb.jpeg |
|
| 17 | + | image: Cookie Time.jpeg |
|
| 18 | + | thumb: Cookie Time-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/640 |
|
| 24 | + | exposure_friendly: 1/640s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-27T17:25:54Z |
|
| 3 | + | slug: dcw |
|
| 4 | + | title: Dcw |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "500" |
|
| 11 | + | - f/2.8 |
|
| 12 | + | - 10/5000s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - DCW.webp |
|
| 16 | + | - DCW-thumb.jpeg |
|
| 17 | + | image: DCW.webp |
|
| 18 | + | thumb: DCW-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/5000 |
|
| 24 | + | exposure_friendly: 10/5000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "500" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-08-12T08:59:23Z |
|
| 3 | + | slug: deep-valley |
|
| 4 | + | title: Deep Valley |
|
| 5 | + | tags: |
|
| 6 | + | - 10/10000s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "640" |
|
| 12 | + | - f/7.1 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Deep Valley.webp |
|
| 16 | + | - Deep Valley-thumb.jpeg |
|
| 17 | + | image: Deep Valley.webp |
|
| 18 | + | thumb: Deep Valley-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 710/100 |
|
| 21 | + | aperture_friendly: f/7.1 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/10000 |
|
| 24 | + | exposure_friendly: 10/10000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-12-08T14:36:57Z |
|
| 3 | + | slug: dirt |
|
| 4 | + | title: Dirt |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "640" |
|
| 9 | + | - f/4.0 |
|
| 10 | + | - 10/4000s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Dirt.webp |
|
| 16 | + | - Dirt-thumb.jpeg |
|
| 17 | + | image: Dirt.webp |
|
| 18 | + | thumb: Dirt-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/4000 |
|
| 24 | + | exposure_friendly: 10/4000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-12T10:14:21Z |
|
| 3 | + | slug: edge-of-the-mountain |
|
| 4 | + | title: Edge Of The Mountain |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/5.6 |
|
| 8 | + | - 10/40000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Edge of the Mountain.webp |
|
| 16 | + | - Edge of the Mountain-thumb.jpeg |
|
| 17 | + | image: Edge of the Mountain.webp |
|
| 18 | + | thumb: Edge of the Mountain-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 560/100 |
|
| 21 | + | aperture_friendly: f/5.6 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/40000 |
|
| 24 | + | exposure_friendly: 10/40000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-09-19T10:42:33Z |
|
| 3 | + | slug: f5 |
|
| 4 | + | title: F5 |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "640" |
|
| 8 | + | - f/2.8 |
|
| 9 | + | - 10/1250s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - F5.webp |
|
| 16 | + | - F5-thumb.jpeg |
|
| 17 | + | image: F5.webp |
|
| 18 | + | thumb: F5-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/1250 |
|
| 24 | + | exposure_friendly: 10/1250s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Fall Face |
|
| 3 | + | date: 2024-11-04T09:38:46Z |
|
| 4 | + | slug: fall-face |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/4.0 |
|
| 8 | + | - 10/2500s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Fall Face.webp |
|
| 16 | + | - Fall Face-thumb.jpeg |
|
| 17 | + | image: Fall Face.webp |
|
| 18 | + | thumb: Fall Face-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/2500 |
|
| 24 | + | exposure_friendly: 10/2500s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-05-13T17:51:15Z |
|
| 3 | + | slug: field-horses |
|
| 4 | + | title: Field Horses |
|
| 5 | + | tags: |
|
| 6 | + | - Canon EOS 6D |
|
| 7 | + | - Canon |
|
| 8 | + | - "640" |
|
| 9 | + | - f/4.0 |
|
| 10 | + | - 1/1600s |
|
| 11 | + | - 40.0mm |
|
| 12 | + | - EF40mm f/2.8 STM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Field Horses.webp |
|
| 16 | + | - Field Horses-thumb.jpeg |
|
| 17 | + | image: Field Horses.webp |
|
| 18 | + | thumb: Field Horses-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 4/1 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: Canon EOS 6D |
|
| 23 | + | exposure: 1/1600 |
|
| 24 | + | exposure_friendly: 1/1600s |
|
| 25 | + | focal_length: 40/1 |
|
| 26 | + | focal_length_friendly: 40.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: EF40mm f/2.8 STM |
|
| 29 | + | --- |
|
| 30 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-09-30T09:57:01Z |
|
| 3 | + | slug: flower-farm |
|
| 4 | + | title: Flower Farm |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "160" |
|
| 11 | + | - f/4.0 |
|
| 12 | + | - 10/16000s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Flower Farm.webp |
|
| 16 | + | - Flower Farm-thumb.jpeg |
|
| 17 | + | image: Flower Farm.webp |
|
| 18 | + | thumb: Flower Farm-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/16000 |
|
| 24 | + | exposure_friendly: 10/16000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "160" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Flower Moon |
|
| 3 | + | date: 2025-10-11T10:06:05Z |
|
| 4 | + | slug: flower-moon |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/6.4 |
|
| 8 | + | - 10/20000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Flower Moon.JPG |
|
| 16 | + | - Flower Moon-thumb.JPG |
|
| 17 | + | image: Flower Moon.JPG |
|
| 18 | + | thumb: Flower Moon-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 640/100 |
|
| 21 | + | aperture_friendly: f/6.4 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/20000 |
|
| 24 | + | exposure_friendly: 10/20000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-26T10:12:33Z |
|
| 3 | + | slug: follow-the-leader |
|
| 4 | + | title: Follow The Leader |
|
| 5 | + | tags: |
|
| 6 | + | - f/4.0 |
|
| 7 | + | - 10/4000s |
|
| 8 | + | - 23.0mm |
|
| 9 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 10 | + | - X-E4 |
|
| 11 | + | - FUJIFILM |
|
| 12 | + | - "500" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Follow the Leader.webp |
|
| 16 | + | - Follow the Leader-thumb.jpeg |
|
| 17 | + | image: Follow the Leader.webp |
|
| 18 | + | thumb: Follow the Leader-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/4000 |
|
| 24 | + | exposure_friendly: 10/4000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "500" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-11-29T14:04:03Z |
|
| 3 | + | slug: gaze |
|
| 4 | + | title: Gaze |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/4.0 |
|
| 8 | + | - 10/32000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Gaze.webp |
|
| 16 | + | - Gaze-thumb.jpeg |
|
| 17 | + | image: Gaze.webp |
|
| 18 | + | thumb: Gaze-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/32000 |
|
| 24 | + | exposure_friendly: 10/32000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-10-15T10:22:36Z |
|
| 3 | + | slug: gentle-hands |
|
| 4 | + | title: Gentle Hands |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "500" |
|
| 11 | + | - f/4.0 |
|
| 12 | + | - 10/10000s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Gentle Hands.webp |
|
| 16 | + | - Gentle Hands-thumb.jpeg |
|
| 17 | + | image: Gentle Hands.webp |
|
| 18 | + | thumb: Gentle Hands-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/10000 |
|
| 24 | + | exposure_friendly: 10/10000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "500" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Golden River |
|
| 3 | + | date: 2025-11-02T12:17:11Z |
|
| 4 | + | slug: golden-river |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "400" |
|
| 9 | + | - f/2.8 |
|
| 10 | + | - 1/1250s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - XF23mmF2 R WR |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Golden River.jpeg |
|
| 16 | + | - Golden River-thumb.jpeg |
|
| 17 | + | image: Golden River.jpeg |
|
| 18 | + | thumb: Golden River-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/1250 |
|
| 24 | + | exposure_friendly: 1/1250s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Good Gourd |
|
| 3 | + | date: 2025-10-11T10:34:16Z |
|
| 4 | + | slug: good-gourd |
|
| 5 | + | tags: |
|
| 6 | + | - f/4.0 |
|
| 7 | + | - 10/40000s |
|
| 8 | + | - 23.0mm |
|
| 9 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 10 | + | - X-E4 |
|
| 11 | + | - FUJIFILM |
|
| 12 | + | - "400" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Good Gourd.JPG |
|
| 16 | + | - Good Gourd-thumb.JPG |
|
| 17 | + | image: Good Gourd.JPG |
|
| 18 | + | thumb: Good Gourd-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/40000 |
|
| 24 | + | exposure_friendly: 10/40000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Green Hands |
|
| 3 | + | date: 2025-08-03T16:57:19Z |
|
| 4 | + | slug: green-hands |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "800" |
|
| 9 | + | - f/4.0 |
|
| 10 | + | - 10/4000s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Green Hands.JPG |
|
| 16 | + | - Green Hands-thumb.JPG |
|
| 17 | + | image: Green Hands.JPG |
|
| 18 | + | thumb: Green Hands-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/4000 |
|
| 24 | + | exposure_friendly: 10/4000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-03-20T17:24:05Z |
|
| 3 | + | slug: green-space |
|
| 4 | + | title: Green Space |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "320" |
|
| 11 | + | - f/4.0 |
|
| 12 | + | - 10/12500s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Green Space.webp |
|
| 16 | + | - Green Space-thumb.jpeg |
|
| 17 | + | image: Green Space.webp |
|
| 18 | + | thumb: Green Space-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/12500 |
|
| 24 | + | exposure_friendly: 10/12500s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "320" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Helper |
|
| 3 | + | date: 2025-08-03T17:01:51Z |
|
| 4 | + | slug: helper |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "640" |
|
| 9 | + | - f/4.0 |
|
| 10 | + | - 10/2500s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Helper.JPG |
|
| 16 | + | - Helper-thumb.JPG |
|
| 17 | + | image: Helper.JPG |
|
| 18 | + | thumb: Helper-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/2500 |
|
| 24 | + | exposure_friendly: 10/2500s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Hike |
|
| 3 | + | date: 2025-11-03T11:50:25Z |
|
| 4 | + | slug: hike |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - XF23mmF2 R WR |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "640" |
|
| 11 | + | - f/2.8 |
|
| 12 | + | - 1/320s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Hike.jpeg |
|
| 16 | + | - Hike-thumb.jpeg |
|
| 17 | + | image: Hike.jpeg |
|
| 18 | + | thumb: Hike-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/320 |
|
| 24 | + | exposure_friendly: 1/320s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-04-13T09:40:37Z |
|
| 3 | + | slug: hill-on-a-mountain |
|
| 4 | + | title: Hill On A Mountain |
|
| 5 | + | tags: |
|
| 6 | + | - 10/25000s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "400" |
|
| 12 | + | - f/4.0 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Hill on a Mountain.webp |
|
| 16 | + | - Hill on a Mountain-thumb.jpeg |
|
| 17 | + | image: Hill on a Mountain.webp |
|
| 18 | + | thumb: Hill on a Mountain-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/25000 |
|
| 24 | + | exposure_friendly: 10/25000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Hills of Gold |
|
| 3 | + | date: 2025-10-11T09:27:07Z |
|
| 4 | + | slug: hills-of-gold |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "320" |
|
| 9 | + | - f/4.0 |
|
| 10 | + | - 10/20000s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Hills of Gold.JPG |
|
| 16 | + | - Hills of Gold-thumb.JPG |
|
| 17 | + | image: Hills of Gold.JPG |
|
| 18 | + | thumb: Hills of Gold-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/20000 |
|
| 24 | + | exposure_friendly: 10/20000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "320" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-04-27T17:30:52Z |
|
| 3 | + | slug: home |
|
| 4 | + | title: Home |
|
| 5 | + | tags: |
|
| 6 | + | - XF23mmF2 R WR |
|
| 7 | + | - X-E4 |
|
| 8 | + | - FUJIFILM |
|
| 9 | + | - "640" |
|
| 10 | + | - f/5.6 |
|
| 11 | + | - 1/4000s |
|
| 12 | + | - 23.0mm |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Home.webp |
|
| 16 | + | - Home-thumb.jpeg |
|
| 17 | + | image: Home.webp |
|
| 18 | + | thumb: Home-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 28/5 |
|
| 21 | + | aperture_friendly: f/5.6 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/4000 |
|
| 24 | + | exposure_friendly: 1/4000s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Howdy |
|
| 3 | + | date: 2025-10-11T09:22:00Z |
|
| 4 | + | slug: howdy |
|
| 5 | + | tags: |
|
| 6 | + | - 10/20000s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "250" |
|
| 12 | + | - f/4.0 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Howdy.JPG |
|
| 16 | + | - Howdy-thumb.JPG |
|
| 17 | + | image: Howdy.JPG |
|
| 18 | + | thumb: Howdy-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/20000 |
|
| 24 | + | exposure_friendly: 10/20000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "250" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-10-28T09:07:50Z |
|
| 3 | + | slug: julia |
|
| 4 | + | title: Julia |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - XF23mmF2 R WR |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "640" |
|
| 11 | + | - f/4.0 |
|
| 12 | + | - 1/320s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Julia.webp |
|
| 16 | + | - Julia-thumb.jpeg |
|
| 17 | + | image: Julia.webp |
|
| 18 | + | thumb: Julia-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 4/1 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/320 |
|
| 24 | + | exposure_friendly: 1/320s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-11-29T13:51:57Z |
|
| 3 | + | slug: lighthouse |
|
| 4 | + | title: Lighthouse |
|
| 5 | + | tags: |
|
| 6 | + | - 10/25000s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "400" |
|
| 12 | + | - f/4.0 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Lighthouse.webp |
|
| 16 | + | - Lighthouse-thumb.jpeg |
|
| 17 | + | image: Lighthouse.webp |
|
| 18 | + | thumb: Lighthouse-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/25000 |
|
| 24 | + | exposure_friendly: 10/25000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Monarch |
|
| 3 | + | date: 2025-10-11T10:06:54Z |
|
| 4 | + | slug: monarch |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/8.0 |
|
| 8 | + | - 1/1000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - XF23mmF2 R WR |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Monarch.JPG |
|
| 16 | + | - Monarch-thumb.JPG |
|
| 17 | + | image: Monarch.JPG |
|
| 18 | + | thumb: Monarch-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 8/1 |
|
| 21 | + | aperture_friendly: f/8.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/1000 |
|
| 24 | + | exposure_friendly: 1/1000s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-04-20T12:44:12Z |
|
| 3 | + | slug: mountain-flowers |
|
| 4 | + | title: Mountain Flowers |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "800" |
|
| 11 | + | - f/4.0 |
|
| 12 | + | - 10/5000s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Mountain Flowers.webp |
|
| 16 | + | - Mountain Flowers-thumb.jpeg |
|
| 17 | + | image: Mountain Flowers.webp |
|
| 18 | + | thumb: Mountain Flowers-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/5000 |
|
| 24 | + | exposure_friendly: 10/5000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-03-16T10:47:50Z |
|
| 3 | + | slug: mountain-queen |
|
| 4 | + | title: Mountain Queen |
|
| 5 | + | tags: |
|
| 6 | + | - "640" |
|
| 7 | + | - f/4.5 |
|
| 8 | + | - 10/16000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Mountain Queen.webp |
|
| 16 | + | - Mountain Queen-thumb.jpeg |
|
| 17 | + | image: Mountain Queen.webp |
|
| 18 | + | thumb: Mountain Queen-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 450/100 |
|
| 21 | + | aperture_friendly: f/4.5 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/16000 |
|
| 24 | + | exposure_friendly: 10/16000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-05-13T17:50:42Z |
|
| 3 | + | slug: mountain-roads |
|
| 4 | + | title: Mountain Roads |
|
| 5 | + | tags: |
|
| 6 | + | - Canon EOS 6D |
|
| 7 | + | - Canon |
|
| 8 | + | - "640" |
|
| 9 | + | - f/2.8 |
|
| 10 | + | - 1/400s |
|
| 11 | + | - 40.0mm |
|
| 12 | + | - EF40mm f/2.8 STM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Mountain Roads.webp |
|
| 16 | + | - Mountain Roads-thumb.jpeg |
|
| 17 | + | image: Mountain Roads.webp |
|
| 18 | + | thumb: Mountain Roads-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 28/10 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: Canon EOS 6D |
|
| 23 | + | exposure: 1/400 |
|
| 24 | + | exposure_friendly: 1/400s |
|
| 25 | + | focal_length: 40/1 |
|
| 26 | + | focal_length_friendly: 40.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: EF40mm f/2.8 STM |
|
| 29 | + | --- |
|
| 30 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-03-20T17:22:22Z |
|
| 3 | + | slug: nordic |
|
| 4 | + | title: Nordic |
|
| 5 | + | tags: |
|
| 6 | + | - 10/8000s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "320" |
|
| 12 | + | - f/4.0 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Nordic.webp |
|
| 16 | + | - Nordic-thumb.jpeg |
|
| 17 | + | image: Nordic.webp |
|
| 18 | + | thumb: Nordic-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/8000 |
|
| 24 | + | exposure_friendly: 10/8000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "320" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-12-08T14:56:38Z |
|
| 3 | + | slug: north-end |
|
| 4 | + | title: North End |
|
| 5 | + | tags: |
|
| 6 | + | - 10/3200s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "640" |
|
| 12 | + | - f/4.0 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - North End.webp |
|
| 16 | + | - North End-thumb.jpeg |
|
| 17 | + | image: North End.webp |
|
| 18 | + | thumb: North End-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/3200 |
|
| 24 | + | exposure_friendly: 10/3200s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-09-29T17:08:57Z |
|
| 3 | + | slug: old-love |
|
| 4 | + | title: Old Love |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "800" |
|
| 8 | + | - f/2.8 |
|
| 9 | + | - 10/1800s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Old Love.webp |
|
| 16 | + | - Old Love-thumb.jpeg |
|
| 17 | + | image: Old Love.webp |
|
| 18 | + | thumb: Old Love-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/1800 |
|
| 24 | + | exposure_friendly: 10/1800s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2025-05-31T13:29:52Z |
|
| 3 | + | slug: old-town-guide |
|
| 4 | + | title: Old Town Guide |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "400" |
|
| 9 | + | - f/3.6 |
|
| 10 | + | - 1/640s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - XF23mmF2 R WR |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Old Town Guide.webp |
|
| 16 | + | - Old Town Guide-thumb.jpeg |
|
| 17 | + | image: Old Town Guide.webp |
|
| 18 | + | thumb: Old Town Guide-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 18/5 |
|
| 21 | + | aperture_friendly: f/3.6 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/640 |
|
| 24 | + | exposure_friendly: 1/640s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-08-02T23:01:16Z |
|
| 3 | + | slug: olive |
|
| 4 | + | title: Olive |
|
| 5 | + | tags: |
|
| 6 | + | - 35mm F1.4 DG HSM | Art 012 |
|
| 7 | + | - Canon EOS 6D |
|
| 8 | + | - Canon |
|
| 9 | + | - "640" |
|
| 10 | + | - f/2.8 |
|
| 11 | + | - 1/1600s |
|
| 12 | + | - 35.0mm |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Olive.webp |
|
| 16 | + | - Olive-thumb.jpeg |
|
| 17 | + | image: Olive.webp |
|
| 18 | + | thumb: Olive-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 28/10 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: Canon EOS 6D |
|
| 23 | + | exposure: 1/1600 |
|
| 24 | + | exposure_friendly: 1/1600s |
|
| 25 | + | focal_length: 35/1 |
|
| 26 | + | focal_length_friendly: 35.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: 35mm F1.4 DG HSM | Art 012 |
|
| 29 | + | --- |
|
| 30 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-08-05T13:27:56Z |
|
| 3 | + | slug: page-turner |
|
| 4 | + | title: Page Turner |
|
| 5 | + | tags: |
|
| 6 | + | - "640" |
|
| 7 | + | - f/2.8 |
|
| 8 | + | - 10/600s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Page Turner.webp |
|
| 16 | + | - Page Turner-thumb.jpeg |
|
| 17 | + | image: Page Turner.webp |
|
| 18 | + | thumb: Page Turner-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/600 |
|
| 24 | + | exposure_friendly: 10/600s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-04-22T17:33:36Z |
|
| 3 | + | slug: picket-fence |
|
| 4 | + | title: Picket Fence |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "640" |
|
| 8 | + | - f/4.0 |
|
| 9 | + | - 10/32000s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Picket Fence.webp |
|
| 16 | + | - Picket Fence-thumb.jpeg |
|
| 17 | + | image: Picket Fence.webp |
|
| 18 | + | thumb: Picket Fence-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/32000 |
|
| 24 | + | exposure_friendly: 10/32000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-11-04T09:53:22Z |
|
| 3 | + | slug: queen |
|
| 4 | + | title: Queen |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "400" |
|
| 8 | + | - f/3.2 |
|
| 9 | + | - 10/5000s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Queen.webp |
|
| 16 | + | - Queen-thumb.jpeg |
|
| 17 | + | image: Queen.webp |
|
| 18 | + | thumb: Queen-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 320/100 |
|
| 21 | + | aperture_friendly: f/3.2 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/5000 |
|
| 24 | + | exposure_friendly: 10/5000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-10-24T16:28:34Z |
|
| 3 | + | slug: reservoir |
|
| 4 | + | title: Reservoir |
|
| 5 | + | tags: |
|
| 6 | + | - 10/1800s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "640" |
|
| 12 | + | - f/4.0 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Reservoir.webp |
|
| 16 | + | - Reservoir-thumb.jpeg |
|
| 17 | + | image: Reservoir.webp |
|
| 18 | + | thumb: Reservoir-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/1800 |
|
| 24 | + | exposure_friendly: 10/1800s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-05-11T22:39:11Z |
|
| 3 | + | slug: river-sticks |
|
| 4 | + | title: River Sticks |
|
| 5 | + | tags: |
|
| 6 | + | - "800" |
|
| 7 | + | - f/2.8 |
|
| 8 | + | - 1/1000s |
|
| 9 | + | - 40.0mm |
|
| 10 | + | - EF40mm f/2.8 STM |
|
| 11 | + | - Canon EOS 6D |
|
| 12 | + | - Canon |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - River Sticks.webp |
|
| 16 | + | - River Sticks-thumb.jpeg |
|
| 17 | + | image: River Sticks.webp |
|
| 18 | + | thumb: River Sticks-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: Canon EOS 6D |
|
| 23 | + | exposure: 1/1000 |
|
| 24 | + | exposure_friendly: 1/1000s |
|
| 25 | + | focal_length: 40/1 |
|
| 26 | + | focal_length_friendly: 40.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: EF40mm f/2.8 STM |
|
| 29 | + | --- |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-11-23T15:22:17Z |
|
| 3 | + | slug: rockets |
|
| 4 | + | title: Rockets |
|
| 5 | + | tags: |
|
| 6 | + | - 10/5000s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "400" |
|
| 12 | + | - f/3.6 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Rockets.webp |
|
| 16 | + | - Rockets-thumb.jpeg |
|
| 17 | + | image: Rockets.webp |
|
| 18 | + | thumb: Rockets-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 360/100 |
|
| 21 | + | aperture_friendly: f/3.6 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/5000 |
|
| 24 | + | exposure_friendly: 10/5000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-09-19T12:10:15Z |
|
| 3 | + | slug: saturn-v |
|
| 4 | + | title: Saturn V |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "800" |
|
| 11 | + | - f/4.0 |
|
| 12 | + | - 10/40000s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Saturn V.webp |
|
| 16 | + | - Saturn V-thumb.jpeg |
|
| 17 | + | image: Saturn V.webp |
|
| 18 | + | thumb: Saturn V-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/40000 |
|
| 24 | + | exposure_friendly: 10/40000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Seuss Trees |
|
| 3 | + | date: 2025-10-11T10:09:49Z |
|
| 4 | + | slug: seuss-trees |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "400" |
|
| 9 | + | - f/5.6 |
|
| 10 | + | - 10/16000s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Seuss Trees.JPG |
|
| 16 | + | - Seuss Trees-thumb.JPG |
|
| 17 | + | image: Seuss Trees.JPG |
|
| 18 | + | thumb: Seuss Trees-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 560/100 |
|
| 21 | + | aperture_friendly: f/5.6 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/16000 |
|
| 24 | + | exposure_friendly: 10/16000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-10-28T08:49:29Z |
|
| 3 | + | slug: shack |
|
| 4 | + | title: Shack |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "640" |
|
| 8 | + | - f/4.0 |
|
| 9 | + | - 10/1250s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Shack.webp |
|
| 16 | + | - Shack-thumb.jpeg |
|
| 17 | + | image: Shack.webp |
|
| 18 | + | thumb: Shack-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/1250 |
|
| 24 | + | exposure_friendly: 10/1250s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-04-20T12:11:31Z |
|
| 3 | + | slug: snakes |
|
| 4 | + | title: Snakes |
|
| 5 | + | tags: |
|
| 6 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 7 | + | - X-E4 |
|
| 8 | + | - FUJIFILM |
|
| 9 | + | - "800" |
|
| 10 | + | - f/2.8 |
|
| 11 | + | - 10/1250s |
|
| 12 | + | - 23.0mm |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Snakes.webp |
|
| 16 | + | - Snakes-thumb.jpeg |
|
| 17 | + | image: Snakes.webp |
|
| 18 | + | thumb: Snakes-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/1250 |
|
| 24 | + | exposure_friendly: 10/1250s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-03-10T17:43:19Z |
|
| 3 | + | slug: spring |
|
| 4 | + | title: Spring |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "640" |
|
| 9 | + | - f/4.0 |
|
| 10 | + | - 10/25000s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Spring.webp |
|
| 16 | + | - Spring-thumb.jpeg |
|
| 17 | + | image: Spring.webp |
|
| 18 | + | thumb: Spring-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/25000 |
|
| 24 | + | exposure_friendly: 10/25000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Star |
|
| 3 | + | date: 2025-08-03T16:44:20Z |
|
| 4 | + | slug: star |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "800" |
|
| 8 | + | - f/4.0 |
|
| 9 | + | - 10/5000s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Star.JPG |
|
| 16 | + | - Star-thumb.JPG |
|
| 17 | + | image: Star.JPG |
|
| 18 | + | thumb: Star-thumb.JPG |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/5000 |
|
| 24 | + | exposure_friendly: 10/5000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-06-22T09:30:14Z |
|
| 3 | + | slug: studio |
|
| 4 | + | title: Studio |
|
| 5 | + | tags: |
|
| 6 | + | - f/2.8 |
|
| 7 | + | - 1/80s |
|
| 8 | + | - 23.0mm |
|
| 9 | + | - XF23mmF2 R WR |
|
| 10 | + | - X-E4 |
|
| 11 | + | - FUJIFILM |
|
| 12 | + | - "800" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Studio.webp |
|
| 16 | + | - Studio-thumb.jpeg |
|
| 17 | + | image: Studio.webp |
|
| 18 | + | thumb: Studio-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/80 |
|
| 24 | + | exposure_friendly: 1/80s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Suby |
|
| 3 | + | date: 2025-11-02T11:23:36Z |
|
| 4 | + | slug: suby |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "400" |
|
| 9 | + | - f/2.8 |
|
| 10 | + | - 1/800s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - XF23mmF2 R WR |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Suby.jpeg |
|
| 16 | + | - Suby-thumb.jpeg |
|
| 17 | + | image: Suby.jpeg |
|
| 18 | + | thumb: Suby-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/800 |
|
| 24 | + | exposure_friendly: 1/800s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-08-02T23:01:28Z |
|
| 3 | + | slug: summer-breeze |
|
| 4 | + | title: Summer Breeze |
|
| 5 | + | tags: |
|
| 6 | + | - Canon EOS 6D |
|
| 7 | + | - Canon |
|
| 8 | + | - "640" |
|
| 9 | + | - f/2.8 |
|
| 10 | + | - 1/1250s |
|
| 11 | + | - 35.0mm |
|
| 12 | + | - 35mm F1.4 DG HSM | Art 012 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Summer Breeze.webp |
|
| 16 | + | - Summer Breeze-thumb.jpeg |
|
| 17 | + | image: Summer Breeze.webp |
|
| 18 | + | thumb: Summer Breeze-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 28/10 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: Canon EOS 6D |
|
| 23 | + | exposure: 1/1250 |
|
| 24 | + | exposure_friendly: 1/1250s |
|
| 25 | + | focal_length: 35/1 |
|
| 26 | + | focal_length_friendly: 35.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: 35mm F1.4 DG HSM | Art 012 |
|
| 29 | + | --- |
|
| 30 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Summer Face |
|
| 3 | + | date: 2025-05-31T13:33:34Z |
|
| 4 | + | slug: summer-face |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - XF23mmF2 R WR |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "400" |
|
| 11 | + | - f/3.6 |
|
| 12 | + | - 1/640s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Summer Face.webp |
|
| 16 | + | - Summer Face-thumb.jpeg |
|
| 17 | + | image: Summer Face.webp |
|
| 18 | + | thumb: Summer Face-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 18/5 |
|
| 21 | + | aperture_friendly: f/3.6 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/640 |
|
| 24 | + | exposure_friendly: 1/640s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Super 8 |
|
| 3 | + | date: 2025-11-02T12:17:19Z |
|
| 4 | + | slug: super-8 |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/2.8 |
|
| 8 | + | - 1/2000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - XF23mmF2 R WR |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Super 8.jpeg |
|
| 16 | + | - Super 8-thumb.jpeg |
|
| 17 | + | image: Super 8.jpeg |
|
| 18 | + | thumb: Super 8-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/2000 |
|
| 24 | + | exposure_friendly: 1/2000s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-19T10:38:01Z |
|
| 3 | + | slug: the-park |
|
| 4 | + | title: The Park |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "800" |
|
| 8 | + | - f/2.2 |
|
| 9 | + | - 10/8000s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - The Park.webp |
|
| 16 | + | - The Park-thumb.jpeg |
|
| 17 | + | image: The Park.webp |
|
| 18 | + | thumb: The Park-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 220/100 |
|
| 21 | + | aperture_friendly: f/2.2 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/8000 |
|
| 24 | + | exposure_friendly: 10/8000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-03-23T12:41:42Z |
|
| 3 | + | slug: the-valley |
|
| 4 | + | title: The Valley |
|
| 5 | + | tags: |
|
| 6 | + | - 10/12500s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "400" |
|
| 12 | + | - f/8.0 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - The Valley.webp |
|
| 16 | + | - The Valley-thumb.jpeg |
|
| 17 | + | image: The Valley.webp |
|
| 18 | + | thumb: The Valley-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 800/100 |
|
| 21 | + | aperture_friendly: f/8.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/12500 |
|
| 24 | + | exposure_friendly: 10/12500s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2023-11-23T08:00:17Z |
|
| 3 | + | slug: three-ships |
|
| 4 | + | title: Three Ships |
|
| 5 | + | tags: |
|
| 6 | + | - f/4.0 |
|
| 7 | + | - 10/25000s |
|
| 8 | + | - 23.0mm |
|
| 9 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 10 | + | - X-E4 |
|
| 11 | + | - FUJIFILM |
|
| 12 | + | - "640" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Three Ships.webp |
|
| 16 | + | - Three Ships-thumb.jpeg |
|
| 17 | + | image: Three Ships.webp |
|
| 18 | + | thumb: Three Ships-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/25000 |
|
| 24 | + | exposure_friendly: 10/25000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-12-29T13:51:40Z |
|
| 3 | + | slug: ticket |
|
| 4 | + | title: Ticket |
|
| 5 | + | tags: |
|
| 6 | + | - FUJIFILM |
|
| 7 | + | - "640" |
|
| 8 | + | - f/2.8 |
|
| 9 | + | - 1/160s |
|
| 10 | + | - 23.0mm |
|
| 11 | + | - XF23mmF2 R WR |
|
| 12 | + | - X-E4 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Ticket.webp |
|
| 16 | + | - Ticket-thumb.jpeg |
|
| 17 | + | image: Ticket.webp |
|
| 18 | + | thumb: Ticket-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/160 |
|
| 24 | + | exposure_friendly: 1/160s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2022-09-24T16:36:10Z |
|
| 3 | + | slug: train |
|
| 4 | + | title: Train |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "640" |
|
| 9 | + | - f/4.0 |
|
| 10 | + | - 10/1000s |
|
| 11 | + | - 27.0mm |
|
| 12 | + | - "XF27mmF2.8 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Train.webp |
|
| 16 | + | - Train-thumb.jpeg |
|
| 17 | + | image: Train.webp |
|
| 18 | + | thumb: Train-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/1000 |
|
| 24 | + | exposure_friendly: 10/1000s |
|
| 25 | + | focal_length: 2700/100 |
|
| 26 | + | focal_length_friendly: 27.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: "XF27mmF2.8 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Tree Web |
|
| 3 | + | date: 2025-11-03T12:32:24Z |
|
| 4 | + | slug: tree-web |
|
| 5 | + | tags: |
|
| 6 | + | - 23.0mm |
|
| 7 | + | - XF23mmF2 R WR |
|
| 8 | + | - X-E4 |
|
| 9 | + | - FUJIFILM |
|
| 10 | + | - "640" |
|
| 11 | + | - f/3.2 |
|
| 12 | + | - 1/800s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Tree Web.jpeg |
|
| 16 | + | - Tree Web-thumb.jpeg |
|
| 17 | + | image: Tree Web.jpeg |
|
| 18 | + | thumb: Tree Web-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 16/5 |
|
| 21 | + | aperture_friendly: f/3.2 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/800 |
|
| 24 | + | exposure_friendly: 1/800s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | title: Tumble |
|
| 3 | + | date: 2025-11-03T11:54:09Z |
|
| 4 | + | slug: tumble |
|
| 5 | + | tags: |
|
| 6 | + | - X-E4 |
|
| 7 | + | - FUJIFILM |
|
| 8 | + | - "640" |
|
| 9 | + | - f/2.8 |
|
| 10 | + | - 1/500s |
|
| 11 | + | - 23.0mm |
|
| 12 | + | - XF23mmF2 R WR |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Tumble.jpeg |
|
| 16 | + | - Tumble-thumb.jpeg |
|
| 17 | + | image: Tumble.jpeg |
|
| 18 | + | thumb: Tumble-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 1/500 |
|
| 24 | + | exposure_friendly: 1/500s |
|
| 25 | + | focal_length: 23/1 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "640" |
|
| 28 | + | lens: XF23mmF2 R WR |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-11-04T09:26:53Z |
|
| 3 | + | slug: uncle-bread |
|
| 4 | + | title: Uncle Bread |
|
| 5 | + | tags: |
|
| 6 | + | - f/4.0 |
|
| 7 | + | - 10/5000s |
|
| 8 | + | - 23.0mm |
|
| 9 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 10 | + | - X-E4 |
|
| 11 | + | - FUJIFILM |
|
| 12 | + | - "400" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Uncle Bread.webp |
|
| 16 | + | - Uncle Bread-thumb.jpeg |
|
| 17 | + | image: Uncle Bread.webp |
|
| 18 | + | thumb: Uncle Bread-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 400/100 |
|
| 21 | + | aperture_friendly: f/4.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/5000 |
|
| 24 | + | exposure_friendly: 10/5000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-09-29T16:04:17Z |
|
| 3 | + | slug: vaer |
|
| 4 | + | title: Vaer |
|
| 5 | + | tags: |
|
| 6 | + | - f/2.8 |
|
| 7 | + | - 10/3200s |
|
| 8 | + | - 23.0mm |
|
| 9 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 10 | + | - X-E4 |
|
| 11 | + | - FUJIFILM |
|
| 12 | + | - "800" |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - VAER.webp |
|
| 16 | + | - VAER-thumb.jpeg |
|
| 17 | + | image: VAER.webp |
|
| 18 | + | thumb: VAER-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 280/100 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/3200 |
|
| 24 | + | exposure_friendly: 10/3200s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-11-29T14:02:00Z |
|
| 3 | + | slug: walk |
|
| 4 | + | title: Walk |
|
| 5 | + | tags: |
|
| 6 | + | - 10/25000s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "400" |
|
| 12 | + | - f/5.0 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Walk.webp |
|
| 16 | + | - Walk-thumb.jpeg |
|
| 17 | + | image: Walk.webp |
|
| 18 | + | thumb: Walk-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 500/100 |
|
| 21 | + | aperture_friendly: f/5.0 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/25000 |
|
| 24 | + | exposure_friendly: 10/25000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-19T17:17:07Z |
|
| 3 | + | slug: welcome-to-pottsfield |
|
| 4 | + | title: Welcome To Pottsfield |
|
| 5 | + | tags: |
|
| 6 | + | - 10/6400s |
|
| 7 | + | - 23.0mm |
|
| 8 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 9 | + | - X-E4 |
|
| 10 | + | - FUJIFILM |
|
| 11 | + | - "800" |
|
| 12 | + | - f/2.5 |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Welcome to Pottsfield .webp |
|
| 16 | + | - Welcome to Pottsfield -thumb.jpeg |
|
| 17 | + | image: Welcome to Pottsfield .webp |
|
| 18 | + | thumb: Welcome to Pottsfield -thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 250/100 |
|
| 21 | + | aperture_friendly: f/2.5 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/6400 |
|
| 24 | + | exposure_friendly: 10/6400s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-05-11T22:39:07Z |
|
| 3 | + | slug: young-wanderer |
|
| 4 | + | title: Young Wanderer |
|
| 5 | + | tags: |
|
| 6 | + | - 40.0mm |
|
| 7 | + | - EF40mm f/2.8 STM |
|
| 8 | + | - Canon EOS 6D |
|
| 9 | + | - Canon |
|
| 10 | + | - "800" |
|
| 11 | + | - f/2.8 |
|
| 12 | + | - 1/400s |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Young Wanderer.webp |
|
| 16 | + | - Young Wanderer-thumb.jpeg |
|
| 17 | + | image: Young Wanderer.webp |
|
| 18 | + | thumb: Young Wanderer-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 14/5 |
|
| 21 | + | aperture_friendly: f/2.8 |
|
| 22 | + | camera: Canon EOS 6D |
|
| 23 | + | exposure: 1/400 |
|
| 24 | + | exposure_friendly: 1/400s |
|
| 25 | + | focal_length: 40/1 |
|
| 26 | + | focal_length_friendly: 40.0mm |
|
| 27 | + | iso: "800" |
|
| 28 | + | lens: EF40mm f/2.8 STM |
|
| 29 | + | --- |
Binary file — no preview.
Binary file — no preview.
| 1 | + | --- |
|
| 2 | + | date: 2024-10-12T10:40:18Z |
|
| 3 | + | slug: zinnia |
|
| 4 | + | title: Zinnia |
|
| 5 | + | tags: |
|
| 6 | + | - "400" |
|
| 7 | + | - f/5.6 |
|
| 8 | + | - 10/20000s |
|
| 9 | + | - 23.0mm |
|
| 10 | + | - "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 11 | + | - X-E4 |
|
| 12 | + | - FUJIFILM |
|
| 13 | + | type: photo |
|
| 14 | + | attached: |
|
| 15 | + | - Zinnia.webp |
|
| 16 | + | - Zinnia-thumb.jpeg |
|
| 17 | + | image: Zinnia.webp |
|
| 18 | + | thumb: Zinnia-thumb.jpeg |
|
| 19 | + | language: en |
|
| 20 | + | aperture: 560/100 |
|
| 21 | + | aperture_friendly: f/5.6 |
|
| 22 | + | camera: X-E4 |
|
| 23 | + | exposure: 10/20000 |
|
| 24 | + | exposure_friendly: 10/20000s |
|
| 25 | + | focal_length: 2300/100 |
|
| 26 | + | focal_length_friendly: 23.0mm |
|
| 27 | + | iso: "400" |
|
| 28 | + | lens: "XF23mmF2 R WR\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0" |
|
| 29 | + | make: FUJIFILM |
|
| 30 | + | --- |
|
| 31 | + |
| 1 | + | # allow crawling everything by default |
|
| 2 | + | User-agent: * |
|
| 3 | + | Disallow: |
| 1 | + | import adapter from '@sveltejs/adapter-auto'; |
|
| 2 | + | ||
| 3 | + | /** @type {import('@sveltejs/kit').Config} */ |
|
| 4 | + | const config = { |
|
| 5 | + | kit: { |
|
| 6 | + | // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. |
|
| 7 | + | // If your environment is not supported, or you settled on a specific environment, switch out the adapter. |
|
| 8 | + | // See https://svelte.dev/docs/kit/adapters for more information about adapters. |
|
| 9 | + | adapter: adapter() |
|
| 10 | + | } |
|
| 11 | + | }; |
|
| 12 | + | ||
| 13 | + | export default config; |
| 1 | + | { |
|
| 2 | + | "extends": "./.svelte-kit/tsconfig.json", |
|
| 3 | + | "compilerOptions": { |
|
| 4 | + | "rewriteRelativeImportExtensions": true, |
|
| 5 | + | "allowJs": true, |
|
| 6 | + | "checkJs": true, |
|
| 7 | + | "esModuleInterop": true, |
|
| 8 | + | "forceConsistentCasingInFileNames": true, |
|
| 9 | + | "resolveJsonModule": true, |
|
| 10 | + | "skipLibCheck": true, |
|
| 11 | + | "sourceMap": true, |
|
| 12 | + | "strict": true, |
|
| 13 | + | "moduleResolution": "bundler" |
|
| 14 | + | } |
|
| 15 | + | // Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias |
|
| 16 | + | // except $lib which is handled by https://svelte.dev/docs/kit/configuration#files |
|
| 17 | + | // |
|
| 18 | + | // To make changes to top-level options such as include and exclude, we recommend extending |
|
| 19 | + | // the generated config; see https://svelte.dev/docs/kit/configuration#typescript |
|
| 20 | + | } |
| 1 | + | import tailwindcss from '@tailwindcss/vite'; |
|
| 2 | + | import { sveltekit } from '@sveltejs/kit/vite'; |
|
| 3 | + | import { defineConfig } from 'vite'; |
|
| 4 | + | ||
| 5 | + | export default defineConfig({ plugins: [tailwindcss(), sveltekit()] }); |