diff --git a/.gitignore b/.gitignore index d2a1dc2..b666f56 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,6 @@ public/ resources/ node_modules/ .hugo_build.lock -static/css/main.css +hugo_stats.json +__pycache__/ +data/ diff --git a/CLAUDE.md b/CLAUDE.md index 4b9578b..0bcb166 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -5,16 +5,17 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co ## Commands ```bash -pnpm dev # Tailwind watch + Hugo dev server in parallel -pnpm build # build:css then hugo --minify → public/ -pnpm build:css # Tailwind only → static/css/main.css -pnpm watch:css # Tailwind watch (CSS only) -hugo server -D # Hugo dev server (drafts included) -hugo --minify # Production build -python3 scripts/import-posts.py # Import posts from ~/projects/ginger/posts.csv +pnpm install # installs @tailwindcss/cli; Hugo shells out to it +pnpm dev # hugo server -D (Hugo compiles Tailwind + hot-reloads) +pnpm build # hugo --minify → public/ +python3 scripts/import-posts.py # Import issue 01 from ~/projects/ginger/posts.csv → content/posts/01/ +python3 scripts/generate-images.py --prompts data/prompts/issue-NN.json --issue NN # Replicate flux-1.1-pro → content/posts/NN//.png +python3 scripts/faceswap-images.py --issue NN --source ~/Bilder/palina.webp # FaceFusion: swap one consistent face into every plate (in place) +python3 scripts/upscale-images.py --issue NN # Upscayl + Remacri 4x → clamp to 4992px long edge (in place) +python3 scripts/build-issue.py --issue NN --prompts data/prompts/issue-NN.json # write content/posts/NN//index.md ``` -CSS must be compiled before Hugo runs. `pnpm build` does both in order. In dev, `pnpm dev` runs both concurrently. +Hugo (≥ 0.161) compiles Tailwind itself during the build — no separate CSS step. ## Architecture @@ -22,12 +23,26 @@ CSS must be compiled before Hugo runs. `pnpm build` does both in order. In dev, ### CSS pipeline -Tailwind reads `assets/css/main.css` and writes to `static/css/main.css` (gitignored — build artefact). The `@theme {}` block defines all design tokens (`--color-paper`, `--color-roux`, `--font-display`, etc.). Global resets are in `@layer base` so Tailwind utility classes correctly override them. +`layouts/partials/css.html` runs `resources.Get "css/main.css" | css.TailwindCSS` +inside a `templates.Defer` block (invoked from `head.html`). Hugo shells out to +`node_modules/.bin/tailwindcss`, which scans `hugo_stats.json` (written each build +by `[build.buildStats]`, `@source`'d in `main.css`, mounted to +`assets/notwatching/` and cache-busted per `hugo.toml`). Dev serves unminified +`/css/main.css`; production emits a fingerprinted, SRI-hashed file. + +`assets/css/main.css` — `@theme {}` defines all design tokens (`--color-paper`, +`--color-roux`, `--font-display`, …); global resets are in `@layer base` so +Tailwind utilities override them. + +`pnpm-workspace.yaml` sets `preferSymlinkedExecutables: true` (Hugo rejects pnpm's +default shell shim for `tailwindcss`) and `allowBuilds` for `@parcel/watcher` (so +`pnpm run` doesn't fail on the ignored native build). ### Content model -- `content/posts//index.md` — page bundles; each has a `plate` number, `issues`, `categories` (single item), `tags`, `featured` flag, and a `.png` image resource. -- `content/issues//_index.md` — branch bundle for an issue; metadata (`title`, `description`, `issueNumber`, `season`, `status`) drives the homepage hero and issue list page. +- `content/posts///index.md` — page bundles grouped by issue dir (`01/`, `02/`, …); each has a `plate` number, `issues`, `categories` (single item), `tags`, `featured` flag, and a `.png` image resource. Permalink is `/posts///`. +- `content/posts//_index.md` — `build.render: never`; suppresses the intermediate `/posts//` list page (the per-issue landing page is the taxonomy term `/issues//`). +- `content/issues//_index.md` — branch bundle for an issue; metadata (`title`, `description`, `issueNumber`, `season`, `status`) drives the homepage hero and issue list page. Only one issue should have `status: "current"`. - `content/imprint.md` — standalone page using `layout: imprint`. Taxonomies: `categories`, `tags`, `issues` (defined in `hugo.toml`). @@ -36,7 +51,7 @@ Taxonomies: `categories`, `tags`, `issues` (defined in `hugo.toml`). ``` layouts/baseof.html ← shell: head, header, main, footer, lightbox, roux-data JSON -layouts/index.html ← homepage: current-issue hero + 5 featured plates +layouts/index.html ← homepage: current-issue hero + up to 5 featured plates from that issue layouts/_default/list.html ← two branches: kind="taxonomy" (term cards) | kind="term"/section (paginated post grid) layouts/_default/single.html ← post plate page (triggers lightbox via window.__ROUX_OPEN_SLUG) layouts/_default/imprint.html← prose page layout @@ -45,7 +60,7 @@ layouts/issues/terms.html ← issue index, reads issueIds from hugo.toml para layouts/404.html ← editorial 404 page ``` -Key partials: `header.html`, `footer.html`, `card.html` (reusable post card), `lightbox.html`, `pagination.html`, `logo.html`. +Key partials: `head.html`, `css.html` (Tailwind build, see CSS pipeline), `header.html`, `footer.html`, `card.html` (reusable post card), `lightbox.html`, `pagination.html`, `logo.html`. ### JavaScript (`static/js/app.js`) @@ -58,16 +73,23 @@ Responsibilities: ### Data flow: homepage featured plates -The homepage shows exactly the posts with `featured: true` in frontmatter. Mark posts via `featured: true`; the template filters with `where .Site.RegularPages ".Params.featured" true`. +The homepage hero resolves the current issue via `.Site.Params.issueNumber` → `GetPage "/issues/"`. The featured grid shows up to 5 posts with `featured: true` **within that current issue** (`where $plates ".Params.featured" true | first 5`), so each issue's prompts file flags its own 5. -### Content import +### Content pipeline -`scripts/import-posts.py` reads `~/projects/ginger/posts.csv` and `~/projects/ginger/images/final/selected/`. It creates/updates page bundles deterministically (sorted by filename → stable plate numbers). Run it from the repo root after updating the upstream CSV or image set. +- `scripts/import-posts.py` — issue 01 only; reads `~/projects/ginger/posts.csv` + `~/projects/ginger/images/final/selected/`, writes `content/posts/01/` deterministically (sorted by filename → stable plate numbers). +- `scripts/generate-images.py` — reusable Replicate generator. `--prompts --issue NN`; token from `$REPLICATE_API_TOKEN` or `~/.env`; default model `black-forest-labs/flux-1.1-pro`, 960×1440 PNG (custom aspect); idempotent (skips existing), writes a `.generated.json` provenance manifest. +- `scripts/faceswap-images.py` — `--issue NN --source ` (default `~/Bilder/palina.webp`). Runs FaceFusion `batch-run` (via `~/Projekte/facefusion/.venv`) once over the whole issue, swapping in one consistent face; writes back in place. `--enhance` adds the face_enhancer pass. Idempotent via `issue-NN.faceswap.json` keyed on the source hash. +- `scripts/upscale-images.py` — `--issue NN`. Runs `upscayl-bin` (`/usr/share/upscayl/bin`) with the `remacri-4x` model once over the issue, then clamps the long edge to `--max-edge` (default 4992 ≈ issue-01 sources) with ImageMagick; writes back in place. Idempotent via `issue-NN.upscale.json`. +- `scripts/build-issue.py` — generic; reads the same prompts JSON, writes `content/posts/NN//index.md` (plate numbers by stable slug sort), `featured` sourced from the JSON. +- `data/prompts/issue-NN.json` — array of `{slug, title, category, tags, description, prompt, featured?}`. `data/` is gitignored: the prompts file and the `*.generated/faceswap/upscale.json` manifests are local pipeline scratch, not committed. The plate bundles under `content/posts/NN/` are the tracked output. + +Full pipeline order: `generate-images` → `faceswap-images` → `upscale-images` → `build-issue`. All four operate on `content/posts/NN//.png` in place and are individually idempotent; pass `--out DIR` to any of the image scripts to stage results without touching the bundles (that run is then untracked). ### Hugo params (hugo.toml) -`issueNumber`, `issueName`, `issueSeason`, `issueBlurb` are fallback values used when `$.Site.GetPage "/issues/01"` returns nil. `issueIds` drives the issues terms page. `umamiSrc`/`umamiId` are injected only in production (`hugo.IsProduction`). +`issueNumber`, `issueName`, `issueSeason`, `issueBlurb` are fallback values used when `$.Site.GetPage "/issues/"` returns nil. `issueIds` (newest-first) drives the issues terms page order. `umamiSrc`/`umamiId` are injected only in production (`hugo.IsProduction`). ### nginx -`nginx.conf` at repo root is the production server config (used in Docker). `error_page 404 /404.html` is already wired. +`nginx.conf` at repo root is the production server config (used in Docker). `error_page 404 /404.html` is already wired. A `location ~ ^/posts/(?!0[12]/)…` block 301-redirects the legacy flat issue-01 plate URLs (`/posts//`) to their new home under `/posts/01//`; extend the negative-lookahead when adding issue 03+. diff --git a/Dockerfile b/Dockerfile index 0e9ef07..e03df9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,23 +1,18 @@ -### Stage 1: Build CSS with Tailwind v4 -FROM node:20-alpine AS tailwind -WORKDIR /build -COPY package.json pnpm-lock.yaml* ./ -RUN npm install -g pnpm && pnpm install --frozen-lockfile -COPY assets/css ./assets/css -COPY layouts ./layouts -RUN pnpm build:css - -### Stage 2: Build site with Hugo Extended -FROM hugomods/hugo:exts-0.154.3 AS hugo +### Stage 1: Build the site with Hugo Extended + Node (Tailwind runs inside Hugo) +FROM hugomods/hugo:debian-node-0.165.0 AS hugo WORKDIR /site -# Copy everything EXCEPT node_modules -COPY . . -COPY --from=tailwind /build/static/css/main.css static/css/main.css -# Content images are baked in via the import script; make sure they exist -RUN hugo --minify --environment production +# Install JS deps first so this layer caches independently of content changes. +# Hugo's css.TailwindCSS execs node_modules/.bin/tailwindcss during the build; +# pnpm-workspace.yaml sets preferSymlinkedExecutables so that shim is a symlink +# Hugo accepts. +COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./ +RUN npm install -g pnpm && pnpm install --frozen-lockfile -### Stage 3: Serve with nginx +COPY . . +RUN hugo --minify --gc --environment production + +### Stage 2: Serve with nginx FROM nginx:1.27-alpine COPY --from=hugo /site/public /usr/share/nginx/html COPY nginx.conf /etc/nginx/conf.d/default.conf diff --git a/README.md b/README.md index 7e4793e..352e72a 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ Editorial, couture, beauty and backstage plates. | Layer | Tool | |---|---| -| Static site generator | Hugo Extended | -| CSS | Tailwind CSS v4 | +| Static site generator | Hugo Extended (≥ 0.161) | +| CSS | Tailwind CSS v4, compiled by Hugo's `css.TailwindCSS` | | JavaScript | Vanilla (no framework) | | Package manager | pnpm | | Server | nginx (Docker) | @@ -20,32 +20,66 @@ Editorial, couture, beauty and backstage plates. ## Development ```bash -pnpm install -pnpm dev # Tailwind watch + Hugo dev server (http://localhost:1313) +pnpm install # installs @tailwindcss/cli (Hugo shells out to it) +pnpm dev # hugo server -D → http://localhost:1313 ``` +Hugo builds the CSS itself via `css.TailwindCSS` (see `layouts/partials/css.html`), +watches `assets/`, and hot-reloads. There is no separate CSS build step or watcher. +Requires `node` on `PATH` — Hugo execs `node_modules/.bin/tailwindcss`. + ## Build ```bash -pnpm build # compile CSS → hugo --minify → public/ +pnpm build # hugo --minify → public/ ``` -The compiled CSS at `static/css/main.css` is a build artefact and gitignored. Always run `pnpm build:css` (or `pnpm build`) before committing changes that affect Tailwind output. +CSS is emitted as a fingerprinted, integrity-hashed resource under `public/css/`; +`hugo_stats.json` (the class list Tailwind scans) is generated on every build and +gitignored. + +`pnpm-workspace.yaml` sets `preferSymlinkedExecutables: true` so pnpm links +`node_modules/.bin/tailwindcss` as a symlink — Hugo rejects pnpm's default shell +shim (`binary "tailwindcss" is not a Node.js script`). ## Content -Posts live in `content/posts//` as Hugo page bundles. Each bundle contains: +Posts live in `content/posts///` as Hugo page bundles (e.g. +`content/posts/01/…`, `content/posts/02/…`). Each bundle contains: - `index.md` — frontmatter with `plate`, `title`, `description`, `categories`, `tags`, `issues`, optional `featured: true` - `.png` — the plate image (used for thumbnails, lightbox, og:image) -Issues are defined in `content/issues//_index.md`. +`content/posts//_index.md` carries `build.render: never` so only `/posts///` +pages are emitted — the per-issue landing page is the taxonomy term at `/issues//`. +Issue membership is the `issues` taxonomy; each issue also has a branch bundle at +`content/issues//_index.md` (`title`, `description`, `issueNumber`, `season`, `status`). -### Importing posts +### Adding a new issue -Content is sourced from `~/projects/ginger/posts.csv` and matching images in `~/projects/ginger/images/final/selected/`: +1. Write `data/prompts/issue-NN.json` — an array of `{slug, title, category, tags, description, prompt, featured?}`. +2. Generate images: `python3 scripts/generate-images.py --prompts data/prompts/issue-NN.json --issue NN` + (Replicate `flux-1.1-pro` by default; token from `$REPLICATE_API_TOKEN` or `~/.env`). +3. Face-swap one consistent model into every plate: + `python3 scripts/faceswap-images.py --issue NN --source ~/Bilder/palina.webp` + (FaceFusion at `~/Projekte/facefusion`; add `--enhance` for a sharper face pass). +4. Upscale: `python3 scripts/upscale-images.py --issue NN` + (Upscayl + the `remacri-4x` model, then clamped to a 4992 px long edge; `--scale 2` or + `--max-edge 2880` keeps the committed PNGs lean). +5. Build the bundles: `python3 scripts/build-issue.py --issue NN --prompts data/prompts/issue-NN.json` +6. Add `content/issues/NN/_index.md`, add `content/posts/NN/_index.md` (`build.render: never`), + flip the previous issue's `status` away from `current`, and update `hugo.toml` `[params]` + (`issueIds`, `issueNumber`, `issueName`, `issueSeason`, `issueBlurb`). + +Steps 2–4 all write `content/posts/NN//.png` in place and are each idempotent +(re-run to finish a failed batch; `--force` to redo). Pass `--out DIR` to stage instead. + +### Importing issue 01 + +Issue 01 is sourced from `~/projects/ginger/posts.csv` and matching images in +`~/projects/ginger/images/final/selected/`: ```bash -python3 scripts/import-posts.py +python3 scripts/import-posts.py # writes content/posts/01/ ``` This creates or updates page bundles, assigns plate numbers (sorted alphabetically by filename for stability), normalises descriptions, and copies images. @@ -58,7 +92,15 @@ Key tokens: `--color-paper` `--color-ink` `--color-roux` `--font-display` `--fon ## Deployment -The repo includes `nginx.conf` and a `Dockerfile` for containerised deployment. Build the image and serve `public/` via nginx. Analytics (Umami) are injected only when `HUGO_ENVIRONMENT=production`. +`Dockerfile` is a two-stage build: `hugomods/hugo:debian-node-*` runs +`pnpm install` then `hugo --minify --environment production` (Hugo compiles +Tailwind in-process — no pre-build CSS step), and `nginx:alpine` serves the +result with `nginx.conf`. Analytics (Umami) are injected only in the production +environment. + +`nginx.conf` also 301-redirects the legacy flat issue-01 plate URLs +(`/posts//` → `/posts/01//`); widen its negative-lookahead when +adding issue 03+. ## License diff --git a/assets/css/main.css b/assets/css/main.css index ff197ce..80b921c 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1,4 +1,5 @@ @import "tailwindcss"; +@source "hugo_stats.json"; @custom-variant hover (&:hover); @@ -138,7 +139,8 @@ mark.hl { background: color-mix(in oklab, var(--roux) 22%, transparent); color: .lb { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto auto; grid-template-areas: "topbar" "stage" "meta" "thumbs"; } } .lb-topbar { grid-area: topbar; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 22px; border-bottom: 1px solid rgba(236,231,221,.08); } -.lb-brand { display: flex; align-items: center; gap: 14px; font: 500 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #c8c0b1; min-width: 0; overflow: hidden; } +.lb-brand { display: flex; align-items: center; gap: 14px; font: 500 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #c8c0b1; min-width: 0; overflow: hidden; transition: opacity .2s; } +.lb-brand:hover { opacity: .7; } .lb-brand svg { height: 18px; } .lb-index { font: 500 11px/1 var(--mono); letter-spacing: .14em; color: #c8c0b1; font-variant-numeric: tabular-nums; } .lb-index b { color: #ece7dd; } @@ -156,6 +158,8 @@ mark.hl { background: color-mix(in oklab, var(--roux) 22%, transparent); color: .lb-meta { grid-area: meta; padding: 28px 28px 22px; border-left: 1px solid rgba(236,231,221,.08); display: flex; flex-direction: column; gap: 18px; overflow: auto; } @media (max-width: 920px) { .lb-meta { border-left: 0; border-top: 1px solid rgba(236,231,221,.08); padding: 18px 22px; max-height: 38vh; } } .lb-cat { font: 500 11px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--roux); } +.lb-cat a { transition: opacity .2s; } +.lb-cat a:hover { opacity: .65; } .lb-cat::after { content: ""; display: block; height: 1px; width: 30px; background: var(--roux); margin-top: 8px; } .lb-title { margin: 0; font: 400 clamp(32px,3vw,44px)/1 var(--display); letter-spacing: -0.005em; color: #f5f0e6; } .lb-title em { font-family: var(--serif); font-style: italic; color: #d99e8e; font-weight: 300; } diff --git a/content/issues/01/_index.md b/content/issues/01/_index.md index 3627207..868e2a8 100644 --- a/content/issues/01/_index.md +++ b/content/issues/01/_index.md @@ -3,5 +3,5 @@ title: "Devotion" description: "One hundred plates devoted to a single presence — photographed across worlds, light, and time." issueNumber: "№ 01" season: "Spring MMXXVI" -status: "current" +status: "archived" --- diff --git a/content/issues/02/_index.md b/content/issues/02/_index.md new file mode 100644 index 0000000..5fe8fbc --- /dev/null +++ b/content/issues/02/_index.md @@ -0,0 +1,7 @@ +--- +title: "Obsession" +description: "One hundred plates in thrall to a single body — a bared shoulder, a parted mouth, silk slipping loose." +issueNumber: "№ 02" +season: "Autumn MMXXVI" +status: "current" +--- diff --git a/content/posts/01/_index.md b/content/posts/01/_index.md new file mode 100644 index 0000000..59f8382 --- /dev/null +++ b/content/posts/01/_index.md @@ -0,0 +1,6 @@ +--- +title: "Issue № 01 — Devotion" +build: + render: never + list: never +--- diff --git a/content/posts/armored-chains-city-fire/armored-chains-city-fire.png b/content/posts/01/armored-chains-city-fire/armored-chains-city-fire.png similarity index 100% rename from content/posts/armored-chains-city-fire/armored-chains-city-fire.png rename to content/posts/01/armored-chains-city-fire/armored-chains-city-fire.png diff --git a/content/posts/armored-chains-city-fire/index.md b/content/posts/01/armored-chains-city-fire/index.md similarity index 100% rename from content/posts/armored-chains-city-fire/index.md rename to content/posts/01/armored-chains-city-fire/index.md diff --git a/content/posts/armored-warrior-poppy-fields/armored-warrior-poppy-fields.png b/content/posts/01/armored-warrior-poppy-fields/armored-warrior-poppy-fields.png similarity index 100% rename from content/posts/armored-warrior-poppy-fields/armored-warrior-poppy-fields.png rename to content/posts/01/armored-warrior-poppy-fields/armored-warrior-poppy-fields.png diff --git a/content/posts/armored-warrior-poppy-fields/index.md b/content/posts/01/armored-warrior-poppy-fields/index.md similarity index 100% rename from content/posts/armored-warrior-poppy-fields/index.md rename to content/posts/01/armored-warrior-poppy-fields/index.md diff --git a/content/posts/autumn-glamour-in-the-park/autumn-glamour-in-the-park.png b/content/posts/01/autumn-glamour-in-the-park/autumn-glamour-in-the-park.png similarity index 100% rename from content/posts/autumn-glamour-in-the-park/autumn-glamour-in-the-park.png rename to content/posts/01/autumn-glamour-in-the-park/autumn-glamour-in-the-park.png diff --git a/content/posts/autumn-glamour-in-the-park/index.md b/content/posts/01/autumn-glamour-in-the-park/index.md similarity index 100% rename from content/posts/autumn-glamour-in-the-park/index.md rename to content/posts/01/autumn-glamour-in-the-park/index.md diff --git a/content/posts/baroque-hall-red-corset/baroque-hall-red-corset.png b/content/posts/01/baroque-hall-red-corset/baroque-hall-red-corset.png similarity index 100% rename from content/posts/baroque-hall-red-corset/baroque-hall-red-corset.png rename to content/posts/01/baroque-hall-red-corset/baroque-hall-red-corset.png diff --git a/content/posts/baroque-hall-red-corset/index.md b/content/posts/01/baroque-hall-red-corset/index.md similarity index 100% rename from content/posts/baroque-hall-red-corset/index.md rename to content/posts/01/baroque-hall-red-corset/index.md diff --git a/content/posts/bioluminescent-beauty-at-twilight/bioluminescent-beauty-at-twilight.png b/content/posts/01/bioluminescent-beauty-at-twilight/bioluminescent-beauty-at-twilight.png similarity index 100% rename from content/posts/bioluminescent-beauty-at-twilight/bioluminescent-beauty-at-twilight.png rename to content/posts/01/bioluminescent-beauty-at-twilight/bioluminescent-beauty-at-twilight.png diff --git a/content/posts/bioluminescent-beauty-at-twilight/index.md b/content/posts/01/bioluminescent-beauty-at-twilight/index.md similarity index 100% rename from content/posts/bioluminescent-beauty-at-twilight/index.md rename to content/posts/01/bioluminescent-beauty-at-twilight/index.md diff --git a/content/posts/cyber-huntress-on-wet-streets/cyber-huntress-on-wet-streets.png b/content/posts/01/cyber-huntress-on-wet-streets/cyber-huntress-on-wet-streets.png similarity index 100% rename from content/posts/cyber-huntress-on-wet-streets/cyber-huntress-on-wet-streets.png rename to content/posts/01/cyber-huntress-on-wet-streets/cyber-huntress-on-wet-streets.png diff --git a/content/posts/cyber-huntress-on-wet-streets/index.md b/content/posts/01/cyber-huntress-on-wet-streets/index.md similarity index 100% rename from content/posts/cyber-huntress-on-wet-streets/index.md rename to content/posts/01/cyber-huntress-on-wet-streets/index.md diff --git a/content/posts/cyberpunk-femme-in-the-downpour/cyberpunk-femme-in-the-downpour.png b/content/posts/01/cyberpunk-femme-in-the-downpour/cyberpunk-femme-in-the-downpour.png similarity index 100% rename from content/posts/cyberpunk-femme-in-the-downpour/cyberpunk-femme-in-the-downpour.png rename to content/posts/01/cyberpunk-femme-in-the-downpour/cyberpunk-femme-in-the-downpour.png diff --git a/content/posts/cyberpunk-femme-in-the-downpour/index.md b/content/posts/01/cyberpunk-femme-in-the-downpour/index.md similarity index 100% rename from content/posts/cyberpunk-femme-in-the-downpour/index.md rename to content/posts/01/cyberpunk-femme-in-the-downpour/index.md diff --git a/content/posts/cyberpunk-night-pursuit/cyberpunk-night-pursuit.png b/content/posts/01/cyberpunk-night-pursuit/cyberpunk-night-pursuit.png similarity index 100% rename from content/posts/cyberpunk-night-pursuit/cyberpunk-night-pursuit.png rename to content/posts/01/cyberpunk-night-pursuit/cyberpunk-night-pursuit.png diff --git a/content/posts/cyberpunk-night-pursuit/index.md b/content/posts/01/cyberpunk-night-pursuit/index.md similarity index 100% rename from content/posts/cyberpunk-night-pursuit/index.md rename to content/posts/01/cyberpunk-night-pursuit/index.md diff --git a/content/posts/cyberpunk-rain-street-fighter/cyberpunk-rain-street-fighter.png b/content/posts/01/cyberpunk-rain-street-fighter/cyberpunk-rain-street-fighter.png similarity index 100% rename from content/posts/cyberpunk-rain-street-fighter/cyberpunk-rain-street-fighter.png rename to content/posts/01/cyberpunk-rain-street-fighter/cyberpunk-rain-street-fighter.png diff --git a/content/posts/cyberpunk-rain-street-fighter/index.md b/content/posts/01/cyberpunk-rain-street-fighter/index.md similarity index 100% rename from content/posts/cyberpunk-rain-street-fighter/index.md rename to content/posts/01/cyberpunk-rain-street-fighter/index.md diff --git a/content/posts/dark-angel-in-the-jungle/dark-angel-in-the-jungle.png b/content/posts/01/dark-angel-in-the-jungle/dark-angel-in-the-jungle.png similarity index 100% rename from content/posts/dark-angel-in-the-jungle/dark-angel-in-the-jungle.png rename to content/posts/01/dark-angel-in-the-jungle/dark-angel-in-the-jungle.png diff --git a/content/posts/dark-angel-in-the-jungle/index.md b/content/posts/01/dark-angel-in-the-jungle/index.md similarity index 100% rename from content/posts/dark-angel-in-the-jungle/index.md rename to content/posts/01/dark-angel-in-the-jungle/index.md diff --git a/content/posts/dark-cabaret-on-stone-steps/dark-cabaret-on-stone-steps.png b/content/posts/01/dark-cabaret-on-stone-steps/dark-cabaret-on-stone-steps.png similarity index 100% rename from content/posts/dark-cabaret-on-stone-steps/dark-cabaret-on-stone-steps.png rename to content/posts/01/dark-cabaret-on-stone-steps/dark-cabaret-on-stone-steps.png diff --git a/content/posts/dark-cabaret-on-stone-steps/index.md b/content/posts/01/dark-cabaret-on-stone-steps/index.md similarity index 100% rename from content/posts/dark-cabaret-on-stone-steps/index.md rename to content/posts/01/dark-cabaret-on-stone-steps/index.md diff --git a/content/posts/dark-fairy-rose-throne/dark-fairy-rose-throne.png b/content/posts/01/dark-fairy-rose-throne/dark-fairy-rose-throne.png similarity index 100% rename from content/posts/dark-fairy-rose-throne/dark-fairy-rose-throne.png rename to content/posts/01/dark-fairy-rose-throne/dark-fairy-rose-throne.png diff --git a/content/posts/dark-fairy-rose-throne/index.md b/content/posts/01/dark-fairy-rose-throne/index.md similarity index 100% rename from content/posts/dark-fairy-rose-throne/index.md rename to content/posts/01/dark-fairy-rose-throne/index.md diff --git a/content/posts/dark-forest-cyber-warrior/dark-forest-cyber-warrior.png b/content/posts/01/dark-forest-cyber-warrior/dark-forest-cyber-warrior.png similarity index 100% rename from content/posts/dark-forest-cyber-warrior/dark-forest-cyber-warrior.png rename to content/posts/01/dark-forest-cyber-warrior/dark-forest-cyber-warrior.png diff --git a/content/posts/dark-forest-cyber-warrior/index.md b/content/posts/01/dark-forest-cyber-warrior/index.md similarity index 100% rename from content/posts/dark-forest-cyber-warrior/index.md rename to content/posts/01/dark-forest-cyber-warrior/index.md diff --git a/content/posts/dark-geisha-ronin/dark-geisha-ronin.png b/content/posts/01/dark-geisha-ronin/dark-geisha-ronin.png similarity index 100% rename from content/posts/dark-geisha-ronin/dark-geisha-ronin.png rename to content/posts/01/dark-geisha-ronin/dark-geisha-ronin.png diff --git a/content/posts/dark-geisha-ronin/index.md b/content/posts/01/dark-geisha-ronin/index.md similarity index 100% rename from content/posts/dark-geisha-ronin/index.md rename to content/posts/01/dark-geisha-ronin/index.md diff --git a/content/posts/dark-manor-corset-queen/dark-manor-corset-queen.png b/content/posts/01/dark-manor-corset-queen/dark-manor-corset-queen.png similarity index 100% rename from content/posts/dark-manor-corset-queen/dark-manor-corset-queen.png rename to content/posts/01/dark-manor-corset-queen/dark-manor-corset-queen.png diff --git a/content/posts/dark-manor-corset-queen/index.md b/content/posts/01/dark-manor-corset-queen/index.md similarity index 100% rename from content/posts/dark-manor-corset-queen/index.md rename to content/posts/01/dark-manor-corset-queen/index.md diff --git a/content/posts/dark-pirate-in-cobbled-alley/dark-pirate-in-cobbled-alley.png b/content/posts/01/dark-pirate-in-cobbled-alley/dark-pirate-in-cobbled-alley.png similarity index 100% rename from content/posts/dark-pirate-in-cobbled-alley/dark-pirate-in-cobbled-alley.png rename to content/posts/01/dark-pirate-in-cobbled-alley/dark-pirate-in-cobbled-alley.png diff --git a/content/posts/dark-pirate-in-cobbled-alley/index.md b/content/posts/01/dark-pirate-in-cobbled-alley/index.md similarity index 100% rename from content/posts/dark-pirate-in-cobbled-alley/index.md rename to content/posts/01/dark-pirate-in-cobbled-alley/index.md diff --git a/content/posts/dark-sovereign-with-black-cape/dark-sovereign-with-black-cape.png b/content/posts/01/dark-sovereign-with-black-cape/dark-sovereign-with-black-cape.png similarity index 100% rename from content/posts/dark-sovereign-with-black-cape/dark-sovereign-with-black-cape.png rename to content/posts/01/dark-sovereign-with-black-cape/dark-sovereign-with-black-cape.png diff --git a/content/posts/dark-sovereign-with-black-cape/index.md b/content/posts/01/dark-sovereign-with-black-cape/index.md similarity index 100% rename from content/posts/dark-sovereign-with-black-cape/index.md rename to content/posts/01/dark-sovereign-with-black-cape/index.md diff --git a/content/posts/dark-valkyrie-rising/dark-valkyrie-rising.png b/content/posts/01/dark-valkyrie-rising/dark-valkyrie-rising.png similarity index 100% rename from content/posts/dark-valkyrie-rising/dark-valkyrie-rising.png rename to content/posts/01/dark-valkyrie-rising/dark-valkyrie-rising.png diff --git a/content/posts/dark-valkyrie-rising/index.md b/content/posts/01/dark-valkyrie-rising/index.md similarity index 100% rename from content/posts/dark-valkyrie-rising/index.md rename to content/posts/01/dark-valkyrie-rising/index.md diff --git a/content/posts/demon-horns-red-throne/demon-horns-red-throne.png b/content/posts/01/demon-horns-red-throne/demon-horns-red-throne.png similarity index 100% rename from content/posts/demon-horns-red-throne/demon-horns-red-throne.png rename to content/posts/01/demon-horns-red-throne/demon-horns-red-throne.png diff --git a/content/posts/demon-horns-red-throne/index.md b/content/posts/01/demon-horns-red-throne/index.md similarity index 100% rename from content/posts/demon-horns-red-throne/index.md rename to content/posts/01/demon-horns-red-throne/index.md diff --git a/content/posts/desert-queen-under-stars/desert-queen-under-stars.png b/content/posts/01/desert-queen-under-stars/desert-queen-under-stars.png similarity index 100% rename from content/posts/desert-queen-under-stars/desert-queen-under-stars.png rename to content/posts/01/desert-queen-under-stars/desert-queen-under-stars.png diff --git a/content/posts/desert-queen-under-stars/index.md b/content/posts/01/desert-queen-under-stars/index.md similarity index 100% rename from content/posts/desert-queen-under-stars/index.md rename to content/posts/01/desert-queen-under-stars/index.md diff --git a/content/posts/elven-enchantress-among-serpents/elven-enchantress-among-serpents.png b/content/posts/01/elven-enchantress-among-serpents/elven-enchantress-among-serpents.png similarity index 100% rename from content/posts/elven-enchantress-among-serpents/elven-enchantress-among-serpents.png rename to content/posts/01/elven-enchantress-among-serpents/elven-enchantress-among-serpents.png diff --git a/content/posts/elven-enchantress-among-serpents/index.md b/content/posts/01/elven-enchantress-among-serpents/index.md similarity index 100% rename from content/posts/elven-enchantress-among-serpents/index.md rename to content/posts/01/elven-enchantress-among-serpents/index.md diff --git a/content/posts/fairytale-queen-by-night-castle/fairytale-queen-by-night-castle.png b/content/posts/01/fairytale-queen-by-night-castle/fairytale-queen-by-night-castle.png similarity index 100% rename from content/posts/fairytale-queen-by-night-castle/fairytale-queen-by-night-castle.png rename to content/posts/01/fairytale-queen-by-night-castle/fairytale-queen-by-night-castle.png diff --git a/content/posts/fairytale-queen-by-night-castle/index.md b/content/posts/01/fairytale-queen-by-night-castle/index.md similarity index 100% rename from content/posts/fairytale-queen-by-night-castle/index.md rename to content/posts/01/fairytale-queen-by-night-castle/index.md diff --git a/content/posts/fire-warrior-storms-the-forest/fire-warrior-storms-the-forest.png b/content/posts/01/fire-warrior-storms-the-forest/fire-warrior-storms-the-forest.png similarity index 100% rename from content/posts/fire-warrior-storms-the-forest/fire-warrior-storms-the-forest.png rename to content/posts/01/fire-warrior-storms-the-forest/fire-warrior-storms-the-forest.png diff --git a/content/posts/fire-warrior-storms-the-forest/index.md b/content/posts/01/fire-warrior-storms-the-forest/index.md similarity index 100% rename from content/posts/fire-warrior-storms-the-forest/index.md rename to content/posts/01/fire-warrior-storms-the-forest/index.md diff --git a/content/posts/firestorm-city-warrior/firestorm-city-warrior.png b/content/posts/01/firestorm-city-warrior/firestorm-city-warrior.png similarity index 100% rename from content/posts/firestorm-city-warrior/firestorm-city-warrior.png rename to content/posts/01/firestorm-city-warrior/firestorm-city-warrior.png diff --git a/content/posts/firestorm-city-warrior/index.md b/content/posts/01/firestorm-city-warrior/index.md similarity index 100% rename from content/posts/firestorm-city-warrior/index.md rename to content/posts/01/firestorm-city-warrior/index.md diff --git a/content/posts/floral-silk-urban-dusk/floral-silk-urban-dusk.png b/content/posts/01/floral-silk-urban-dusk/floral-silk-urban-dusk.png similarity index 100% rename from content/posts/floral-silk-urban-dusk/floral-silk-urban-dusk.png rename to content/posts/01/floral-silk-urban-dusk/floral-silk-urban-dusk.png diff --git a/content/posts/floral-silk-urban-dusk/index.md b/content/posts/01/floral-silk-urban-dusk/index.md similarity index 100% rename from content/posts/floral-silk-urban-dusk/index.md rename to content/posts/01/floral-silk-urban-dusk/index.md diff --git a/content/posts/forest-fairy-in-gold/forest-fairy-in-gold.png b/content/posts/01/forest-fairy-in-gold/forest-fairy-in-gold.png similarity index 100% rename from content/posts/forest-fairy-in-gold/forest-fairy-in-gold.png rename to content/posts/01/forest-fairy-in-gold/forest-fairy-in-gold.png diff --git a/content/posts/forest-fairy-in-gold/index.md b/content/posts/01/forest-fairy-in-gold/index.md similarity index 100% rename from content/posts/forest-fairy-in-gold/index.md rename to content/posts/01/forest-fairy-in-gold/index.md diff --git a/content/posts/futuristic-warrior-rain-stance/futuristic-warrior-rain-stance.png b/content/posts/01/futuristic-warrior-rain-stance/futuristic-warrior-rain-stance.png similarity index 100% rename from content/posts/futuristic-warrior-rain-stance/futuristic-warrior-rain-stance.png rename to content/posts/01/futuristic-warrior-rain-stance/futuristic-warrior-rain-stance.png diff --git a/content/posts/futuristic-warrior-rain-stance/index.md b/content/posts/01/futuristic-warrior-rain-stance/index.md similarity index 100% rename from content/posts/futuristic-warrior-rain-stance/index.md rename to content/posts/01/futuristic-warrior-rain-stance/index.md diff --git a/content/posts/garden-glamour-in-black-latex/garden-glamour-in-black-latex.png b/content/posts/01/garden-glamour-in-black-latex/garden-glamour-in-black-latex.png similarity index 100% rename from content/posts/garden-glamour-in-black-latex/garden-glamour-in-black-latex.png rename to content/posts/01/garden-glamour-in-black-latex/garden-glamour-in-black-latex.png diff --git a/content/posts/garden-glamour-in-black-latex/index.md b/content/posts/01/garden-glamour-in-black-latex/index.md similarity index 100% rename from content/posts/garden-glamour-in-black-latex/index.md rename to content/posts/01/garden-glamour-in-black-latex/index.md diff --git a/content/posts/garden-lantern-twilight/garden-lantern-twilight.png b/content/posts/01/garden-lantern-twilight/garden-lantern-twilight.png similarity index 100% rename from content/posts/garden-lantern-twilight/garden-lantern-twilight.png rename to content/posts/01/garden-lantern-twilight/garden-lantern-twilight.png diff --git a/content/posts/garden-lantern-twilight/index.md b/content/posts/01/garden-lantern-twilight/index.md similarity index 100% rename from content/posts/garden-lantern-twilight/index.md rename to content/posts/01/garden-lantern-twilight/index.md diff --git a/content/posts/glamorous-bar-night-out/glamorous-bar-night-out.png b/content/posts/01/glamorous-bar-night-out/glamorous-bar-night-out.png similarity index 100% rename from content/posts/glamorous-bar-night-out/glamorous-bar-night-out.png rename to content/posts/01/glamorous-bar-night-out/glamorous-bar-night-out.png diff --git a/content/posts/glamorous-bar-night-out/index.md b/content/posts/01/glamorous-bar-night-out/index.md similarity index 100% rename from content/posts/glamorous-bar-night-out/index.md rename to content/posts/01/glamorous-bar-night-out/index.md diff --git a/content/posts/goth-latex-night-stand/goth-latex-night-stand.png b/content/posts/01/goth-latex-night-stand/goth-latex-night-stand.png similarity index 100% rename from content/posts/goth-latex-night-stand/goth-latex-night-stand.png rename to content/posts/01/goth-latex-night-stand/goth-latex-night-stand.png diff --git a/content/posts/goth-latex-night-stand/index.md b/content/posts/01/goth-latex-night-stand/index.md similarity index 100% rename from content/posts/goth-latex-night-stand/index.md rename to content/posts/01/goth-latex-night-stand/index.md diff --git a/content/posts/gothic-arch-black-elegance/gothic-arch-black-elegance.png b/content/posts/01/gothic-arch-black-elegance/gothic-arch-black-elegance.png similarity index 100% rename from content/posts/gothic-arch-black-elegance/gothic-arch-black-elegance.png rename to content/posts/01/gothic-arch-black-elegance/gothic-arch-black-elegance.png diff --git a/content/posts/gothic-arch-black-elegance/index.md b/content/posts/01/gothic-arch-black-elegance/index.md similarity index 100% rename from content/posts/gothic-arch-black-elegance/index.md rename to content/posts/01/gothic-arch-black-elegance/index.md diff --git a/content/posts/gothic-cathedral-red-gown/gothic-cathedral-red-gown.png b/content/posts/01/gothic-cathedral-red-gown/gothic-cathedral-red-gown.png similarity index 100% rename from content/posts/gothic-cathedral-red-gown/gothic-cathedral-red-gown.png rename to content/posts/01/gothic-cathedral-red-gown/gothic-cathedral-red-gown.png diff --git a/content/posts/gothic-cathedral-red-gown/index.md b/content/posts/01/gothic-cathedral-red-gown/index.md similarity index 100% rename from content/posts/gothic-cathedral-red-gown/index.md rename to content/posts/01/gothic-cathedral-red-gown/index.md diff --git a/content/posts/gothic-green-enchantress/gothic-green-enchantress.png b/content/posts/01/gothic-green-enchantress/gothic-green-enchantress.png similarity index 100% rename from content/posts/gothic-green-enchantress/gothic-green-enchantress.png rename to content/posts/01/gothic-green-enchantress/gothic-green-enchantress.png diff --git a/content/posts/gothic-green-enchantress/index.md b/content/posts/01/gothic-green-enchantress/index.md similarity index 100% rename from content/posts/gothic-green-enchantress/index.md rename to content/posts/01/gothic-green-enchantress/index.md diff --git a/content/posts/gothic-hall-rock-rebel/gothic-hall-rock-rebel.png b/content/posts/01/gothic-hall-rock-rebel/gothic-hall-rock-rebel.png similarity index 100% rename from content/posts/gothic-hall-rock-rebel/gothic-hall-rock-rebel.png rename to content/posts/01/gothic-hall-rock-rebel/gothic-hall-rock-rebel.png diff --git a/content/posts/gothic-hall-rock-rebel/index.md b/content/posts/01/gothic-hall-rock-rebel/index.md similarity index 100% rename from content/posts/gothic-hall-rock-rebel/index.md rename to content/posts/01/gothic-hall-rock-rebel/index.md diff --git a/content/posts/gothic-temptress-in-the-cathedral/gothic-temptress-in-the-cathedral.png b/content/posts/01/gothic-temptress-in-the-cathedral/gothic-temptress-in-the-cathedral.png similarity index 100% rename from content/posts/gothic-temptress-in-the-cathedral/gothic-temptress-in-the-cathedral.png rename to content/posts/01/gothic-temptress-in-the-cathedral/gothic-temptress-in-the-cathedral.png diff --git a/content/posts/gothic-temptress-in-the-cathedral/index.md b/content/posts/01/gothic-temptress-in-the-cathedral/index.md similarity index 100% rename from content/posts/gothic-temptress-in-the-cathedral/index.md rename to content/posts/01/gothic-temptress-in-the-cathedral/index.md diff --git a/content/posts/graffiti-wall-winter-squat/graffiti-wall-winter-squat.png b/content/posts/01/graffiti-wall-winter-squat/graffiti-wall-winter-squat.png similarity index 100% rename from content/posts/graffiti-wall-winter-squat/graffiti-wall-winter-squat.png rename to content/posts/01/graffiti-wall-winter-squat/graffiti-wall-winter-squat.png diff --git a/content/posts/graffiti-wall-winter-squat/index.md b/content/posts/01/graffiti-wall-winter-squat/index.md similarity index 100% rename from content/posts/graffiti-wall-winter-squat/index.md rename to content/posts/01/graffiti-wall-winter-squat/index.md diff --git a/content/posts/highland-battle-fury/highland-battle-fury.png b/content/posts/01/highland-battle-fury/highland-battle-fury.png similarity index 100% rename from content/posts/highland-battle-fury/highland-battle-fury.png rename to content/posts/01/highland-battle-fury/highland-battle-fury.png diff --git a/content/posts/highland-battle-fury/index.md b/content/posts/01/highland-battle-fury/index.md similarity index 100% rename from content/posts/highland-battle-fury/index.md rename to content/posts/01/highland-battle-fury/index.md diff --git a/content/posts/infernal-pirate-queen/index.md b/content/posts/01/infernal-pirate-queen/index.md similarity index 100% rename from content/posts/infernal-pirate-queen/index.md rename to content/posts/01/infernal-pirate-queen/index.md diff --git a/content/posts/infernal-pirate-queen/infernal-pirate-queen.png b/content/posts/01/infernal-pirate-queen/infernal-pirate-queen.png similarity index 100% rename from content/posts/infernal-pirate-queen/infernal-pirate-queen.png rename to content/posts/01/infernal-pirate-queen/infernal-pirate-queen.png diff --git a/content/posts/iron-heroine-in-the-rain/index.md b/content/posts/01/iron-heroine-in-the-rain/index.md similarity index 100% rename from content/posts/iron-heroine-in-the-rain/index.md rename to content/posts/01/iron-heroine-in-the-rain/index.md diff --git a/content/posts/iron-heroine-in-the-rain/iron-heroine-in-the-rain.png b/content/posts/01/iron-heroine-in-the-rain/iron-heroine-in-the-rain.png similarity index 100% rename from content/posts/iron-heroine-in-the-rain/iron-heroine-in-the-rain.png rename to content/posts/01/iron-heroine-in-the-rain/iron-heroine-in-the-rain.png diff --git a/content/posts/jungle-commando-sci-fi-strike/index.md b/content/posts/01/jungle-commando-sci-fi-strike/index.md similarity index 100% rename from content/posts/jungle-commando-sci-fi-strike/index.md rename to content/posts/01/jungle-commando-sci-fi-strike/index.md diff --git a/content/posts/jungle-commando-sci-fi-strike/jungle-commando-sci-fi-strike.png b/content/posts/01/jungle-commando-sci-fi-strike/jungle-commando-sci-fi-strike.png similarity index 100% rename from content/posts/jungle-commando-sci-fi-strike/jungle-commando-sci-fi-strike.png rename to content/posts/01/jungle-commando-sci-fi-strike/jungle-commando-sci-fi-strike.png diff --git a/content/posts/jungle-horizon-tribal-queen/index.md b/content/posts/01/jungle-horizon-tribal-queen/index.md similarity index 100% rename from content/posts/jungle-horizon-tribal-queen/index.md rename to content/posts/01/jungle-horizon-tribal-queen/index.md diff --git a/content/posts/jungle-horizon-tribal-queen/jungle-horizon-tribal-queen.png b/content/posts/01/jungle-horizon-tribal-queen/jungle-horizon-tribal-queen.png similarity index 100% rename from content/posts/jungle-horizon-tribal-queen/jungle-horizon-tribal-queen.png rename to content/posts/01/jungle-horizon-tribal-queen/jungle-horizon-tribal-queen.png diff --git a/content/posts/kimono-neon-geisha/index.md b/content/posts/01/kimono-neon-geisha/index.md similarity index 100% rename from content/posts/kimono-neon-geisha/index.md rename to content/posts/01/kimono-neon-geisha/index.md diff --git a/content/posts/kimono-neon-geisha/kimono-neon-geisha.png b/content/posts/01/kimono-neon-geisha/kimono-neon-geisha.png similarity index 100% rename from content/posts/kimono-neon-geisha/kimono-neon-geisha.png rename to content/posts/01/kimono-neon-geisha/kimono-neon-geisha.png diff --git a/content/posts/lantern-garden-thai-evening/index.md b/content/posts/01/lantern-garden-thai-evening/index.md similarity index 100% rename from content/posts/lantern-garden-thai-evening/index.md rename to content/posts/01/lantern-garden-thai-evening/index.md diff --git a/content/posts/lantern-garden-thai-evening/lantern-garden-thai-evening.png b/content/posts/01/lantern-garden-thai-evening/lantern-garden-thai-evening.png similarity index 100% rename from content/posts/lantern-garden-thai-evening/lantern-garden-thai-evening.png rename to content/posts/01/lantern-garden-thai-evening/lantern-garden-thai-evening.png diff --git a/content/posts/lantern-glow-onsen-serenity/index.md b/content/posts/01/lantern-glow-onsen-serenity/index.md similarity index 100% rename from content/posts/lantern-glow-onsen-serenity/index.md rename to content/posts/01/lantern-glow-onsen-serenity/index.md diff --git a/content/posts/lantern-glow-onsen-serenity/lantern-glow-onsen-serenity.png b/content/posts/01/lantern-glow-onsen-serenity/lantern-glow-onsen-serenity.png similarity index 100% rename from content/posts/lantern-glow-onsen-serenity/lantern-glow-onsen-serenity.png rename to content/posts/01/lantern-glow-onsen-serenity/lantern-glow-onsen-serenity.png diff --git a/content/posts/latex-elegance-among-hedges/index.md b/content/posts/01/latex-elegance-among-hedges/index.md similarity index 100% rename from content/posts/latex-elegance-among-hedges/index.md rename to content/posts/01/latex-elegance-among-hedges/index.md diff --git a/content/posts/latex-elegance-among-hedges/latex-elegance-among-hedges.png b/content/posts/01/latex-elegance-among-hedges/latex-elegance-among-hedges.png similarity index 100% rename from content/posts/latex-elegance-among-hedges/latex-elegance-among-hedges.png rename to content/posts/01/latex-elegance-among-hedges/latex-elegance-among-hedges.png diff --git a/content/posts/leather-goddess-city-twilight/index.md b/content/posts/01/leather-goddess-city-twilight/index.md similarity index 100% rename from content/posts/leather-goddess-city-twilight/index.md rename to content/posts/01/leather-goddess-city-twilight/index.md diff --git a/content/posts/leather-goddess-city-twilight/leather-goddess-city-twilight.png b/content/posts/01/leather-goddess-city-twilight/leather-goddess-city-twilight.png similarity index 100% rename from content/posts/leather-goddess-city-twilight/leather-goddess-city-twilight.png rename to content/posts/01/leather-goddess-city-twilight/leather-goddess-city-twilight.png diff --git a/content/posts/library-power-silhouette/index.md b/content/posts/01/library-power-silhouette/index.md similarity index 100% rename from content/posts/library-power-silhouette/index.md rename to content/posts/01/library-power-silhouette/index.md diff --git a/content/posts/library-power-silhouette/library-power-silhouette.png b/content/posts/01/library-power-silhouette/library-power-silhouette.png similarity index 100% rename from content/posts/library-power-silhouette/library-power-silhouette.png rename to content/posts/01/library-power-silhouette/library-power-silhouette.png diff --git a/content/posts/luxury-streetwear-noir/index.md b/content/posts/01/luxury-streetwear-noir/index.md similarity index 100% rename from content/posts/luxury-streetwear-noir/index.md rename to content/posts/01/luxury-streetwear-noir/index.md diff --git a/content/posts/luxury-streetwear-noir/luxury-streetwear-noir.png b/content/posts/01/luxury-streetwear-noir/luxury-streetwear-noir.png similarity index 100% rename from content/posts/luxury-streetwear-noir/luxury-streetwear-noir.png rename to content/posts/01/luxury-streetwear-noir/luxury-streetwear-noir.png diff --git a/content/posts/midnight-motorcycle-urban-rider/index.md b/content/posts/01/midnight-motorcycle-urban-rider/index.md similarity index 100% rename from content/posts/midnight-motorcycle-urban-rider/index.md rename to content/posts/01/midnight-motorcycle-urban-rider/index.md diff --git a/content/posts/midnight-motorcycle-urban-rider/midnight-motorcycle-urban-rider.png b/content/posts/01/midnight-motorcycle-urban-rider/midnight-motorcycle-urban-rider.png similarity index 100% rename from content/posts/midnight-motorcycle-urban-rider/midnight-motorcycle-urban-rider.png rename to content/posts/01/midnight-motorcycle-urban-rider/midnight-motorcycle-urban-rider.png diff --git a/content/posts/midnight-rain-dancer/index.md b/content/posts/01/midnight-rain-dancer/index.md similarity index 100% rename from content/posts/midnight-rain-dancer/index.md rename to content/posts/01/midnight-rain-dancer/index.md diff --git a/content/posts/midnight-rain-dancer/midnight-rain-dancer.png b/content/posts/01/midnight-rain-dancer/midnight-rain-dancer.png similarity index 100% rename from content/posts/midnight-rain-dancer/midnight-rain-dancer.png rename to content/posts/01/midnight-rain-dancer/midnight-rain-dancer.png diff --git a/content/posts/monsoon-rain-dance/index.md b/content/posts/01/monsoon-rain-dance/index.md similarity index 100% rename from content/posts/monsoon-rain-dance/index.md rename to content/posts/01/monsoon-rain-dance/index.md diff --git a/content/posts/monsoon-rain-dance/monsoon-rain-dance.png b/content/posts/01/monsoon-rain-dance/monsoon-rain-dance.png similarity index 100% rename from content/posts/monsoon-rain-dance/monsoon-rain-dance.png rename to content/posts/01/monsoon-rain-dance/monsoon-rain-dance.png diff --git a/content/posts/moonlit-bridal-sea-column/index.md b/content/posts/01/moonlit-bridal-sea-column/index.md similarity index 100% rename from content/posts/moonlit-bridal-sea-column/index.md rename to content/posts/01/moonlit-bridal-sea-column/index.md diff --git a/content/posts/moonlit-bridal-sea-column/moonlit-bridal-sea-column.png b/content/posts/01/moonlit-bridal-sea-column/moonlit-bridal-sea-column.png similarity index 100% rename from content/posts/moonlit-bridal-sea-column/moonlit-bridal-sea-column.png rename to content/posts/01/moonlit-bridal-sea-column/moonlit-bridal-sea-column.png diff --git a/content/posts/neon-alley-kimono-tattoo/index.md b/content/posts/01/neon-alley-kimono-tattoo/index.md similarity index 100% rename from content/posts/neon-alley-kimono-tattoo/index.md rename to content/posts/01/neon-alley-kimono-tattoo/index.md diff --git a/content/posts/neon-alley-kimono-tattoo/neon-alley-kimono-tattoo.png b/content/posts/01/neon-alley-kimono-tattoo/neon-alley-kimono-tattoo.png similarity index 100% rename from content/posts/neon-alley-kimono-tattoo/neon-alley-kimono-tattoo.png rename to content/posts/01/neon-alley-kimono-tattoo/neon-alley-kimono-tattoo.png diff --git a/content/posts/neon-kimono-city-night/index.md b/content/posts/01/neon-kimono-city-night/index.md similarity index 100% rename from content/posts/neon-kimono-city-night/index.md rename to content/posts/01/neon-kimono-city-night/index.md diff --git a/content/posts/neon-kimono-city-night/neon-kimono-city-night.png b/content/posts/01/neon-kimono-city-night/neon-kimono-city-night.png similarity index 100% rename from content/posts/neon-kimono-city-night/neon-kimono-city-night.png rename to content/posts/01/neon-kimono-city-night/neon-kimono-city-night.png diff --git a/content/posts/neon-rain-cyber-siren/index.md b/content/posts/01/neon-rain-cyber-siren/index.md similarity index 100% rename from content/posts/neon-rain-cyber-siren/index.md rename to content/posts/01/neon-rain-cyber-siren/index.md diff --git a/content/posts/neon-rain-cyber-siren/neon-rain-cyber-siren.png b/content/posts/01/neon-rain-cyber-siren/neon-rain-cyber-siren.png similarity index 100% rename from content/posts/neon-rain-cyber-siren/neon-rain-cyber-siren.png rename to content/posts/01/neon-rain-cyber-siren/neon-rain-cyber-siren.png diff --git a/content/posts/neon-street-cyber-punk/index.md b/content/posts/01/neon-street-cyber-punk/index.md similarity index 100% rename from content/posts/neon-street-cyber-punk/index.md rename to content/posts/01/neon-street-cyber-punk/index.md diff --git a/content/posts/neon-street-cyber-punk/neon-street-cyber-punk.png b/content/posts/01/neon-street-cyber-punk/neon-street-cyber-punk.png similarity index 100% rename from content/posts/neon-street-cyber-punk/neon-street-cyber-punk.png rename to content/posts/01/neon-street-cyber-punk/neon-street-cyber-punk.png diff --git a/content/posts/neon-vigilante-rainy-streets/index.md b/content/posts/01/neon-vigilante-rainy-streets/index.md similarity index 100% rename from content/posts/neon-vigilante-rainy-streets/index.md rename to content/posts/01/neon-vigilante-rainy-streets/index.md diff --git a/content/posts/neon-vigilante-rainy-streets/neon-vigilante-rainy-streets.png b/content/posts/01/neon-vigilante-rainy-streets/neon-vigilante-rainy-streets.png similarity index 100% rename from content/posts/neon-vigilante-rainy-streets/neon-vigilante-rainy-streets.png rename to content/posts/01/neon-vigilante-rainy-streets/neon-vigilante-rainy-streets.png diff --git a/content/posts/night-market-temptress/index.md b/content/posts/01/night-market-temptress/index.md similarity index 100% rename from content/posts/night-market-temptress/index.md rename to content/posts/01/night-market-temptress/index.md diff --git a/content/posts/night-market-temptress/night-market-temptress.png b/content/posts/01/night-market-temptress/night-market-temptress.png similarity index 100% rename from content/posts/night-market-temptress/night-market-temptress.png rename to content/posts/01/night-market-temptress/night-market-temptress.png diff --git a/content/posts/noir-trench-coat-phantom/index.md b/content/posts/01/noir-trench-coat-phantom/index.md similarity index 100% rename from content/posts/noir-trench-coat-phantom/index.md rename to content/posts/01/noir-trench-coat-phantom/index.md diff --git a/content/posts/noir-trench-coat-phantom/noir-trench-coat-phantom.png b/content/posts/01/noir-trench-coat-phantom/noir-trench-coat-phantom.png similarity index 100% rename from content/posts/noir-trench-coat-phantom/noir-trench-coat-phantom.png rename to content/posts/01/noir-trench-coat-phantom/noir-trench-coat-phantom.png diff --git a/content/posts/norse-shield-maiden-vista/index.md b/content/posts/01/norse-shield-maiden-vista/index.md similarity index 100% rename from content/posts/norse-shield-maiden-vista/index.md rename to content/posts/01/norse-shield-maiden-vista/index.md diff --git a/content/posts/norse-shield-maiden-vista/norse-shield-maiden-vista.png b/content/posts/01/norse-shield-maiden-vista/norse-shield-maiden-vista.png similarity index 100% rename from content/posts/norse-shield-maiden-vista/norse-shield-maiden-vista.png rename to content/posts/01/norse-shield-maiden-vista/norse-shield-maiden-vista.png diff --git a/content/posts/paris-bridge-crimson-dusk/index.md b/content/posts/01/paris-bridge-crimson-dusk/index.md similarity index 100% rename from content/posts/paris-bridge-crimson-dusk/index.md rename to content/posts/01/paris-bridge-crimson-dusk/index.md diff --git a/content/posts/paris-bridge-crimson-dusk/paris-bridge-crimson-dusk.png b/content/posts/01/paris-bridge-crimson-dusk/paris-bridge-crimson-dusk.png similarity index 100% rename from content/posts/paris-bridge-crimson-dusk/paris-bridge-crimson-dusk.png rename to content/posts/01/paris-bridge-crimson-dusk/paris-bridge-crimson-dusk.png diff --git a/content/posts/pink-goth-among-pillars/index.md b/content/posts/01/pink-goth-among-pillars/index.md similarity index 100% rename from content/posts/pink-goth-among-pillars/index.md rename to content/posts/01/pink-goth-among-pillars/index.md diff --git a/content/posts/pink-goth-among-pillars/pink-goth-among-pillars.png b/content/posts/01/pink-goth-among-pillars/pink-goth-among-pillars.png similarity index 100% rename from content/posts/pink-goth-among-pillars/pink-goth-among-pillars.png rename to content/posts/01/pink-goth-among-pillars/pink-goth-among-pillars.png diff --git a/content/posts/pixie-in-blue-command-center/index.md b/content/posts/01/pixie-in-blue-command-center/index.md similarity index 100% rename from content/posts/pixie-in-blue-command-center/index.md rename to content/posts/01/pixie-in-blue-command-center/index.md diff --git a/content/posts/pixie-in-blue-command-center/pixie-in-blue-command-center.png b/content/posts/01/pixie-in-blue-command-center/pixie-in-blue-command-center.png similarity index 100% rename from content/posts/pixie-in-blue-command-center/pixie-in-blue-command-center.png rename to content/posts/01/pixie-in-blue-command-center/pixie-in-blue-command-center.png diff --git a/content/posts/poolside-sunset-meditation/index.md b/content/posts/01/poolside-sunset-meditation/index.md similarity index 100% rename from content/posts/poolside-sunset-meditation/index.md rename to content/posts/01/poolside-sunset-meditation/index.md diff --git a/content/posts/poolside-sunset-meditation/poolside-sunset-meditation.png b/content/posts/01/poolside-sunset-meditation/poolside-sunset-meditation.png similarity index 100% rename from content/posts/poolside-sunset-meditation/poolside-sunset-meditation.png rename to content/posts/01/poolside-sunset-meditation/poolside-sunset-meditation.png diff --git a/content/posts/rain-city-cyber-strike/index.md b/content/posts/01/rain-city-cyber-strike/index.md similarity index 100% rename from content/posts/rain-city-cyber-strike/index.md rename to content/posts/01/rain-city-cyber-strike/index.md diff --git a/content/posts/rain-city-cyber-strike/rain-city-cyber-strike.png b/content/posts/01/rain-city-cyber-strike/rain-city-cyber-strike.png similarity index 100% rename from content/posts/rain-city-cyber-strike/rain-city-cyber-strike.png rename to content/posts/01/rain-city-cyber-strike/rain-city-cyber-strike.png diff --git a/content/posts/rain-drenched-voodoo-warrior/index.md b/content/posts/01/rain-drenched-voodoo-warrior/index.md similarity index 100% rename from content/posts/rain-drenched-voodoo-warrior/index.md rename to content/posts/01/rain-drenched-voodoo-warrior/index.md diff --git a/content/posts/rain-drenched-voodoo-warrior/rain-drenched-voodoo-warrior.png b/content/posts/01/rain-drenched-voodoo-warrior/rain-drenched-voodoo-warrior.png similarity index 100% rename from content/posts/rain-drenched-voodoo-warrior/rain-drenched-voodoo-warrior.png rename to content/posts/01/rain-drenched-voodoo-warrior/rain-drenched-voodoo-warrior.png diff --git a/content/posts/rain-night-action-kick/index.md b/content/posts/01/rain-night-action-kick/index.md similarity index 100% rename from content/posts/rain-night-action-kick/index.md rename to content/posts/01/rain-night-action-kick/index.md diff --git a/content/posts/rain-night-action-kick/rain-night-action-kick.png b/content/posts/01/rain-night-action-kick/rain-night-action-kick.png similarity index 100% rename from content/posts/rain-night-action-kick/rain-night-action-kick.png rename to content/posts/01/rain-night-action-kick/rain-night-action-kick.png diff --git a/content/posts/rainy-city-badass/index.md b/content/posts/01/rainy-city-badass/index.md similarity index 100% rename from content/posts/rainy-city-badass/index.md rename to content/posts/01/rainy-city-badass/index.md diff --git a/content/posts/rainy-city-badass/rainy-city-badass.png b/content/posts/01/rainy-city-badass/rainy-city-badass.png similarity index 100% rename from content/posts/rainy-city-badass/rainy-city-badass.png rename to content/posts/01/rainy-city-badass/rainy-city-badass.png diff --git a/content/posts/rainy-city-black-armor/index.md b/content/posts/01/rainy-city-black-armor/index.md similarity index 100% rename from content/posts/rainy-city-black-armor/index.md rename to content/posts/01/rainy-city-black-armor/index.md diff --git a/content/posts/rainy-city-black-armor/rainy-city-black-armor.png b/content/posts/01/rainy-city-black-armor/rainy-city-black-armor.png similarity index 100% rename from content/posts/rainy-city-black-armor/rainy-city-black-armor.png rename to content/posts/01/rainy-city-black-armor/rainy-city-black-armor.png diff --git a/content/posts/rainy-city-dark-bodysuit/index.md b/content/posts/01/rainy-city-dark-bodysuit/index.md similarity index 100% rename from content/posts/rainy-city-dark-bodysuit/index.md rename to content/posts/01/rainy-city-dark-bodysuit/index.md diff --git a/content/posts/rainy-city-dark-bodysuit/rainy-city-dark-bodysuit.png b/content/posts/01/rainy-city-dark-bodysuit/rainy-city-dark-bodysuit.png similarity index 100% rename from content/posts/rainy-city-dark-bodysuit/rainy-city-dark-bodysuit.png rename to content/posts/01/rainy-city-dark-bodysuit/rainy-city-dark-bodysuit.png diff --git a/content/posts/red-cape-misty-forest/index.md b/content/posts/01/red-cape-misty-forest/index.md similarity index 100% rename from content/posts/red-cape-misty-forest/index.md rename to content/posts/01/red-cape-misty-forest/index.md diff --git a/content/posts/red-cape-misty-forest/red-cape-misty-forest.png b/content/posts/01/red-cape-misty-forest/red-cape-misty-forest.png similarity index 100% rename from content/posts/red-cape-misty-forest/red-cape-misty-forest.png rename to content/posts/01/red-cape-misty-forest/red-cape-misty-forest.png diff --git a/content/posts/red-jacket-urban-athlete/index.md b/content/posts/01/red-jacket-urban-athlete/index.md similarity index 100% rename from content/posts/red-jacket-urban-athlete/index.md rename to content/posts/01/red-jacket-urban-athlete/index.md diff --git a/content/posts/red-jacket-urban-athlete/red-jacket-urban-athlete.png b/content/posts/01/red-jacket-urban-athlete/red-jacket-urban-athlete.png similarity index 100% rename from content/posts/red-jacket-urban-athlete/red-jacket-urban-athlete.png rename to content/posts/01/red-jacket-urban-athlete/red-jacket-urban-athlete.png diff --git a/content/posts/red-lantern-night-soak/index.md b/content/posts/01/red-lantern-night-soak/index.md similarity index 100% rename from content/posts/red-lantern-night-soak/index.md rename to content/posts/01/red-lantern-night-soak/index.md diff --git a/content/posts/red-lantern-night-soak/red-lantern-night-soak.png b/content/posts/01/red-lantern-night-soak/red-lantern-night-soak.png similarity index 100% rename from content/posts/red-lantern-night-soak/red-lantern-night-soak.png rename to content/posts/01/red-lantern-night-soak/red-lantern-night-soak.png diff --git a/content/posts/red-latex-gothic-staircase/index.md b/content/posts/01/red-latex-gothic-staircase/index.md similarity index 100% rename from content/posts/red-latex-gothic-staircase/index.md rename to content/posts/01/red-latex-gothic-staircase/index.md diff --git a/content/posts/red-latex-gothic-staircase/red-latex-gothic-staircase.png b/content/posts/01/red-latex-gothic-staircase/red-latex-gothic-staircase.png similarity index 100% rename from content/posts/red-latex-gothic-staircase/red-latex-gothic-staircase.png rename to content/posts/01/red-latex-gothic-staircase/red-latex-gothic-staircase.png diff --git a/content/posts/red-warrior-rose-lamplight/index.md b/content/posts/01/red-warrior-rose-lamplight/index.md similarity index 100% rename from content/posts/red-warrior-rose-lamplight/index.md rename to content/posts/01/red-warrior-rose-lamplight/index.md diff --git a/content/posts/red-warrior-rose-lamplight/red-warrior-rose-lamplight.png b/content/posts/01/red-warrior-rose-lamplight/red-warrior-rose-lamplight.png similarity index 100% rename from content/posts/red-warrior-rose-lamplight/red-warrior-rose-lamplight.png rename to content/posts/01/red-warrior-rose-lamplight/red-warrior-rose-lamplight.png diff --git a/content/posts/royal-warrior-guards-the-gate/index.md b/content/posts/01/royal-warrior-guards-the-gate/index.md similarity index 100% rename from content/posts/royal-warrior-guards-the-gate/index.md rename to content/posts/01/royal-warrior-guards-the-gate/index.md diff --git a/content/posts/royal-warrior-guards-the-gate/royal-warrior-guards-the-gate.png b/content/posts/01/royal-warrior-guards-the-gate/royal-warrior-guards-the-gate.png similarity index 100% rename from content/posts/royal-warrior-guards-the-gate/royal-warrior-guards-the-gate.png rename to content/posts/01/royal-warrior-guards-the-gate/royal-warrior-guards-the-gate.png diff --git a/content/posts/shield-maiden-defends-the-keep/index.md b/content/posts/01/shield-maiden-defends-the-keep/index.md similarity index 100% rename from content/posts/shield-maiden-defends-the-keep/index.md rename to content/posts/01/shield-maiden-defends-the-keep/index.md diff --git a/content/posts/shield-maiden-defends-the-keep/shield-maiden-defends-the-keep.png b/content/posts/01/shield-maiden-defends-the-keep/shield-maiden-defends-the-keep.png similarity index 100% rename from content/posts/shield-maiden-defends-the-keep/shield-maiden-defends-the-keep.png rename to content/posts/01/shield-maiden-defends-the-keep/shield-maiden-defends-the-keep.png diff --git a/content/posts/silver-dress-by-the-benz/index.md b/content/posts/01/silver-dress-by-the-benz/index.md similarity index 100% rename from content/posts/silver-dress-by-the-benz/index.md rename to content/posts/01/silver-dress-by-the-benz/index.md diff --git a/content/posts/silver-dress-by-the-benz/silver-dress-by-the-benz.png b/content/posts/01/silver-dress-by-the-benz/silver-dress-by-the-benz.png similarity index 100% rename from content/posts/silver-dress-by-the-benz/silver-dress-by-the-benz.png rename to content/posts/01/silver-dress-by-the-benz/silver-dress-by-the-benz.png diff --git a/content/posts/silver-dress-neon-boulevard/index.md b/content/posts/01/silver-dress-neon-boulevard/index.md similarity index 100% rename from content/posts/silver-dress-neon-boulevard/index.md rename to content/posts/01/silver-dress-neon-boulevard/index.md diff --git a/content/posts/silver-dress-neon-boulevard/silver-dress-neon-boulevard.png b/content/posts/01/silver-dress-neon-boulevard/silver-dress-neon-boulevard.png similarity index 100% rename from content/posts/silver-dress-neon-boulevard/silver-dress-neon-boulevard.png rename to content/posts/01/silver-dress-neon-boulevard/silver-dress-neon-boulevard.png diff --git a/content/posts/silver-ruins-swordswoman/index.md b/content/posts/01/silver-ruins-swordswoman/index.md similarity index 100% rename from content/posts/silver-ruins-swordswoman/index.md rename to content/posts/01/silver-ruins-swordswoman/index.md diff --git a/content/posts/silver-ruins-swordswoman/silver-ruins-swordswoman.png b/content/posts/01/silver-ruins-swordswoman/silver-ruins-swordswoman.png similarity index 100% rename from content/posts/silver-ruins-swordswoman/silver-ruins-swordswoman.png rename to content/posts/01/silver-ruins-swordswoman/silver-ruins-swordswoman.png diff --git a/content/posts/stage-siren-in-gold-and-black/index.md b/content/posts/01/stage-siren-in-gold-and-black/index.md similarity index 100% rename from content/posts/stage-siren-in-gold-and-black/index.md rename to content/posts/01/stage-siren-in-gold-and-black/index.md diff --git a/content/posts/stage-siren-in-gold-and-black/stage-siren-in-gold-and-black.png b/content/posts/01/stage-siren-in-gold-and-black/stage-siren-in-gold-and-black.png similarity index 100% rename from content/posts/stage-siren-in-gold-and-black/stage-siren-in-gold-and-black.png rename to content/posts/01/stage-siren-in-gold-and-black/stage-siren-in-gold-and-black.png diff --git a/content/posts/starry-night-luxury-pose/index.md b/content/posts/01/starry-night-luxury-pose/index.md similarity index 100% rename from content/posts/starry-night-luxury-pose/index.md rename to content/posts/01/starry-night-luxury-pose/index.md diff --git a/content/posts/starry-night-luxury-pose/starry-night-luxury-pose.png b/content/posts/01/starry-night-luxury-pose/starry-night-luxury-pose.png similarity index 100% rename from content/posts/starry-night-luxury-pose/starry-night-luxury-pose.png rename to content/posts/01/starry-night-luxury-pose/starry-night-luxury-pose.png diff --git a/content/posts/starship-bridge-sci-fi-pilot/index.md b/content/posts/01/starship-bridge-sci-fi-pilot/index.md similarity index 100% rename from content/posts/starship-bridge-sci-fi-pilot/index.md rename to content/posts/01/starship-bridge-sci-fi-pilot/index.md diff --git a/content/posts/starship-bridge-sci-fi-pilot/starship-bridge-sci-fi-pilot.png b/content/posts/01/starship-bridge-sci-fi-pilot/starship-bridge-sci-fi-pilot.png similarity index 100% rename from content/posts/starship-bridge-sci-fi-pilot/starship-bridge-sci-fi-pilot.png rename to content/posts/01/starship-bridge-sci-fi-pilot/starship-bridge-sci-fi-pilot.png diff --git a/content/posts/steampunk-carnival-gothic-beauty/index.md b/content/posts/01/steampunk-carnival-gothic-beauty/index.md similarity index 100% rename from content/posts/steampunk-carnival-gothic-beauty/index.md rename to content/posts/01/steampunk-carnival-gothic-beauty/index.md diff --git a/content/posts/steampunk-carnival-gothic-beauty/steampunk-carnival-gothic-beauty.png b/content/posts/01/steampunk-carnival-gothic-beauty/steampunk-carnival-gothic-beauty.png similarity index 100% rename from content/posts/steampunk-carnival-gothic-beauty/steampunk-carnival-gothic-beauty.png rename to content/posts/01/steampunk-carnival-gothic-beauty/steampunk-carnival-gothic-beauty.png diff --git a/content/posts/storm-wing-valkyrie/index.md b/content/posts/01/storm-wing-valkyrie/index.md similarity index 100% rename from content/posts/storm-wing-valkyrie/index.md rename to content/posts/01/storm-wing-valkyrie/index.md diff --git a/content/posts/storm-wing-valkyrie/storm-wing-valkyrie.png b/content/posts/01/storm-wing-valkyrie/storm-wing-valkyrie.png similarity index 100% rename from content/posts/storm-wing-valkyrie/storm-wing-valkyrie.png rename to content/posts/01/storm-wing-valkyrie/storm-wing-valkyrie.png diff --git a/content/posts/sun-blessed-warrior-and-wolf/index.md b/content/posts/01/sun-blessed-warrior-and-wolf/index.md similarity index 100% rename from content/posts/sun-blessed-warrior-and-wolf/index.md rename to content/posts/01/sun-blessed-warrior-and-wolf/index.md diff --git a/content/posts/sun-blessed-warrior-and-wolf/sun-blessed-warrior-and-wolf.png b/content/posts/01/sun-blessed-warrior-and-wolf/sun-blessed-warrior-and-wolf.png similarity index 100% rename from content/posts/sun-blessed-warrior-and-wolf/sun-blessed-warrior-and-wolf.png rename to content/posts/01/sun-blessed-warrior-and-wolf/sun-blessed-warrior-and-wolf.png diff --git a/content/posts/sunny-kitchen-city-view/index.md b/content/posts/01/sunny-kitchen-city-view/index.md similarity index 100% rename from content/posts/sunny-kitchen-city-view/index.md rename to content/posts/01/sunny-kitchen-city-view/index.md diff --git a/content/posts/sunny-kitchen-city-view/sunny-kitchen-city-view.png b/content/posts/01/sunny-kitchen-city-view/sunny-kitchen-city-view.png similarity index 100% rename from content/posts/sunny-kitchen-city-view/sunny-kitchen-city-view.png rename to content/posts/01/sunny-kitchen-city-view/sunny-kitchen-city-view.png diff --git a/content/posts/sunset-pagoda-coastal-reclining/index.md b/content/posts/01/sunset-pagoda-coastal-reclining/index.md similarity index 100% rename from content/posts/sunset-pagoda-coastal-reclining/index.md rename to content/posts/01/sunset-pagoda-coastal-reclining/index.md diff --git a/content/posts/sunset-pagoda-coastal-reclining/sunset-pagoda-coastal-reclining.png b/content/posts/01/sunset-pagoda-coastal-reclining/sunset-pagoda-coastal-reclining.png similarity index 100% rename from content/posts/sunset-pagoda-coastal-reclining/sunset-pagoda-coastal-reclining.png rename to content/posts/01/sunset-pagoda-coastal-reclining/sunset-pagoda-coastal-reclining.png diff --git a/content/posts/tattoo-warrior-night-rain/index.md b/content/posts/01/tattoo-warrior-night-rain/index.md similarity index 100% rename from content/posts/tattoo-warrior-night-rain/index.md rename to content/posts/01/tattoo-warrior-night-rain/index.md diff --git a/content/posts/tattoo-warrior-night-rain/tattoo-warrior-night-rain.png b/content/posts/01/tattoo-warrior-night-rain/tattoo-warrior-night-rain.png similarity index 100% rename from content/posts/tattoo-warrior-night-rain/tattoo-warrior-night-rain.png rename to content/posts/01/tattoo-warrior-night-rain/tattoo-warrior-night-rain.png diff --git a/content/posts/tattooed-dusk-ocean-vista/index.md b/content/posts/01/tattooed-dusk-ocean-vista/index.md similarity index 100% rename from content/posts/tattooed-dusk-ocean-vista/index.md rename to content/posts/01/tattooed-dusk-ocean-vista/index.md diff --git a/content/posts/tattooed-dusk-ocean-vista/tattooed-dusk-ocean-vista.png b/content/posts/01/tattooed-dusk-ocean-vista/tattooed-dusk-ocean-vista.png similarity index 100% rename from content/posts/tattooed-dusk-ocean-vista/tattooed-dusk-ocean-vista.png rename to content/posts/01/tattooed-dusk-ocean-vista/tattooed-dusk-ocean-vista.png diff --git a/content/posts/tattooed-goth-garden-portrait/index.md b/content/posts/01/tattooed-goth-garden-portrait/index.md similarity index 100% rename from content/posts/tattooed-goth-garden-portrait/index.md rename to content/posts/01/tattooed-goth-garden-portrait/index.md diff --git a/content/posts/tattooed-goth-garden-portrait/tattooed-goth-garden-portrait.png b/content/posts/01/tattooed-goth-garden-portrait/tattooed-goth-garden-portrait.png similarity index 100% rename from content/posts/tattooed-goth-garden-portrait/tattooed-goth-garden-portrait.png rename to content/posts/01/tattooed-goth-garden-portrait/tattooed-goth-garden-portrait.png diff --git a/content/posts/temple-enchantress-golden-light/index.md b/content/posts/01/temple-enchantress-golden-light/index.md similarity index 100% rename from content/posts/temple-enchantress-golden-light/index.md rename to content/posts/01/temple-enchantress-golden-light/index.md diff --git a/content/posts/temple-enchantress-golden-light/temple-enchantress-golden-light.png b/content/posts/01/temple-enchantress-golden-light/temple-enchantress-golden-light.png similarity index 100% rename from content/posts/temple-enchantress-golden-light/temple-enchantress-golden-light.png rename to content/posts/01/temple-enchantress-golden-light/temple-enchantress-golden-light.png diff --git a/content/posts/temple-raider-ancient-ruins/index.md b/content/posts/01/temple-raider-ancient-ruins/index.md similarity index 100% rename from content/posts/temple-raider-ancient-ruins/index.md rename to content/posts/01/temple-raider-ancient-ruins/index.md diff --git a/content/posts/temple-raider-ancient-ruins/temple-raider-ancient-ruins.png b/content/posts/01/temple-raider-ancient-ruins/temple-raider-ancient-ruins.png similarity index 100% rename from content/posts/temple-raider-ancient-ruins/temple-raider-ancient-ruins.png rename to content/posts/01/temple-raider-ancient-ruins/temple-raider-ancient-ruins.png diff --git a/content/posts/tokyo-white-curve/index.md b/content/posts/01/tokyo-white-curve/index.md similarity index 100% rename from content/posts/tokyo-white-curve/index.md rename to content/posts/01/tokyo-white-curve/index.md diff --git a/content/posts/tokyo-white-curve/tokyo-white-curve.png b/content/posts/01/tokyo-white-curve/tokyo-white-curve.png similarity index 100% rename from content/posts/tokyo-white-curve/tokyo-white-curve.png rename to content/posts/01/tokyo-white-curve/tokyo-white-curve.png diff --git a/content/posts/tropical-goddess-terrace/index.md b/content/posts/01/tropical-goddess-terrace/index.md similarity index 100% rename from content/posts/tropical-goddess-terrace/index.md rename to content/posts/01/tropical-goddess-terrace/index.md diff --git a/content/posts/tropical-goddess-terrace/tropical-goddess-terrace.png b/content/posts/01/tropical-goddess-terrace/tropical-goddess-terrace.png similarity index 100% rename from content/posts/tropical-goddess-terrace/tropical-goddess-terrace.png rename to content/posts/01/tropical-goddess-terrace/tropical-goddess-terrace.png diff --git a/content/posts/underwater-dance-with-sharks/index.md b/content/posts/01/underwater-dance-with-sharks/index.md similarity index 100% rename from content/posts/underwater-dance-with-sharks/index.md rename to content/posts/01/underwater-dance-with-sharks/index.md diff --git a/content/posts/underwater-dance-with-sharks/underwater-dance-with-sharks.png b/content/posts/01/underwater-dance-with-sharks/underwater-dance-with-sharks.png similarity index 100% rename from content/posts/underwater-dance-with-sharks/underwater-dance-with-sharks.png rename to content/posts/01/underwater-dance-with-sharks/underwater-dance-with-sharks.png diff --git a/content/posts/velvet-gown-evening-drive/index.md b/content/posts/01/velvet-gown-evening-drive/index.md similarity index 100% rename from content/posts/velvet-gown-evening-drive/index.md rename to content/posts/01/velvet-gown-evening-drive/index.md diff --git a/content/posts/velvet-gown-evening-drive/velvet-gown-evening-drive.png b/content/posts/01/velvet-gown-evening-drive/velvet-gown-evening-drive.png similarity index 100% rename from content/posts/velvet-gown-evening-drive/velvet-gown-evening-drive.png rename to content/posts/01/velvet-gown-evening-drive/velvet-gown-evening-drive.png diff --git a/content/posts/volcanic-blade-sorceress/index.md b/content/posts/01/volcanic-blade-sorceress/index.md similarity index 100% rename from content/posts/volcanic-blade-sorceress/index.md rename to content/posts/01/volcanic-blade-sorceress/index.md diff --git a/content/posts/volcanic-blade-sorceress/volcanic-blade-sorceress.png b/content/posts/01/volcanic-blade-sorceress/volcanic-blade-sorceress.png similarity index 100% rename from content/posts/volcanic-blade-sorceress/volcanic-blade-sorceress.png rename to content/posts/01/volcanic-blade-sorceress/volcanic-blade-sorceress.png diff --git a/content/posts/wet-street-midnight-noir/index.md b/content/posts/01/wet-street-midnight-noir/index.md similarity index 100% rename from content/posts/wet-street-midnight-noir/index.md rename to content/posts/01/wet-street-midnight-noir/index.md diff --git a/content/posts/wet-street-midnight-noir/wet-street-midnight-noir.png b/content/posts/01/wet-street-midnight-noir/wet-street-midnight-noir.png similarity index 100% rename from content/posts/wet-street-midnight-noir/wet-street-midnight-noir.png rename to content/posts/01/wet-street-midnight-noir/wet-street-midnight-noir.png diff --git a/content/posts/02/_index.md b/content/posts/02/_index.md new file mode 100644 index 0000000..e570cee --- /dev/null +++ b/content/posts/02/_index.md @@ -0,0 +1,6 @@ +--- +title: "Issue № 02 — Obsession" +build: + render: never + list: never +--- diff --git a/content/posts/02/all-crimson-everything/all-crimson-everything.png b/content/posts/02/all-crimson-everything/all-crimson-everything.png new file mode 100644 index 0000000..d6279fd Binary files /dev/null and b/content/posts/02/all-crimson-everything/all-crimson-everything.png differ diff --git a/content/posts/02/all-crimson-everything/index.md b/content/posts/02/all-crimson-everything/index.md new file mode 100644 index 0000000..5de0e5a --- /dev/null +++ b/content/posts/02/all-crimson-everything/index.md @@ -0,0 +1,20 @@ +--- +title: "All Crimson Everything" +description: "A red-haired model in head-to-toe crimson coat, gloves and tights against a crimson backdrop, her hair the only tonal break." +plate: "001" +slug: "all-crimson-everything" +issues: + - "02" +image: "all-crimson-everything.png" +weight: 1 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Crimson" + - "Red" + - "Tonal" + - "Gloves" + - "Saturation" + - "Bold" +--- diff --git a/content/posts/02/aquarium-after-hours/aquarium-after-hours.png b/content/posts/02/aquarium-after-hours/aquarium-after-hours.png new file mode 100644 index 0000000..ca99d09 Binary files /dev/null and b/content/posts/02/aquarium-after-hours/aquarium-after-hours.png differ diff --git a/content/posts/02/aquarium-after-hours/index.md b/content/posts/02/aquarium-after-hours/index.md new file mode 100644 index 0000000..13befb4 --- /dev/null +++ b/content/posts/02/aquarium-after-hours/index.md @@ -0,0 +1,20 @@ +--- +title: "Aquarium After Hours" +description: "A red-haired model in an evening gown against a glowing aquarium tank after hours, fish shadows moving across her face." +plate: "002" +slug: "aquarium-after-hours" +issues: + - "02" +image: "aquarium-after-hours.png" +weight: 2 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Aquarium" + - "Tank" + - "Glow" + - "Fish Shadows" + - "Evening Gown" + - "Dark" +--- diff --git a/content/posts/02/balcony-cigarette-glow/balcony-cigarette-glow.png b/content/posts/02/balcony-cigarette-glow/balcony-cigarette-glow.png new file mode 100644 index 0000000..58baefa Binary files /dev/null and b/content/posts/02/balcony-cigarette-glow/balcony-cigarette-glow.png differ diff --git a/content/posts/02/balcony-cigarette-glow/index.md b/content/posts/02/balcony-cigarette-glow/index.md new file mode 100644 index 0000000..39c9c54 --- /dev/null +++ b/content/posts/02/balcony-cigarette-glow/index.md @@ -0,0 +1,20 @@ +--- +title: "Balcony Cigarette Glow" +description: "A red-haired model in a closed, sash-tied black satin robe at an iron balcony railing at night, the city in soft bokeh, warm light from an open doorway across her face." +plate: "003" +slug: "balcony-cigarette-glow" +issues: + - "02" +image: "balcony-cigarette-glow.png" +weight: 3 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Balcony" + - "City Lights" + - "Bokeh" + - "Satin Robe" + - "Railing" + - "Night" +--- diff --git a/content/posts/02/bare-shoulders-sheet/bare-shoulders-sheet.png b/content/posts/02/bare-shoulders-sheet/bare-shoulders-sheet.png new file mode 100644 index 0000000..5964184 Binary files /dev/null and b/content/posts/02/bare-shoulders-sheet/bare-shoulders-sheet.png differ diff --git a/content/posts/02/bare-shoulders-sheet/index.md b/content/posts/02/bare-shoulders-sheet/index.md new file mode 100644 index 0000000..eea6f1a --- /dev/null +++ b/content/posts/02/bare-shoulders-sheet/index.md @@ -0,0 +1,20 @@ +--- +title: "Bare Shoulders Sheet" +description: "A red-haired model wrapped in a plain white cotton sheet, seated on the floor, soft top light, empty pale room." +plate: "004" +slug: "bare-shoulders-sheet" +issues: + - "02" +image: "bare-shoulders-sheet.png" +weight: 4 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Sheet" + - "White" + - "Seated" + - "Top Light" + - "Bare Shoulders" + - "Empty" +--- diff --git a/content/posts/02/bathtub-reverie/bathtub-reverie.png b/content/posts/02/bathtub-reverie/bathtub-reverie.png new file mode 100644 index 0000000..51cecc4 Binary files /dev/null and b/content/posts/02/bathtub-reverie/bathtub-reverie.png differ diff --git a/content/posts/02/bathtub-reverie/index.md b/content/posts/02/bathtub-reverie/index.md new file mode 100644 index 0000000..bad4807 --- /dev/null +++ b/content/posts/02/bathtub-reverie/index.md @@ -0,0 +1,20 @@ +--- +title: "Bathtub Reverie" +description: "A red-haired model in long black opera gloves and a strapless gown, seated in a candlelit clawfoot tub, one gloved hand along her jaw, warm tungsten light." +plate: "005" +slug: "bathtub-reverie" +issues: + - "02" +image: "bathtub-reverie.png" +weight: 5 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Bath" + - "Opera Gloves" + - "Clawfoot" + - "Candlelight" + - "Brass" + - "Tungsten" +--- diff --git a/content/posts/02/birds-from-the-collar/birds-from-the-collar.png b/content/posts/02/birds-from-the-collar/birds-from-the-collar.png new file mode 100644 index 0000000..3ae5074 Binary files /dev/null and b/content/posts/02/birds-from-the-collar/birds-from-the-collar.png differ diff --git a/content/posts/02/birds-from-the-collar/index.md b/content/posts/02/birds-from-the-collar/index.md new file mode 100644 index 0000000..6758f6e --- /dev/null +++ b/content/posts/02/birds-from-the-collar/index.md @@ -0,0 +1,20 @@ +--- +title: "Birds From The Collar" +description: "A red-haired model a flock of small birds streaming up and out of her open coat collar, plain grey-sky room." +plate: "006" +slug: "birds-from-the-collar" +issues: + - "02" +image: "birds-from-the-collar.png" +weight: 6 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Birds" + - "Collar" + - "Flight" + - "Coat" + - "Escape" + - "Grey" +--- diff --git a/content/posts/02/black-feather-monolith/black-feather-monolith.png b/content/posts/02/black-feather-monolith/black-feather-monolith.png new file mode 100644 index 0000000..c4bf217 Binary files /dev/null and b/content/posts/02/black-feather-monolith/black-feather-monolith.png differ diff --git a/content/posts/02/black-feather-monolith/index.md b/content/posts/02/black-feather-monolith/index.md new file mode 100644 index 0000000..b415f6c --- /dev/null +++ b/content/posts/02/black-feather-monolith/index.md @@ -0,0 +1,20 @@ +--- +title: "Black Feather Monolith" +description: "A red-haired model swallowed by a towering black ostrich-feather cape caught in a wind machine, standing on a raw concrete runway under low raking light." +plate: "007" +slug: "black-feather-monolith" +issues: + - "02" +image: "black-feather-monolith.png" +weight: 7 +categories: + - "Haute Couture" +tags: + - "Couture" + - "Feathers" + - "Cape" + - "Wind" + - "Runway" + - "Black" + - "Movement" +--- diff --git a/content/posts/02/black-lace-chaise/black-lace-chaise.png b/content/posts/02/black-lace-chaise/black-lace-chaise.png new file mode 100644 index 0000000..b821f6d Binary files /dev/null and b/content/posts/02/black-lace-chaise/black-lace-chaise.png differ diff --git a/content/posts/02/black-lace-chaise/index.md b/content/posts/02/black-lace-chaise/index.md new file mode 100644 index 0000000..d120717 --- /dev/null +++ b/content/posts/02/black-lace-chaise/index.md @@ -0,0 +1,20 @@ +--- +title: "Black Lace Chaise" +description: "A red-haired model in a black lace bodysuit reclining on a tufted velvet chaise, a single lamp, deep surrounding shadow." +plate: "008" +slug: "black-lace-chaise" +issues: + - "02" +image: "black-lace-chaise.png" +weight: 8 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Lace" + - "Chaise" + - "Velvet" + - "Black" + - "Lamp" + - "Recline" +--- diff --git a/content/posts/02/black-turtleneck-portrait/black-turtleneck-portrait.png b/content/posts/02/black-turtleneck-portrait/black-turtleneck-portrait.png new file mode 100644 index 0000000..e94fe15 Binary files /dev/null and b/content/posts/02/black-turtleneck-portrait/black-turtleneck-portrait.png differ diff --git a/content/posts/02/black-turtleneck-portrait/index.md b/content/posts/02/black-turtleneck-portrait/index.md new file mode 100644 index 0000000..245b6ad --- /dev/null +++ b/content/posts/02/black-turtleneck-portrait/index.md @@ -0,0 +1,20 @@ +--- +title: "Black Turtleneck Portrait" +description: "A red-haired model in a plain black fine-knit turtleneck, tight head-and-shoulders framing, warm neutral wall." +plate: "009" +slug: "black-turtleneck-portrait" +issues: + - "02" +image: "black-turtleneck-portrait.png" +weight: 9 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Turtleneck" + - "Black" + - "Portrait" + - "Neutral" + - "Close" + - "Knit" +--- diff --git a/content/posts/02/bodega-neon/bodega-neon.png b/content/posts/02/bodega-neon/bodega-neon.png new file mode 100644 index 0000000..1b5521e Binary files /dev/null and b/content/posts/02/bodega-neon/bodega-neon.png differ diff --git a/content/posts/02/bodega-neon/index.md b/content/posts/02/bodega-neon/index.md new file mode 100644 index 0000000..f026bb3 --- /dev/null +++ b/content/posts/02/bodega-neon/index.md @@ -0,0 +1,20 @@ +--- +title: "Bodega Neon" +description: "A red-haired model in a puffer jacket and a mini skirt leaning on a bodega window under pink-and-blue neon, holding a paper cup." +plate: "010" +slug: "bodega-neon" +issues: + - "02" +image: "bodega-neon.png" +weight: 10 +categories: + - "Street Style" +tags: + - "Street" + - "Bodega" + - "Neon" + - "Puffer" + - "Night" + - "Coffee Cup" + - "City" +--- diff --git a/content/posts/02/bone-white-clinic/bone-white-clinic.png b/content/posts/02/bone-white-clinic/bone-white-clinic.png new file mode 100644 index 0000000..3ff0b32 Binary files /dev/null and b/content/posts/02/bone-white-clinic/bone-white-clinic.png differ diff --git a/content/posts/02/bone-white-clinic/index.md b/content/posts/02/bone-white-clinic/index.md new file mode 100644 index 0000000..3b9c865 --- /dev/null +++ b/content/posts/02/bone-white-clinic/index.md @@ -0,0 +1,20 @@ +--- +title: "Bone White Clinic" +description: "A red-haired model in bone-white clinical styling against white tile under cold white light." +plate: "011" +slug: "bone-white-clinic" +issues: + - "02" +image: "bone-white-clinic.png" +weight: 11 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Bone White" + - "Clinical" + - "Tile" + - "Cold Light" + - "Sterile" + - "Pale" +--- diff --git a/content/posts/02/bonfire-on-the-beach/bonfire-on-the-beach.png b/content/posts/02/bonfire-on-the-beach/bonfire-on-the-beach.png new file mode 100644 index 0000000..95e3ea8 Binary files /dev/null and b/content/posts/02/bonfire-on-the-beach/bonfire-on-the-beach.png differ diff --git a/content/posts/02/bonfire-on-the-beach/index.md b/content/posts/02/bonfire-on-the-beach/index.md new file mode 100644 index 0000000..dd8bf29 --- /dev/null +++ b/content/posts/02/bonfire-on-the-beach/index.md @@ -0,0 +1,20 @@ +--- +title: "Bonfire On The Beach" +description: "A red-haired model in a long dress beside a driftwood fire throwing sparks, black ocean behind, warm firelight on her freckles." +plate: "012" +slug: "bonfire-on-the-beach" +issues: + - "02" +image: "bonfire-on-the-beach.png" +weight: 12 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Bonfire" + - "Beach" + - "Sparks" + - "Ocean" + - "Firelight" + - "Night" +--- diff --git a/content/posts/02/camel-coat-stance/camel-coat-stance.png b/content/posts/02/camel-coat-stance/camel-coat-stance.png new file mode 100644 index 0000000..b75923b Binary files /dev/null and b/content/posts/02/camel-coat-stance/camel-coat-stance.png differ diff --git a/content/posts/02/camel-coat-stance/index.md b/content/posts/02/camel-coat-stance/index.md new file mode 100644 index 0000000..1786e60 --- /dev/null +++ b/content/posts/02/camel-coat-stance/index.md @@ -0,0 +1,20 @@ +--- +title: "Camel Coat Stance" +description: "A red-haired model in a belted camel wool coat, hands in pockets, centred in a wide empty frame under flat overcast light." +plate: "013" +slug: "camel-coat-stance" +issues: + - "02" +image: "camel-coat-stance.png" +weight: 13 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Camel Coat" + - "Wool" + - "Overcast" + - "Centred" + - "Empty" + - "Stance" +--- diff --git a/content/posts/02/candle-for-a-hand/candle-for-a-hand.png b/content/posts/02/candle-for-a-hand/candle-for-a-hand.png new file mode 100644 index 0000000..db9a700 Binary files /dev/null and b/content/posts/02/candle-for-a-hand/candle-for-a-hand.png differ diff --git a/content/posts/02/candle-for-a-hand/index.md b/content/posts/02/candle-for-a-hand/index.md new file mode 100644 index 0000000..92ac615 --- /dev/null +++ b/content/posts/02/candle-for-a-hand/index.md @@ -0,0 +1,20 @@ +--- +title: "Candle For A Hand" +description: "A red-haired model one of her hands replaced by a lit burning candle, an evening dress, dark still background." +plate: "014" +slug: "candle-for-a-hand" +issues: + - "02" +image: "candle-for-a-hand.png" +weight: 14 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Candle" + - "Hand" + - "Fire" + - "Evening Dress" + - "Still" + - "Dark" +--- diff --git a/content/posts/02/candlelit-harpsichord/candlelit-harpsichord.png b/content/posts/02/candlelit-harpsichord/candlelit-harpsichord.png new file mode 100644 index 0000000..70136ad Binary files /dev/null and b/content/posts/02/candlelit-harpsichord/candlelit-harpsichord.png differ diff --git a/content/posts/02/candlelit-harpsichord/index.md b/content/posts/02/candlelit-harpsichord/index.md new file mode 100644 index 0000000..5b72178 --- /dev/null +++ b/content/posts/02/candlelit-harpsichord/index.md @@ -0,0 +1,20 @@ +--- +title: "Candlelit Harpsichord" +description: "A red-haired model in a brocade robe a la francaise seated at a harpsichord surrounded by dozens of candles." +plate: "015" +slug: "candlelit-harpsichord" +issues: + - "02" +image: "candlelit-harpsichord.png" +weight: 15 +categories: + - "Baroque" +tags: + - "Baroque" + - "Harpsichord" + - "Candles" + - "Brocade" + - "18th Century" + - "Music" + - "Warm" +--- diff --git a/content/posts/02/car-park-sodium/car-park-sodium.png b/content/posts/02/car-park-sodium/car-park-sodium.png new file mode 100644 index 0000000..9c46720 Binary files /dev/null and b/content/posts/02/car-park-sodium/car-park-sodium.png differ diff --git a/content/posts/02/car-park-sodium/index.md b/content/posts/02/car-park-sodium/index.md new file mode 100644 index 0000000..d7ed63a --- /dev/null +++ b/content/posts/02/car-park-sodium/index.md @@ -0,0 +1,20 @@ +--- +title: "Car Park Sodium" +description: "A red-haired model leaning on a dark sedan under a single sodium lamp in an empty lot, deep night." +plate: "016" +slug: "car-park-sodium" +issues: + - "02" +image: "car-park-sodium.png" +weight: 16 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Car Park" + - "Sodium Lamp" + - "Sedan" + - "Empty" + - "Orange Light" + - "Night" +--- diff --git a/content/posts/02/chain-curtain-dress/chain-curtain-dress.png b/content/posts/02/chain-curtain-dress/chain-curtain-dress.png new file mode 100644 index 0000000..e5f0176 Binary files /dev/null and b/content/posts/02/chain-curtain-dress/chain-curtain-dress.png differ diff --git a/content/posts/02/chain-curtain-dress/index.md b/content/posts/02/chain-curtain-dress/index.md new file mode 100644 index 0000000..33947f2 --- /dev/null +++ b/content/posts/02/chain-curtain-dress/index.md @@ -0,0 +1,20 @@ +--- +title: "Chain Curtain Dress" +description: "A red-haired model in a dress of falling ball-chain that pools on the floor, slight movement blur, dark set." +plate: "017" +slug: "chain-curtain-dress" +issues: + - "02" +image: "chain-curtain-dress.png" +weight: 17 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Chain" + - "Metal" + - "Curtain" + - "Pool" + - "Blur" + - "Dark" +--- diff --git a/content/posts/02/chair-on-the-ceiling/chair-on-the-ceiling.png b/content/posts/02/chair-on-the-ceiling/chair-on-the-ceiling.png new file mode 100644 index 0000000..626ce3d Binary files /dev/null and b/content/posts/02/chair-on-the-ceiling/chair-on-the-ceiling.png differ diff --git a/content/posts/02/chair-on-the-ceiling/index.md b/content/posts/02/chair-on-the-ceiling/index.md new file mode 100644 index 0000000..3f8baf7 --- /dev/null +++ b/content/posts/02/chair-on-the-ceiling/index.md @@ -0,0 +1,20 @@ +--- +title: "Chair On The Ceiling" +description: "A red-haired model seated on a chair fixed to the ceiling with her gown hanging upward, the whole room inverted." +plate: "018" +slug: "chair-on-the-ceiling" +issues: + - "02" +image: "chair-on-the-ceiling.png" +weight: 18 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Inverted" + - "Ceiling" + - "Chair" + - "Gravity" + - "Gown" + - "Upside Down" +--- diff --git a/content/posts/02/champagne-and-pearls/champagne-and-pearls.png b/content/posts/02/champagne-and-pearls/champagne-and-pearls.png new file mode 100644 index 0000000..2453f8f Binary files /dev/null and b/content/posts/02/champagne-and-pearls/champagne-and-pearls.png differ diff --git a/content/posts/02/champagne-and-pearls/index.md b/content/posts/02/champagne-and-pearls/index.md new file mode 100644 index 0000000..22fe2ce --- /dev/null +++ b/content/posts/02/champagne-and-pearls/index.md @@ -0,0 +1,20 @@ +--- +title: "Champagne And Pearls" +description: "A red-haired model in nude satin with a rope of pearls wound twice around her neck, a toppled champagne coupe, candlelight." +plate: "019" +slug: "champagne-and-pearls" +issues: + - "02" +image: "champagne-and-pearls.png" +weight: 19 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Pearls" + - "Champagne" + - "Satin" + - "Candlelight" + - "Nude" + - "Decadence" +--- diff --git a/content/posts/02/charcoal-wrap-coat/charcoal-wrap-coat.png b/content/posts/02/charcoal-wrap-coat/charcoal-wrap-coat.png new file mode 100644 index 0000000..52d52b5 Binary files /dev/null and b/content/posts/02/charcoal-wrap-coat/charcoal-wrap-coat.png differ diff --git a/content/posts/02/charcoal-wrap-coat/index.md b/content/posts/02/charcoal-wrap-coat/index.md new file mode 100644 index 0000000..9e384d5 --- /dev/null +++ b/content/posts/02/charcoal-wrap-coat/index.md @@ -0,0 +1,20 @@ +--- +title: "Charcoal Wrap Coat" +description: "A red-haired model in a charcoal wrap coat with the collar up, standing dead centre against a fog-grey background." +plate: "020" +slug: "charcoal-wrap-coat" +issues: + - "02" +image: "charcoal-wrap-coat.png" +weight: 20 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Wrap Coat" + - "Charcoal" + - "Collar" + - "Fog Grey" + - "Centred" + - "Still" +--- diff --git a/content/posts/02/cigarette-and-rain/cigarette-and-rain.png b/content/posts/02/cigarette-and-rain/cigarette-and-rain.png new file mode 100644 index 0000000..0fc2c6e Binary files /dev/null and b/content/posts/02/cigarette-and-rain/cigarette-and-rain.png differ diff --git a/content/posts/02/cigarette-and-rain/index.md b/content/posts/02/cigarette-and-rain/index.md new file mode 100644 index 0000000..5d1a370 --- /dev/null +++ b/content/posts/02/cigarette-and-rain/index.md @@ -0,0 +1,21 @@ +--- +title: "Cigarette And Rain" +description: "A red-haired model in a beaded black cocktail dress at a rain-streaked hotel window at night, a red neon sign bleeding through the glass, deep shadow, monochrome with a wash of red." +plate: "021" +slug: "cigarette-and-rain" +issues: + - "02" +image: "cigarette-and-rain.png" +weight: 21 +featured: true +categories: + - "Film Noir" +tags: + - "Noir" + - "Rain" + - "Neon" + - "Cigarette" + - "Hotel" + - "Night" + - "Beaded" +--- diff --git a/content/posts/02/clock-melt-vanity/clock-melt-vanity.png b/content/posts/02/clock-melt-vanity/clock-melt-vanity.png new file mode 100644 index 0000000..8d499a6 Binary files /dev/null and b/content/posts/02/clock-melt-vanity/clock-melt-vanity.png differ diff --git a/content/posts/02/clock-melt-vanity/index.md b/content/posts/02/clock-melt-vanity/index.md new file mode 100644 index 0000000..0549356 --- /dev/null +++ b/content/posts/02/clock-melt-vanity/index.md @@ -0,0 +1,20 @@ +--- +title: "Clock Melt Vanity" +description: "A red-haired model seated unbothered at a vanity where the clock and perfume bottles droop and melt like wax." +plate: "022" +slug: "clock-melt-vanity" +issues: + - "02" +image: "clock-melt-vanity.png" +weight: 22 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Melting" + - "Clock" + - "Vanity" + - "Time" + - "Wax" + - "Calm" +--- diff --git a/content/posts/02/cobalt-immersion/cobalt-immersion.png b/content/posts/02/cobalt-immersion/cobalt-immersion.png new file mode 100644 index 0000000..d8517d6 Binary files /dev/null and b/content/posts/02/cobalt-immersion/cobalt-immersion.png differ diff --git a/content/posts/02/cobalt-immersion/index.md b/content/posts/02/cobalt-immersion/index.md new file mode 100644 index 0000000..b411dbe --- /dev/null +++ b/content/posts/02/cobalt-immersion/index.md @@ -0,0 +1,20 @@ +--- +title: "Cobalt Immersion" +description: "A red-haired model in a cobalt-blue slip against a cobalt seamless under a cobalt gel light, single figure." +plate: "023" +slug: "cobalt-immersion" +issues: + - "02" +image: "cobalt-immersion.png" +weight: 23 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Cobalt" + - "Blue" + - "Gel Light" + - "Slip" + - "Immersive" + - "Saturated" +--- diff --git a/content/posts/02/crimson-drapery-throne/crimson-drapery-throne.png b/content/posts/02/crimson-drapery-throne/crimson-drapery-throne.png new file mode 100644 index 0000000..45b4d09 Binary files /dev/null and b/content/posts/02/crimson-drapery-throne/crimson-drapery-throne.png differ diff --git a/content/posts/02/crimson-drapery-throne/index.md b/content/posts/02/crimson-drapery-throne/index.md new file mode 100644 index 0000000..ac75075 --- /dev/null +++ b/content/posts/02/crimson-drapery-throne/index.md @@ -0,0 +1,20 @@ +--- +title: "Crimson Drapery Throne" +description: "A red-haired model against heavy crimson damask drapes on a carved throne holding a sceptre, oil-painting palette." +plate: "024" +slug: "crimson-drapery-throne" +issues: + - "02" +image: "crimson-drapery-throne.png" +weight: 24 +categories: + - "Baroque" +tags: + - "Baroque" + - "Crimson" + - "Damask" + - "Throne" + - "Sceptre" + - "Regal" + - "Drapery" +--- diff --git a/content/posts/02/crimson-mirror-study/crimson-mirror-study.png b/content/posts/02/crimson-mirror-study/crimson-mirror-study.png new file mode 100644 index 0000000..69aef7f Binary files /dev/null and b/content/posts/02/crimson-mirror-study/crimson-mirror-study.png differ diff --git a/content/posts/02/crimson-mirror-study/index.md b/content/posts/02/crimson-mirror-study/index.md new file mode 100644 index 0000000..8f689bc --- /dev/null +++ b/content/posts/02/crimson-mirror-study/index.md @@ -0,0 +1,21 @@ +--- +title: "Crimson Mirror Study" +description: "A red-haired model in a floor-length crimson silk slip dress standing between two tall antique mirrors, her reflection repeating into the distance under a low warm key light." +plate: "025" +slug: "crimson-mirror-study" +issues: + - "02" +image: "crimson-mirror-study.png" +weight: 25 +featured: true +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Mirror" + - "Crimson" + - "Silk" + - "Reflection" + - "Gilded" + - "Low Key" +--- diff --git a/content/posts/02/crossing-against-the-light/crossing-against-the-light.png b/content/posts/02/crossing-against-the-light/crossing-against-the-light.png new file mode 100644 index 0000000..a875683 Binary files /dev/null and b/content/posts/02/crossing-against-the-light/crossing-against-the-light.png differ diff --git a/content/posts/02/crossing-against-the-light/index.md b/content/posts/02/crossing-against-the-light/index.md new file mode 100644 index 0000000..04848fd --- /dev/null +++ b/content/posts/02/crossing-against-the-light/index.md @@ -0,0 +1,20 @@ +--- +title: "Crossing Against The Light" +description: "A red-haired model in an oversized blazer and bare legs, mid-stride in a crosswalk, headlight glare and motion blur." +plate: "026" +slug: "crossing-against-the-light" +issues: + - "02" +image: "crossing-against-the-light.png" +weight: 26 +categories: + - "Street Style" +tags: + - "Street" + - "Crosswalk" + - "Blazer" + - "Motion Blur" + - "Headlights" + - "Stride" + - "Night" +--- diff --git a/content/posts/02/crystal-net-veil/crystal-net-veil.png b/content/posts/02/crystal-net-veil/crystal-net-veil.png new file mode 100644 index 0000000..08e53b9 Binary files /dev/null and b/content/posts/02/crystal-net-veil/crystal-net-veil.png differ diff --git a/content/posts/02/crystal-net-veil/index.md b/content/posts/02/crystal-net-veil/index.md new file mode 100644 index 0000000..e81c85f --- /dev/null +++ b/content/posts/02/crystal-net-veil/index.md @@ -0,0 +1,20 @@ +--- +title: "Crystal Net Veil" +description: "A red-haired model in a nude tulle gown embroidered with a net of raw uncut crystals, strongly backlit so the beading throws light, dark studio." +plate: "027" +slug: "crystal-net-veil" +issues: + - "02" +image: "crystal-net-veil.png" +weight: 27 +categories: + - "Haute Couture" +tags: + - "Couture" + - "Crystals" + - "Tulle" + - "Backlight" + - "Sheer" + - "Beading" + - "Glitter" +--- diff --git a/content/posts/02/doorway-to-the-sea/doorway-to-the-sea.png b/content/posts/02/doorway-to-the-sea/doorway-to-the-sea.png new file mode 100644 index 0000000..560cbb0 Binary files /dev/null and b/content/posts/02/doorway-to-the-sea/doorway-to-the-sea.png differ diff --git a/content/posts/02/doorway-to-the-sea/index.md b/content/posts/02/doorway-to-the-sea/index.md new file mode 100644 index 0000000..400e319 --- /dev/null +++ b/content/posts/02/doorway-to-the-sea/index.md @@ -0,0 +1,20 @@ +--- +title: "Doorway To The Sea" +description: "A red-haired model a freestanding door in a plain room standing open onto an ocean horizon, sea wind lifting her dress." +plate: "028" +slug: "doorway-to-the-sea" +issues: + - "02" +image: "doorway-to-the-sea.png" +weight: 28 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Door" + - "Sea" + - "Wind" + - "Threshold" + - "Impossible" + - "Horizon" +--- diff --git a/content/posts/02/dove-grey-fog/dove-grey-fog.png b/content/posts/02/dove-grey-fog/dove-grey-fog.png new file mode 100644 index 0000000..9fa1411 Binary files /dev/null and b/content/posts/02/dove-grey-fog/dove-grey-fog.png differ diff --git a/content/posts/02/dove-grey-fog/index.md b/content/posts/02/dove-grey-fog/index.md new file mode 100644 index 0000000..3d2f9f6 --- /dev/null +++ b/content/posts/02/dove-grey-fog/index.md @@ -0,0 +1,20 @@ +--- +title: "Dove Grey Fog" +description: "A red-haired model in dove-grey everything, very low contrast, her figure half dissolving into the set." +plate: "029" +slug: "dove-grey-fog" +issues: + - "02" +image: "dove-grey-fog.png" +weight: 29 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Dove Grey" + - "Fog" + - "Low Contrast" + - "Dissolve" + - "Soft" + - "Quiet" +--- diff --git a/content/posts/02/draped-storm-chiffon/draped-storm-chiffon.png b/content/posts/02/draped-storm-chiffon/draped-storm-chiffon.png new file mode 100644 index 0000000..1f56aa0 Binary files /dev/null and b/content/posts/02/draped-storm-chiffon/draped-storm-chiffon.png differ diff --git a/content/posts/02/draped-storm-chiffon/index.md b/content/posts/02/draped-storm-chiffon/index.md new file mode 100644 index 0000000..82b555e --- /dev/null +++ b/content/posts/02/draped-storm-chiffon/index.md @@ -0,0 +1,20 @@ +--- +title: "Draped Storm Chiffon" +description: "A red-haired model wrapped in meters of slate-grey chiffon lifting and swirling around her in a strong wind, dark studio, dramatic low side light." +plate: "030" +slug: "draped-storm-chiffon" +issues: + - "02" +image: "draped-storm-chiffon.png" +weight: 30 +categories: + - "Haute Couture" +tags: + - "Haute Couture" + - "Chiffon" + - "Drape" + - "Wind" + - "Motion" + - "Grey" + - "Studio" +--- diff --git a/content/posts/02/emerald-field/emerald-field.png b/content/posts/02/emerald-field/emerald-field.png new file mode 100644 index 0000000..c6268ca Binary files /dev/null and b/content/posts/02/emerald-field/emerald-field.png differ diff --git a/content/posts/02/emerald-field/index.md b/content/posts/02/emerald-field/index.md new file mode 100644 index 0000000..121fecf --- /dev/null +++ b/content/posts/02/emerald-field/index.md @@ -0,0 +1,20 @@ +--- +title: "Emerald Field" +description: "A red-haired model in emerald silk against an emerald moire backdrop with a matching emerald shadow." +plate: "031" +slug: "emerald-field" +issues: + - "02" +image: "emerald-field.png" +weight: 31 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Emerald" + - "Green" + - "Silk" + - "Moire" + - "Shadow" + - "Tonal" +--- diff --git a/content/posts/02/emerald-velvet-throne/emerald-velvet-throne.png b/content/posts/02/emerald-velvet-throne/emerald-velvet-throne.png new file mode 100644 index 0000000..6d8835c Binary files /dev/null and b/content/posts/02/emerald-velvet-throne/emerald-velvet-throne.png differ diff --git a/content/posts/02/emerald-velvet-throne/index.md b/content/posts/02/emerald-velvet-throne/index.md new file mode 100644 index 0000000..be14eb0 --- /dev/null +++ b/content/posts/02/emerald-velvet-throne/index.md @@ -0,0 +1,20 @@ +--- +title: "Emerald Velvet Throne" +description: "A red-haired model in a deep emerald velvet gown with a long train, seated on a carved dark-wood throne, broad soft window light from the side." +plate: "032" +slug: "emerald-velvet-throne" +issues: + - "02" +image: "emerald-velvet-throne.png" +weight: 32 +categories: + - "Haute Couture" +tags: + - "Couture" + - "Emerald" + - "Velvet" + - "Throne" + - "Train" + - "Regal" + - "Green" +--- diff --git a/content/posts/02/endless-hallway-dolls/endless-hallway-dolls.png b/content/posts/02/endless-hallway-dolls/endless-hallway-dolls.png new file mode 100644 index 0000000..21c58e2 Binary files /dev/null and b/content/posts/02/endless-hallway-dolls/endless-hallway-dolls.png differ diff --git a/content/posts/02/endless-hallway-dolls/index.md b/content/posts/02/endless-hallway-dolls/index.md new file mode 100644 index 0000000..26e67c7 --- /dev/null +++ b/content/posts/02/endless-hallway-dolls/index.md @@ -0,0 +1,20 @@ +--- +title: "Endless Hallway Dolls" +description: "A red-haired model a corridor lined with identical red-haired mannequins; she stands among them, indistinguishable, flat light." +plate: "033" +slug: "endless-hallway-dolls" +issues: + - "02" +image: "endless-hallway-dolls.png" +weight: 33 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Mannequins" + - "Corridor" + - "Identity" + - "Repetition" + - "Uncanny" + - "Dolls" +--- diff --git a/content/posts/02/ermine-and-ruby/ermine-and-ruby.png b/content/posts/02/ermine-and-ruby/ermine-and-ruby.png new file mode 100644 index 0000000..d518f0c Binary files /dev/null and b/content/posts/02/ermine-and-ruby/ermine-and-ruby.png differ diff --git a/content/posts/02/ermine-and-ruby/index.md b/content/posts/02/ermine-and-ruby/index.md new file mode 100644 index 0000000..b65b531 --- /dev/null +++ b/content/posts/02/ermine-and-ruby/index.md @@ -0,0 +1,20 @@ +--- +title: "Ermine And Ruby" +description: "A red-haired model in an ermine-trimmed mantle and a ruby choker beside a marble column, tenebrist lighting." +plate: "034" +slug: "ermine-and-ruby" +issues: + - "02" +image: "ermine-and-ruby.png" +weight: 34 +categories: + - "Baroque" +tags: + - "Baroque" + - "Ermine" + - "Ruby" + - "Mantle" + - "Marble" + - "Tenebrism" + - "Jewels" +--- diff --git a/content/posts/02/fallen-chandelier/fallen-chandelier.png b/content/posts/02/fallen-chandelier/fallen-chandelier.png new file mode 100644 index 0000000..d3a4387 Binary files /dev/null and b/content/posts/02/fallen-chandelier/fallen-chandelier.png differ diff --git a/content/posts/02/fallen-chandelier/index.md b/content/posts/02/fallen-chandelier/index.md new file mode 100644 index 0000000..5ed75cd --- /dev/null +++ b/content/posts/02/fallen-chandelier/index.md @@ -0,0 +1,20 @@ +--- +title: "Fallen Chandelier" +description: "A red-haired model in a pale gown among the scattered crystals of a chandelier crashed onto parquet, dust hanging in a shaft of light." +plate: "035" +slug: "fallen-chandelier" +issues: + - "02" +image: "fallen-chandelier.png" +weight: 35 +categories: + - "Baroque" +tags: + - "Baroque" + - "Chandelier" + - "Crystals" + - "Parquet" + - "Dust" + - "Light Shaft" + - "Ruin" +--- diff --git a/content/posts/02/feather-robe-threshold/feather-robe-threshold.png b/content/posts/02/feather-robe-threshold/feather-robe-threshold.png new file mode 100644 index 0000000..7d9e142 Binary files /dev/null and b/content/posts/02/feather-robe-threshold/feather-robe-threshold.png differ diff --git a/content/posts/02/feather-robe-threshold/index.md b/content/posts/02/feather-robe-threshold/index.md new file mode 100644 index 0000000..d55a2e4 --- /dev/null +++ b/content/posts/02/feather-robe-threshold/index.md @@ -0,0 +1,20 @@ +--- +title: "Feather Robe Threshold" +description: "A red-haired model in a marabou-trimmed robe leaning in a bedroom doorway, hallway light spilling from behind her." +plate: "036" +slug: "feather-robe-threshold" +issues: + - "02" +image: "feather-robe-threshold.png" +weight: 36 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Marabou" + - "Robe" + - "Doorway" + - "Backlight" + - "Threshold" + - "Feathers" +--- diff --git a/content/posts/02/fire-escape-perch/fire-escape-perch.png b/content/posts/02/fire-escape-perch/fire-escape-perch.png new file mode 100644 index 0000000..5da4694 Binary files /dev/null and b/content/posts/02/fire-escape-perch/fire-escape-perch.png differ diff --git a/content/posts/02/fire-escape-perch/index.md b/content/posts/02/fire-escape-perch/index.md new file mode 100644 index 0000000..c739a32 --- /dev/null +++ b/content/posts/02/fire-escape-perch/index.md @@ -0,0 +1,20 @@ +--- +title: "Fire Escape Perch" +description: "A red-haired model in a slip dress and combat boots sitting on a fire escape strung with festoon lights at dusk." +plate: "037" +slug: "fire-escape-perch" +issues: + - "02" +image: "fire-escape-perch.png" +weight: 37 +categories: + - "Street Style" +tags: + - "Street" + - "Fire Escape" + - "Slip Dress" + - "Boots" + - "String Lights" + - "Dusk" + - "Perch" +--- diff --git a/content/posts/02/flash-on-wet-asphalt/flash-on-wet-asphalt.png b/content/posts/02/flash-on-wet-asphalt/flash-on-wet-asphalt.png new file mode 100644 index 0000000..0fb70bf Binary files /dev/null and b/content/posts/02/flash-on-wet-asphalt/flash-on-wet-asphalt.png differ diff --git a/content/posts/02/flash-on-wet-asphalt/index.md b/content/posts/02/flash-on-wet-asphalt/index.md new file mode 100644 index 0000000..9784769 --- /dev/null +++ b/content/posts/02/flash-on-wet-asphalt/index.md @@ -0,0 +1,21 @@ +--- +title: "Flash On Wet Asphalt" +description: "A red-haired model in a leather trench over a slip dress, hit by a direct on-camera flash on rain-wet asphalt, city night behind her." +plate: "038" +slug: "flash-on-wet-asphalt" +issues: + - "02" +image: "flash-on-wet-asphalt.png" +weight: 38 +featured: true +categories: + - "Street Style" +tags: + - "Street" + - "Flash" + - "Rain" + - "Leather Trench" + - "Night" + - "City" + - "Wet" +--- diff --git a/content/posts/02/floating-above-the-bed/floating-above-the-bed.png b/content/posts/02/floating-above-the-bed/floating-above-the-bed.png new file mode 100644 index 0000000..4e39ba2 Binary files /dev/null and b/content/posts/02/floating-above-the-bed/floating-above-the-bed.png differ diff --git a/content/posts/02/floating-above-the-bed/index.md b/content/posts/02/floating-above-the-bed/index.md new file mode 100644 index 0000000..251256e --- /dev/null +++ b/content/posts/02/floating-above-the-bed/index.md @@ -0,0 +1,20 @@ +--- +title: "Floating Above The Bed" +description: "A red-haired model lying across a bed in a long pale dress, hair and hem drifting upward as if gravity were reversed, shot from directly above in soft hazy light." +plate: "039" +slug: "floating-above-the-bed" +issues: + - "02" +image: "floating-above-the-bed.png" +weight: 39 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Levitation" + - "Bed" + - "Overhead" + - "Silk Dress" + - "Haze" + - "Dream" +--- diff --git a/content/posts/02/folded-linen-trousers/folded-linen-trousers.png b/content/posts/02/folded-linen-trousers/folded-linen-trousers.png new file mode 100644 index 0000000..59c1043 Binary files /dev/null and b/content/posts/02/folded-linen-trousers/folded-linen-trousers.png differ diff --git a/content/posts/02/folded-linen-trousers/index.md b/content/posts/02/folded-linen-trousers/index.md new file mode 100644 index 0000000..e2549e4 --- /dev/null +++ b/content/posts/02/folded-linen-trousers/index.md @@ -0,0 +1,20 @@ +--- +title: "Folded Linen Trousers" +description: "A red-haired model in high-waisted ecru linen trousers and a knotted cropped linen shirt, three-quarter profile in a sand-coloured studio, soft even light." +plate: "040" +slug: "folded-linen-trousers" +issues: + - "02" +image: "folded-linen-trousers.png" +weight: 40 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Linen" + - "Trousers" + - "Ecru" + - "Tailoring" + - "Sand" + - "Calm" +--- diff --git a/content/posts/02/frosted-glass-door/frosted-glass-door.png b/content/posts/02/frosted-glass-door/frosted-glass-door.png new file mode 100644 index 0000000..ce382c7 Binary files /dev/null and b/content/posts/02/frosted-glass-door/frosted-glass-door.png differ diff --git a/content/posts/02/frosted-glass-door/index.md b/content/posts/02/frosted-glass-door/index.md new file mode 100644 index 0000000..a8ad56e --- /dev/null +++ b/content/posts/02/frosted-glass-door/index.md @@ -0,0 +1,20 @@ +--- +title: "Frosted Glass Door" +description: "A red-haired model in a silk blouse and pencil skirt standing before a frosted-glass office door with reversed gold lettering, slatted light across the room." +plate: "041" +slug: "frosted-glass-door" +issues: + - "02" +image: "frosted-glass-door.png" +weight: 41 +categories: + - "Film Noir" +tags: + - "Noir" + - "Office" + - "Frosted Glass" + - "Blouse" + - "Slatted Light" + - "1940s" + - "Monochrome" +--- diff --git a/content/posts/02/gilded-cage-gown/gilded-cage-gown.png b/content/posts/02/gilded-cage-gown/gilded-cage-gown.png new file mode 100644 index 0000000..b42287c Binary files /dev/null and b/content/posts/02/gilded-cage-gown/gilded-cage-gown.png differ diff --git a/content/posts/02/gilded-cage-gown/index.md b/content/posts/02/gilded-cage-gown/index.md new file mode 100644 index 0000000..fe44290 --- /dev/null +++ b/content/posts/02/gilded-cage-gown/index.md @@ -0,0 +1,20 @@ +--- +title: "Gilded Cage Gown" +description: "A red-haired model wearing a sculptural boned gown of fine gold wire that forms a cage crinoline around her, standing in a couture atelier hung with muslin toiles, soft even north-facing window light." +plate: "042" +slug: "gilded-cage-gown" +issues: + - "02" +image: "gilded-cage-gown.png" +weight: 42 +categories: + - "Haute Couture" +tags: + - "Couture" + - "Gold" + - "Sculptural" + - "Atelier" + - "Cage" + - "Wire" + - "Editorial" +--- diff --git a/content/posts/02/gilded-salon-brocade/gilded-salon-brocade.png b/content/posts/02/gilded-salon-brocade/gilded-salon-brocade.png new file mode 100644 index 0000000..cc7be6c Binary files /dev/null and b/content/posts/02/gilded-salon-brocade/gilded-salon-brocade.png differ diff --git a/content/posts/02/gilded-salon-brocade/index.md b/content/posts/02/gilded-salon-brocade/index.md new file mode 100644 index 0000000..61f9ab0 --- /dev/null +++ b/content/posts/02/gilded-salon-brocade/index.md @@ -0,0 +1,20 @@ +--- +title: "Gilded Salon Brocade" +description: "A red-haired model in a gold-and-wine brocade gown in a salon hung with gilt-framed oil paintings, a lit candelabra, warm shadowy light." +plate: "043" +slug: "gilded-salon-brocade" +issues: + - "02" +image: "gilded-salon-brocade.png" +weight: 43 +categories: + - "Baroque" +tags: + - "Baroque" + - "Brocade" + - "Gilt" + - "Salon" + - "Candelabra" + - "Oil Paintings" + - "Gold" +--- diff --git a/content/posts/02/gilt-mirror-ringlets/gilt-mirror-ringlets.png b/content/posts/02/gilt-mirror-ringlets/gilt-mirror-ringlets.png new file mode 100644 index 0000000..bdd6e73 Binary files /dev/null and b/content/posts/02/gilt-mirror-ringlets/gilt-mirror-ringlets.png differ diff --git a/content/posts/02/gilt-mirror-ringlets/index.md b/content/posts/02/gilt-mirror-ringlets/index.md new file mode 100644 index 0000000..5ec7c0e --- /dev/null +++ b/content/posts/02/gilt-mirror-ringlets/index.md @@ -0,0 +1,20 @@ +--- +title: "Gilt Mirror Ringlets" +description: "A red-haired model before an ornate gilt mirror with a powdered complexion and tight ringlets, a single candelabrum reflected." +plate: "044" +slug: "gilt-mirror-ringlets" +issues: + - "02" +image: "gilt-mirror-ringlets.png" +weight: 44 +categories: + - "Baroque" +tags: + - "Baroque" + - "Mirror" + - "Gilt" + - "Ringlets" + - "Powder" + - "Candlelight" + - "Rococo" +--- diff --git a/content/posts/02/gold-leaf-portrait/gold-leaf-portrait.png b/content/posts/02/gold-leaf-portrait/gold-leaf-portrait.png new file mode 100644 index 0000000..9681c57 Binary files /dev/null and b/content/posts/02/gold-leaf-portrait/gold-leaf-portrait.png differ diff --git a/content/posts/02/gold-leaf-portrait/index.md b/content/posts/02/gold-leaf-portrait/index.md new file mode 100644 index 0000000..61f5cad --- /dev/null +++ b/content/posts/02/gold-leaf-portrait/index.md @@ -0,0 +1,20 @@ +--- +title: "Gold Leaf Portrait" +description: "A red-haired model her skin dusted with gold leaf above a stiff brocade collar, flat Byzantine-icon lighting." +plate: "045" +slug: "gold-leaf-portrait" +issues: + - "02" +image: "gold-leaf-portrait.png" +weight: 45 +categories: + - "Baroque" +tags: + - "Baroque" + - "Gold Leaf" + - "Icon" + - "Brocade Collar" + - "Flat Light" + - "Portrait" + - "Gilded" +--- diff --git a/content/posts/02/grey-cashmere-column/grey-cashmere-column.png b/content/posts/02/grey-cashmere-column/grey-cashmere-column.png new file mode 100644 index 0000000..ed093ed Binary files /dev/null and b/content/posts/02/grey-cashmere-column/grey-cashmere-column.png differ diff --git a/content/posts/02/grey-cashmere-column/index.md b/content/posts/02/grey-cashmere-column/index.md new file mode 100644 index 0000000..33b3f4c --- /dev/null +++ b/content/posts/02/grey-cashmere-column/index.md @@ -0,0 +1,20 @@ +--- +title: "Grey Cashmere Column" +description: "A red-haired model in a floor-length grey cashmere tube dress, arms at her sides, soft single shadow, wide empty frame." +plate: "046" +slug: "grey-cashmere-column" +issues: + - "02" +image: "grey-cashmere-column.png" +weight: 46 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Cashmere" + - "Grey" + - "Column" + - "Soft Shadow" + - "Quiet" + - "Space" +--- diff --git a/content/posts/02/hair-as-garment/hair-as-garment.png b/content/posts/02/hair-as-garment/hair-as-garment.png new file mode 100644 index 0000000..5dd0ae6 Binary files /dev/null and b/content/posts/02/hair-as-garment/hair-as-garment.png differ diff --git a/content/posts/02/hair-as-garment/index.md b/content/posts/02/hair-as-garment/index.md new file mode 100644 index 0000000..ba994d5 --- /dev/null +++ b/content/posts/02/hair-as-garment/index.md @@ -0,0 +1,20 @@ +--- +title: "Hair As Garment" +description: "A red-haired model her own copper hair extended into a floor-length woven cape that is the only visible garment, stark frontal light." +plate: "047" +slug: "hair-as-garment" +issues: + - "02" +image: "hair-as-garment.png" +weight: 47 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Hair" + - "Cape" + - "Woven" + - "Concept" + - "Copper" + - "Stark" +--- diff --git a/content/posts/02/hair-rooted-to-floor/hair-rooted-to-floor.png b/content/posts/02/hair-rooted-to-floor/hair-rooted-to-floor.png new file mode 100644 index 0000000..1c18b1e Binary files /dev/null and b/content/posts/02/hair-rooted-to-floor/hair-rooted-to-floor.png differ diff --git a/content/posts/02/hair-rooted-to-floor/index.md b/content/posts/02/hair-rooted-to-floor/index.md new file mode 100644 index 0000000..e2ee3a8 --- /dev/null +++ b/content/posts/02/hair-rooted-to-floor/index.md @@ -0,0 +1,20 @@ +--- +title: "Hair Rooted To Floor" +description: "A red-haired model her long hair growing down into the floorboards like tree roots, a calm neutral expression." +plate: "048" +slug: "hair-rooted-to-floor" +issues: + - "02" +image: "hair-rooted-to-floor.png" +weight: 48 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Hair" + - "Roots" + - "Floor" + - "Growth" + - "Still" + - "Uncanny" +--- diff --git a/content/posts/02/headlights-in-the-orchard/headlights-in-the-orchard.png b/content/posts/02/headlights-in-the-orchard/headlights-in-the-orchard.png new file mode 100644 index 0000000..03e312e Binary files /dev/null and b/content/posts/02/headlights-in-the-orchard/headlights-in-the-orchard.png differ diff --git a/content/posts/02/headlights-in-the-orchard/index.md b/content/posts/02/headlights-in-the-orchard/index.md new file mode 100644 index 0000000..068e97a --- /dev/null +++ b/content/posts/02/headlights-in-the-orchard/index.md @@ -0,0 +1,20 @@ +--- +title: "Headlights In The Orchard" +description: "A red-haired model in a long dark coat between rows of bare trees at night, car headlights glowing behind her and casting a long shadow, dust hanging in the beams." +plate: "049" +slug: "headlights-in-the-orchard" +issues: + - "02" +image: "headlights-in-the-orchard.png" +weight: 49 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Headlights" + - "Orchard" + - "Night" + - "Dust" + - "Backlight" + - "Coat" +--- diff --git a/content/posts/02/hot-dog-cart-2am/hot-dog-cart-2am.png b/content/posts/02/hot-dog-cart-2am/hot-dog-cart-2am.png new file mode 100644 index 0000000..40d8c70 Binary files /dev/null and b/content/posts/02/hot-dog-cart-2am/hot-dog-cart-2am.png differ diff --git a/content/posts/02/hot-dog-cart-2am/index.md b/content/posts/02/hot-dog-cart-2am/index.md new file mode 100644 index 0000000..7d3b2a1 --- /dev/null +++ b/content/posts/02/hot-dog-cart-2am/index.md @@ -0,0 +1,20 @@ +--- +title: "Hot Dog Cart 2AM" +description: "A red-haired model in a black sequinned evening gown at a lit street food cart at 2am, steam rising, harsh cart light, the dark city behind her." +plate: "050" +slug: "hot-dog-cart-2am" +issues: + - "02" +image: "hot-dog-cart-2am.png" +weight: 50 +categories: + - "Street Style" +tags: + - "Street" + - "Cart" + - "Evening Gown" + - "2AM" + - "Sequins" + - "Steam" + - "City" +--- diff --git a/content/posts/02/hotel-corridor-4am/hotel-corridor-4am.png b/content/posts/02/hotel-corridor-4am/hotel-corridor-4am.png new file mode 100644 index 0000000..e81c8e1 Binary files /dev/null and b/content/posts/02/hotel-corridor-4am/hotel-corridor-4am.png differ diff --git a/content/posts/02/hotel-corridor-4am/index.md b/content/posts/02/hotel-corridor-4am/index.md new file mode 100644 index 0000000..32beee6 --- /dev/null +++ b/content/posts/02/hotel-corridor-4am/index.md @@ -0,0 +1,20 @@ +--- +title: "Hotel Corridor 4AM" +description: "A red-haired model in a floor-length gown in an endless dim hotel corridor lit by wall sconces, patterned carpet receding." +plate: "051" +slug: "hotel-corridor-4am" +issues: + - "02" +image: "hotel-corridor-4am.png" +weight: 51 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Hotel" + - "Corridor" + - "4AM" + - "Sconces" + - "Carpet" + - "Gown" +--- diff --git a/content/posts/02/inflatable-silhouette/index.md b/content/posts/02/inflatable-silhouette/index.md new file mode 100644 index 0000000..569c399 --- /dev/null +++ b/content/posts/02/inflatable-silhouette/index.md @@ -0,0 +1,20 @@ +--- +title: "Inflatable Silhouette" +description: "A red-haired model in a matte black inflatable puffer garment that forms an alien silhouette, plain grey cyclorama." +plate: "052" +slug: "inflatable-silhouette" +issues: + - "02" +image: "inflatable-silhouette.png" +weight: 52 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Inflatable" + - "Puffer" + - "Silhouette" + - "Black" + - "Sculptural" + - "Grey" +--- diff --git a/content/posts/02/inflatable-silhouette/inflatable-silhouette.png b/content/posts/02/inflatable-silhouette/inflatable-silhouette.png new file mode 100644 index 0000000..06c695d Binary files /dev/null and b/content/posts/02/inflatable-silhouette/inflatable-silhouette.png differ diff --git a/content/posts/02/ivory-on-ivory/index.md b/content/posts/02/ivory-on-ivory/index.md new file mode 100644 index 0000000..79b3ee5 --- /dev/null +++ b/content/posts/02/ivory-on-ivory/index.md @@ -0,0 +1,20 @@ +--- +title: "Ivory On Ivory" +description: "A red-haired model in an ivory suit against ivory drapes in cream light, near-invisible tonal layering." +plate: "053" +slug: "ivory-on-ivory" +issues: + - "02" +image: "ivory-on-ivory.png" +weight: 53 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Ivory" + - "Cream" + - "Suit" + - "Drapes" + - "Subtle" + - "Pale" +--- diff --git a/content/posts/02/ivory-on-ivory/ivory-on-ivory.png b/content/posts/02/ivory-on-ivory/ivory-on-ivory.png new file mode 100644 index 0000000..31b96ac Binary files /dev/null and b/content/posts/02/ivory-on-ivory/ivory-on-ivory.png differ diff --git a/content/posts/02/ivory-slip-at-dawn/index.md b/content/posts/02/ivory-slip-at-dawn/index.md new file mode 100644 index 0000000..103a9d8 --- /dev/null +++ b/content/posts/02/ivory-slip-at-dawn/index.md @@ -0,0 +1,20 @@ +--- +title: "Ivory Slip At Dawn" +description: "A red-haired model in an ivory bias-cut slip on rumpled linen sheets, the first grey daylight coming through sheer curtains." +plate: "054" +slug: "ivory-slip-at-dawn" +issues: + - "02" +image: "ivory-slip-at-dawn.png" +weight: 54 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Ivory" + - "Slip" + - "Dawn" + - "Linen" + - "Soft Light" + - "Morning" +--- diff --git a/content/posts/02/ivory-slip-at-dawn/ivory-slip-at-dawn.png b/content/posts/02/ivory-slip-at-dawn/ivory-slip-at-dawn.png new file mode 100644 index 0000000..5f240aa Binary files /dev/null and b/content/posts/02/ivory-slip-at-dawn/ivory-slip-at-dawn.png differ diff --git a/content/posts/02/letters-on-the-floor/index.md b/content/posts/02/letters-on-the-floor/index.md new file mode 100644 index 0000000..f3c4312 --- /dev/null +++ b/content/posts/02/letters-on-the-floor/index.md @@ -0,0 +1,20 @@ +--- +title: "Letters On The Floor" +description: "A red-haired model in a sheer chemise kneeling among scattered handwritten letters, a single candle, warm dark room." +plate: "055" +slug: "letters-on-the-floor" +issues: + - "02" +image: "letters-on-the-floor.png" +weight: 55 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Letters" + - "Chemise" + - "Candle" + - "Kneeling" + - "Longing" + - "Sheer" +--- diff --git a/content/posts/02/letters-on-the-floor/letters-on-the-floor.png b/content/posts/02/letters-on-the-floor/letters-on-the-floor.png new file mode 100644 index 0000000..69ae82c Binary files /dev/null and b/content/posts/02/letters-on-the-floor/letters-on-the-floor.png differ diff --git a/content/posts/02/lighthouse-sweep/index.md b/content/posts/02/lighthouse-sweep/index.md new file mode 100644 index 0000000..9643e02 --- /dev/null +++ b/content/posts/02/lighthouse-sweep/index.md @@ -0,0 +1,20 @@ +--- +title: "Lighthouse Sweep" +description: "A red-haired model on a cliff edge in a gown as the lighthouse beam sweeps across her, half in light half in dark." +plate: "056" +slug: "lighthouse-sweep" +issues: + - "02" +image: "lighthouse-sweep.png" +weight: 56 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Lighthouse" + - "Beam" + - "Cliff" + - "Sweep" + - "Gown" + - "Night" +--- diff --git a/content/posts/02/lighthouse-sweep/lighthouse-sweep.png b/content/posts/02/lighthouse-sweep/lighthouse-sweep.png new file mode 100644 index 0000000..6dcb2a7 Binary files /dev/null and b/content/posts/02/lighthouse-sweep/lighthouse-sweep.png differ diff --git a/content/posts/02/liquid-latex-pour/index.md b/content/posts/02/liquid-latex-pour/index.md new file mode 100644 index 0000000..ad8b1c1 --- /dev/null +++ b/content/posts/02/liquid-latex-pour/index.md @@ -0,0 +1,20 @@ +--- +title: "Liquid Latex Pour" +description: "A red-haired model in a glossy oxblood latex catsuit with a poured, wet look, on a chrome plinth under a large ring light." +plate: "057" +slug: "liquid-latex-pour" +issues: + - "02" +image: "liquid-latex-pour.png" +weight: 57 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Latex" + - "Oxblood" + - "Gloss" + - "Chrome" + - "Ring Light" + - "Catsuit" +--- diff --git a/content/posts/02/liquid-latex-pour/liquid-latex-pour.png b/content/posts/02/liquid-latex-pour/liquid-latex-pour.png new file mode 100644 index 0000000..7751a9e Binary files /dev/null and b/content/posts/02/liquid-latex-pour/liquid-latex-pour.png differ diff --git a/content/posts/02/melting-candle-headpiece/index.md b/content/posts/02/melting-candle-headpiece/index.md new file mode 100644 index 0000000..c8cacc9 --- /dev/null +++ b/content/posts/02/melting-candle-headpiece/index.md @@ -0,0 +1,20 @@ +--- +title: "Melting Candle Headpiece" +description: "A red-haired model in a headpiece of lit tapered candles dripping wax past a still face, plain black background, soft frontal light." +plate: "058" +slug: "melting-candle-headpiece" +issues: + - "02" +image: "melting-candle-headpiece.png" +weight: 58 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Candles" + - "Headpiece" + - "Wax" + - "Fire" + - "Still" + - "Dark" +--- diff --git a/content/posts/02/melting-candle-headpiece/melting-candle-headpiece.png b/content/posts/02/melting-candle-headpiece/melting-candle-headpiece.png new file mode 100644 index 0000000..640db66 Binary files /dev/null and b/content/posts/02/melting-candle-headpiece/melting-candle-headpiece.png differ diff --git a/content/posts/02/midnight-confession/index.md b/content/posts/02/midnight-confession/index.md new file mode 100644 index 0000000..f54a595 --- /dev/null +++ b/content/posts/02/midnight-confession/index.md @@ -0,0 +1,20 @@ +--- +title: "Midnight Confession" +description: "A red-haired model in a black lace mantilla in a dark empty chapel, one shaft of moonlight, heavy film grain." +plate: "059" +slug: "midnight-confession" +issues: + - "02" +image: "midnight-confession.png" +weight: 59 +categories: + - "Film Noir" +tags: + - "Noir" + - "Chapel" + - "Mantilla" + - "Moonlight" + - "Confession" + - "Grain" + - "Lace" +--- diff --git a/content/posts/02/midnight-confession/midnight-confession.png b/content/posts/02/midnight-confession/midnight-confession.png new file mode 100644 index 0000000..dea192f Binary files /dev/null and b/content/posts/02/midnight-confession/midnight-confession.png differ diff --git a/content/posts/02/mirror-interrogation/index.md b/content/posts/02/mirror-interrogation/index.md new file mode 100644 index 0000000..a0f26ea --- /dev/null +++ b/content/posts/02/mirror-interrogation/index.md @@ -0,0 +1,20 @@ +--- +title: "Mirror Interrogation" +description: "A red-haired model in a sharp black suit seated at a bare metal table under a single hanging bulb, hands flat on the table, hard light and deep shadow, monochrome." +plate: "060" +slug: "mirror-interrogation" +issues: + - "02" +image: "mirror-interrogation.png" +weight: 60 +categories: + - "Film Noir" +tags: + - "Noir" + - "Suit" + - "Interrogation" + - "Bare Bulb" + - "Table" + - "Monochrome" + - "Shadow" +--- diff --git a/content/posts/02/mirror-interrogation/mirror-interrogation.png b/content/posts/02/mirror-interrogation/mirror-interrogation.png new file mode 100644 index 0000000..7c4c604 Binary files /dev/null and b/content/posts/02/mirror-interrogation/mirror-interrogation.png differ diff --git a/content/posts/02/mirror-shard-mask/index.md b/content/posts/02/mirror-shard-mask/index.md new file mode 100644 index 0000000..83ba0bb --- /dev/null +++ b/content/posts/02/mirror-shard-mask/index.md @@ -0,0 +1,20 @@ +--- +title: "Mirror-Shard Mask" +description: "A red-haired model wearing a dozen tiny polished mirror tiles in a sweeping arc across one cheekbone, each catching the light, a plain black crew-neck top, hard studio flash, grey backdrop." +plate: "061" +slug: "mirror-shard-mask" +issues: + - "02" +image: "mirror-shard-mask.png" +weight: 61 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Mirror" + - "Tiles" + - "Reflection" + - "Flash" + - "Beauty" + - "Grey" +--- diff --git a/content/posts/02/mirror-shard-mask/mirror-shard-mask.png b/content/posts/02/mirror-shard-mask/mirror-shard-mask.png new file mode 100644 index 0000000..7334bbe Binary files /dev/null and b/content/posts/02/mirror-shard-mask/mirror-shard-mask.png differ diff --git a/content/posts/02/molten-bronze-column/index.md b/content/posts/02/molten-bronze-column/index.md new file mode 100644 index 0000000..08c7030 --- /dev/null +++ b/content/posts/02/molten-bronze-column/index.md @@ -0,0 +1,20 @@ +--- +title: "Molten Bronze Column" +description: "A red-haired model in a liquid bronze lame column dress, one arm raised overhead, against black seamless paper under a single hard spotlight that rakes the fabric." +plate: "062" +slug: "molten-bronze-column" +issues: + - "02" +image: "molten-bronze-column.png" +weight: 62 +categories: + - "Haute Couture" +tags: + - "Couture" + - "Bronze" + - "Column" + - "Spotlight" + - "Metallic" + - "Studio" + - "Drama" +--- diff --git a/content/posts/02/molten-bronze-column/molten-bronze-column.png b/content/posts/02/molten-bronze-column/molten-bronze-column.png new file mode 100644 index 0000000..2252a3a Binary files /dev/null and b/content/posts/02/molten-bronze-column/molten-bronze-column.png differ diff --git a/content/posts/02/moonlit-greenhouse/index.md b/content/posts/02/moonlit-greenhouse/index.md new file mode 100644 index 0000000..e1ead16 --- /dev/null +++ b/content/posts/02/moonlit-greenhouse/index.md @@ -0,0 +1,20 @@ +--- +title: "Moonlit Greenhouse" +description: "A red-haired model in a sheer gown inside a glass greenhouse at night, the moon through the panes, ferns around her." +plate: "063" +slug: "moonlit-greenhouse" +issues: + - "02" +image: "moonlit-greenhouse.png" +weight: 63 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Greenhouse" + - "Moonlight" + - "Sheer" + - "Glass" + - "Ferns" + - "Night" +--- diff --git a/content/posts/02/moonlit-greenhouse/moonlit-greenhouse.png b/content/posts/02/moonlit-greenhouse/moonlit-greenhouse.png new file mode 100644 index 0000000..cfe8fa7 Binary files /dev/null and b/content/posts/02/moonlit-greenhouse/moonlit-greenhouse.png differ diff --git a/content/posts/02/neon-sign-bath/index.md b/content/posts/02/neon-sign-bath/index.md new file mode 100644 index 0000000..10f05e4 --- /dev/null +++ b/content/posts/02/neon-sign-bath/index.md @@ -0,0 +1,20 @@ +--- +title: "Neon Sign Bath" +description: "A red-haired model her face lit only by a buzzing red neon sign at night, everything around her black." +plate: "064" +slug: "neon-sign-bath" +issues: + - "02" +image: "neon-sign-bath.png" +weight: 64 +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Neon" + - "Red" + - "Night" + - "Face" + - "Sign" + - "Dark" +--- diff --git a/content/posts/02/neon-sign-bath/neon-sign-bath.png b/content/posts/02/neon-sign-bath/neon-sign-bath.png new file mode 100644 index 0000000..1548244 Binary files /dev/null and b/content/posts/02/neon-sign-bath/neon-sign-bath.png differ diff --git a/content/posts/02/nude-slip-nothing-else/index.md b/content/posts/02/nude-slip-nothing-else/index.md new file mode 100644 index 0000000..ad00dc1 --- /dev/null +++ b/content/posts/02/nude-slip-nothing-else/index.md @@ -0,0 +1,20 @@ +--- +title: "Nude Slip Nothing Else" +description: "A red-haired model in an ivory silk slip in the empty corner of a bare room, a long late-afternoon shadow." +plate: "065" +slug: "nude-slip-nothing-else" +issues: + - "02" +image: "nude-slip-nothing-else.png" +weight: 65 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Slip" + - "Ivory" + - "Empty Room" + - "Shadow" + - "Afternoon" + - "Silk" +--- diff --git a/content/posts/02/nude-slip-nothing-else/nude-slip-nothing-else.png b/content/posts/02/nude-slip-nothing-else/nude-slip-nothing-else.png new file mode 100644 index 0000000..66a804a Binary files /dev/null and b/content/posts/02/nude-slip-nothing-else/nude-slip-nothing-else.png differ diff --git a/content/posts/02/one-gold-hoop/index.md b/content/posts/02/one-gold-hoop/index.md new file mode 100644 index 0000000..d339271 --- /dev/null +++ b/content/posts/02/one-gold-hoop/index.md @@ -0,0 +1,20 @@ +--- +title: "One Gold Hoop" +description: "A red-haired model in a grey marl t-shirt wearing a single gold hoop earring, quiet three-quarter light, neutral ground." +plate: "066" +slug: "one-gold-hoop" +issues: + - "02" +image: "one-gold-hoop.png" +weight: 66 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Gold Hoop" + - "T-Shirt" + - "Grey" + - "Detail" + - "Quiet" + - "Neutral" +--- diff --git a/content/posts/02/one-gold-hoop/one-gold-hoop.png b/content/posts/02/one-gold-hoop/one-gold-hoop.png new file mode 100644 index 0000000..8c4ebe9 Binary files /dev/null and b/content/posts/02/one-gold-hoop/one-gold-hoop.png differ diff --git a/content/posts/02/origami-silk-shoulders/index.md b/content/posts/02/origami-silk-shoulders/index.md new file mode 100644 index 0000000..ed23ede --- /dev/null +++ b/content/posts/02/origami-silk-shoulders/index.md @@ -0,0 +1,20 @@ +--- +title: "Origami Silk Shoulders" +description: "A red-haired model in a dress with oversized folded silk-faille shoulders in oyster grey, minimal beige set, soft box light from camera left." +plate: "067" +slug: "origami-silk-shoulders" +issues: + - "02" +image: "origami-silk-shoulders.png" +weight: 67 +categories: + - "Haute Couture" +tags: + - "Couture" + - "Origami" + - "Silk" + - "Grey" + - "Folds" + - "Minimal" + - "Shoulders" +--- diff --git a/content/posts/02/origami-silk-shoulders/origami-silk-shoulders.png b/content/posts/02/origami-silk-shoulders/origami-silk-shoulders.png new file mode 100644 index 0000000..d9fdfe0 Binary files /dev/null and b/content/posts/02/origami-silk-shoulders/origami-silk-shoulders.png differ diff --git a/content/posts/02/overturned-fruit-table/index.md b/content/posts/02/overturned-fruit-table/index.md new file mode 100644 index 0000000..4fe9832 --- /dev/null +++ b/content/posts/02/overturned-fruit-table/index.md @@ -0,0 +1,20 @@ +--- +title: "Overturned Fruit Table" +description: "A red-haired model in a silk gown beside a table of spilled grapes and split figs, chiaroscuro still-life staging." +plate: "068" +slug: "overturned-fruit-table" +issues: + - "02" +image: "overturned-fruit-table.png" +weight: 68 +categories: + - "Baroque" +tags: + - "Baroque" + - "Fruit" + - "Still Life" + - "Silk" + - "Chiaroscuro" + - "Grapes" + - "Decadence" +--- diff --git a/content/posts/02/overturned-fruit-table/overturned-fruit-table.png b/content/posts/02/overturned-fruit-table/overturned-fruit-table.png new file mode 100644 index 0000000..2e039da Binary files /dev/null and b/content/posts/02/overturned-fruit-table/overturned-fruit-table.png differ diff --git a/content/posts/02/oxblood-leather-wall/index.md b/content/posts/02/oxblood-leather-wall/index.md new file mode 100644 index 0000000..f1e98ed --- /dev/null +++ b/content/posts/02/oxblood-leather-wall/index.md @@ -0,0 +1,20 @@ +--- +title: "Oxblood Leather Wall" +description: "A red-haired model in an oxblood leather trench against an oxblood tiled wall under warm hard light." +plate: "069" +slug: "oxblood-leather-wall" +issues: + - "02" +image: "oxblood-leather-wall.png" +weight: 69 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Oxblood" + - "Leather" + - "Tiles" + - "Hard Light" + - "Trench" + - "Deep Red" +--- diff --git a/content/posts/02/oxblood-leather-wall/oxblood-leather-wall.png b/content/posts/02/oxblood-leather-wall/oxblood-leather-wall.png new file mode 100644 index 0000000..e1eb02c Binary files /dev/null and b/content/posts/02/oxblood-leather-wall/oxblood-leather-wall.png differ diff --git a/content/posts/02/paper-rose-cascade/index.md b/content/posts/02/paper-rose-cascade/index.md new file mode 100644 index 0000000..e28d167 --- /dev/null +++ b/content/posts/02/paper-rose-cascade/index.md @@ -0,0 +1,20 @@ +--- +title: "Paper Rose Cascade" +description: "A red-haired model in a couture ballgown built entirely from thousands of hand-cut ivory paper roses, descending a grand marble staircase, diffused daylight from a skylight." +plate: "070" +slug: "paper-rose-cascade" +issues: + - "02" +image: "paper-rose-cascade.png" +weight: 70 +categories: + - "Haute Couture" +tags: + - "Couture" + - "Paper" + - "Roses" + - "Ballgown" + - "Staircase" + - "Ivory" + - "Craft" +--- diff --git a/content/posts/02/paper-rose-cascade/paper-rose-cascade.png b/content/posts/02/paper-rose-cascade/paper-rose-cascade.png new file mode 100644 index 0000000..f65e142 Binary files /dev/null and b/content/posts/02/paper-rose-cascade/paper-rose-cascade.png differ diff --git a/content/posts/02/parking-garage-level-3/index.md b/content/posts/02/parking-garage-level-3/index.md new file mode 100644 index 0000000..11b4d04 --- /dev/null +++ b/content/posts/02/parking-garage-level-3/index.md @@ -0,0 +1,20 @@ +--- +title: "Parking Garage Level 3" +description: "A red-haired model in a tailored suit among concrete pillars lit by one buzzing fluorescent tube, long shadow." +plate: "071" +slug: "parking-garage-level-3" +issues: + - "02" +image: "parking-garage-level-3.png" +weight: 71 +categories: + - "Street Style" +tags: + - "Street" + - "Parking Garage" + - "Suit" + - "Fluorescent" + - "Concrete" + - "Shadow" + - "Brutalist" +--- diff --git a/content/posts/02/parking-garage-level-3/parking-garage-level-3.png b/content/posts/02/parking-garage-level-3/parking-garage-level-3.png new file mode 100644 index 0000000..a10f970 Binary files /dev/null and b/content/posts/02/parking-garage-level-3/parking-garage-level-3.png differ diff --git a/content/posts/02/pearl-drop-portrait/index.md b/content/posts/02/pearl-drop-portrait/index.md new file mode 100644 index 0000000..3bbfcf4 --- /dev/null +++ b/content/posts/02/pearl-drop-portrait/index.md @@ -0,0 +1,20 @@ +--- +title: "Pearl-Drop Portrait" +description: "A red-haired model in a black velvet bodice with enormous baroque pearl-drop earrings, Dutch-master side light against dark ground." +plate: "072" +slug: "pearl-drop-portrait" +issues: + - "02" +image: "pearl-drop-portrait.png" +weight: 72 +categories: + - "Baroque" +tags: + - "Baroque" + - "Pearls" + - "Velvet" + - "Portrait" + - "Old Master" + - "Side Light" + - "Black" +--- diff --git a/content/posts/02/pearl-drop-portrait/pearl-drop-portrait.png b/content/posts/02/pearl-drop-portrait/pearl-drop-portrait.png new file mode 100644 index 0000000..b57c4d3 Binary files /dev/null and b/content/posts/02/pearl-drop-portrait/pearl-drop-portrait.png differ diff --git a/content/posts/02/platform-farewell/index.md b/content/posts/02/platform-farewell/index.md new file mode 100644 index 0000000..14fba8a --- /dev/null +++ b/content/posts/02/platform-farewell/index.md @@ -0,0 +1,20 @@ +--- +title: "Platform Farewell" +description: "A red-haired model in a fur-collared coat on an empty railway platform, steam drifting from a train, a single overhead lamp." +plate: "073" +slug: "platform-farewell" +issues: + - "02" +image: "platform-farewell.png" +weight: 73 +categories: + - "Film Noir" +tags: + - "Noir" + - "Train" + - "Steam" + - "Platform" + - "Farewell" + - "Fur Collar" + - "Night" +--- diff --git a/content/posts/02/platform-farewell/platform-farewell.png b/content/posts/02/platform-farewell/platform-farewell.png new file mode 100644 index 0000000..6d85cfe Binary files /dev/null and b/content/posts/02/platform-farewell/platform-farewell.png differ diff --git a/content/posts/02/plum-velvet-dusk/index.md b/content/posts/02/plum-velvet-dusk/index.md new file mode 100644 index 0000000..2ab837f --- /dev/null +++ b/content/posts/02/plum-velvet-dusk/index.md @@ -0,0 +1,20 @@ +--- +title: "Plum Velvet Dusk" +description: "A red-haired model in a plum velvet gown in a plum-painted room under a low plum-gelled key light." +plate: "074" +slug: "plum-velvet-dusk" +issues: + - "02" +image: "plum-velvet-dusk.png" +weight: 74 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Plum" + - "Velvet" + - "Purple" + - "Gown" + - "Low Key" + - "Dusk" +--- diff --git a/content/posts/02/plum-velvet-dusk/plum-velvet-dusk.png b/content/posts/02/plum-velvet-dusk/plum-velvet-dusk.png new file mode 100644 index 0000000..2eb8aa6 Binary files /dev/null and b/content/posts/02/plum-velvet-dusk/plum-velvet-dusk.png differ diff --git a/content/posts/02/pool-at-midnight/index.md b/content/posts/02/pool-at-midnight/index.md new file mode 100644 index 0000000..6b65fd6 --- /dev/null +++ b/content/posts/02/pool-at-midnight/index.md @@ -0,0 +1,21 @@ +--- +title: "Pool At Midnight" +description: "A red-haired model in a wet silk gown at the edge of a lit swimming pool, turquoise underwater light glowing up at her against a black sky." +plate: "075" +slug: "pool-at-midnight" +issues: + - "02" +image: "pool-at-midnight.png" +weight: 75 +featured: true +categories: + - "Nocturne" +tags: + - "Nocturne" + - "Pool" + - "Night" + - "Wet Silk" + - "Turquoise" + - "Underlight" + - "Water" +--- diff --git a/content/posts/02/pool-at-midnight/pool-at-midnight.png b/content/posts/02/pool-at-midnight/pool-at-midnight.png new file mode 100644 index 0000000..f446b63 Binary files /dev/null and b/content/posts/02/pool-at-midnight/pool-at-midnight.png differ diff --git a/content/posts/02/portrait-within-portrait/index.md b/content/posts/02/portrait-within-portrait/index.md new file mode 100644 index 0000000..b070c02 --- /dev/null +++ b/content/posts/02/portrait-within-portrait/index.md @@ -0,0 +1,20 @@ +--- +title: "Portrait Within Portrait" +description: "A red-haired model holding a gilt frame; inside it a photograph of her holding the same frame, receding into infinity, flat frontal light, plain background." +plate: "076" +slug: "portrait-within-portrait" +issues: + - "02" +image: "portrait-within-portrait.png" +weight: 76 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Recursion" + - "Frame" + - "Portrait" + - "Infinite" + - "Meta" + - "Flat Light" +--- diff --git a/content/posts/02/portrait-within-portrait/portrait-within-portrait.png b/content/posts/02/portrait-within-portrait/portrait-within-portrait.png new file mode 100644 index 0000000..3ba987c Binary files /dev/null and b/content/posts/02/portrait-within-portrait/portrait-within-portrait.png differ diff --git a/content/posts/02/powder-room-ritual/index.md b/content/posts/02/powder-room-ritual/index.md new file mode 100644 index 0000000..1250946 --- /dev/null +++ b/content/posts/02/powder-room-ritual/index.md @@ -0,0 +1,20 @@ +--- +title: "Powder Room Ritual" +description: "A red-haired model in a closed ivory silk robe at a bulb-lit vanity, lifting a powder puff to her cheek, a clutter of bottles across the glass, warm light." +plate: "077" +slug: "powder-room-ritual" +issues: + - "02" +image: "powder-room-ritual.png" +weight: 77 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Vanity" + - "Silk Robe" + - "Powder Puff" + - "Bulbs" + - "Ritual" + - "Warm" +--- diff --git a/content/posts/02/powder-room-ritual/powder-room-ritual.png b/content/posts/02/powder-room-ritual/powder-room-ritual.png new file mode 100644 index 0000000..c880a25 Binary files /dev/null and b/content/posts/02/powder-room-ritual/powder-room-ritual.png differ diff --git a/content/posts/02/prosthetic-rose-spine/index.md b/content/posts/02/prosthetic-rose-spine/index.md new file mode 100644 index 0000000..f5721d1 --- /dev/null +++ b/content/posts/02/prosthetic-rose-spine/index.md @@ -0,0 +1,20 @@ +--- +title: "Prosthetic Rose Spine" +description: "A red-haired model in a sheer bodysuit with a sculpted resin rose appearing to grow along her spine, clinical white set, even bright light." +plate: "078" +slug: "prosthetic-rose-spine" +issues: + - "02" +image: "prosthetic-rose-spine.png" +weight: 78 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Prosthetic" + - "Rose" + - "Spine" + - "Clinical" + - "Sculpture" + - "Sheer" +--- diff --git a/content/posts/02/prosthetic-rose-spine/prosthetic-rose-spine.png b/content/posts/02/prosthetic-rose-spine/prosthetic-rose-spine.png new file mode 100644 index 0000000..54e7852 Binary files /dev/null and b/content/posts/02/prosthetic-rose-spine/prosthetic-rose-spine.png differ diff --git a/content/posts/02/red-ribbon-corset/index.md b/content/posts/02/red-ribbon-corset/index.md new file mode 100644 index 0000000..bf805f1 --- /dev/null +++ b/content/posts/02/red-ribbon-corset/index.md @@ -0,0 +1,20 @@ +--- +title: "Red Ribbon Corset" +description: "A red-haired model in a hand-laced red ribbon corset, bare back to the camera, glancing over one shoulder, warm side light." +plate: "079" +slug: "red-ribbon-corset" +issues: + - "02" +image: "red-ribbon-corset.png" +weight: 79 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Corset" + - "Ribbon" + - "Red" + - "Back" + - "Lacing" + - "Glance" +--- diff --git a/content/posts/02/red-ribbon-corset/red-ribbon-corset.png b/content/posts/02/red-ribbon-corset/red-ribbon-corset.png new file mode 100644 index 0000000..ddb1320 Binary files /dev/null and b/content/posts/02/red-ribbon-corset/red-ribbon-corset.png differ diff --git a/content/posts/02/revolver-in-the-drawer/index.md b/content/posts/02/revolver-in-the-drawer/index.md new file mode 100644 index 0000000..9e135d4 --- /dev/null +++ b/content/posts/02/revolver-in-the-drawer/index.md @@ -0,0 +1,20 @@ +--- +title: "Revolver In The Drawer" +description: "A red-haired model in a satin robe beside a half-open desk drawer, a harsh desk lamp throwing her shadow up the wall, monochrome." +plate: "080" +slug: "revolver-in-the-drawer" +issues: + - "02" +image: "revolver-in-the-drawer.png" +weight: 80 +categories: + - "Film Noir" +tags: + - "Noir" + - "Robe" + - "Desk Lamp" + - "Shadow" + - "Tension" + - "Monochrome" + - "Interior" +--- diff --git a/content/posts/02/revolver-in-the-drawer/revolver-in-the-drawer.png b/content/posts/02/revolver-in-the-drawer/revolver-in-the-drawer.png new file mode 100644 index 0000000..927f7a7 Binary files /dev/null and b/content/posts/02/revolver-in-the-drawer/revolver-in-the-drawer.png differ diff --git a/content/posts/02/rooftop-antennae/index.md b/content/posts/02/rooftop-antennae/index.md new file mode 100644 index 0000000..cf93ee6 --- /dev/null +++ b/content/posts/02/rooftop-antennae/index.md @@ -0,0 +1,20 @@ +--- +title: "Rooftop Antennae" +description: "A red-haired model in layered knitwear on a gravel rooftop among water towers and antennae, cold blue dusk." +plate: "081" +slug: "rooftop-antennae" +issues: + - "02" +image: "rooftop-antennae.png" +weight: 81 +categories: + - "Street Style" +tags: + - "Street" + - "Rooftop" + - "Knitwear" + - "Antennae" + - "Water Tower" + - "Dusk" + - "Blue" +--- diff --git a/content/posts/02/rooftop-antennae/rooftop-antennae.png b/content/posts/02/rooftop-antennae/rooftop-antennae.png new file mode 100644 index 0000000..3dee052 Binary files /dev/null and b/content/posts/02/rooftop-antennae/rooftop-antennae.png differ diff --git a/content/posts/02/saffron-saturation/index.md b/content/posts/02/saffron-saturation/index.md new file mode 100644 index 0000000..f2136f6 --- /dev/null +++ b/content/posts/02/saffron-saturation/index.md @@ -0,0 +1,20 @@ +--- +title: "Saffron Saturation" +description: "A red-haired model in a saffron-yellow kaftan against a saffron backdrop under blazing even light." +plate: "082" +slug: "saffron-saturation" +issues: + - "02" +image: "saffron-saturation.png" +weight: 82 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Saffron" + - "Yellow" + - "Kaftan" + - "Bright" + - "Saturation" + - "Warm" +--- diff --git a/content/posts/02/saffron-saturation/saffron-saturation.png b/content/posts/02/saffron-saturation/saffron-saturation.png new file mode 100644 index 0000000..82bb59f Binary files /dev/null and b/content/posts/02/saffron-saturation/saffron-saturation.png differ diff --git a/content/posts/02/second-skin-grid/index.md b/content/posts/02/second-skin-grid/index.md new file mode 100644 index 0000000..a250ce8 --- /dev/null +++ b/content/posts/02/second-skin-grid/index.md @@ -0,0 +1,20 @@ +--- +title: "Second Skin Grid" +description: "A red-haired model in an opaque pale-grey catsuit printed with a fine black measurement grid, standing rigidly like a dress form in a plain white studio under flat even light." +plate: "083" +slug: "second-skin-grid" +issues: + - "02" +image: "second-skin-grid.png" +weight: 83 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Grid" + - "Catsuit" + - "Dress Form" + - "Measurement" + - "Graphic" + - "Studio" +--- diff --git a/content/posts/02/second-skin-grid/second-skin-grid.png b/content/posts/02/second-skin-grid/second-skin-grid.png new file mode 100644 index 0000000..4a757b0 Binary files /dev/null and b/content/posts/02/second-skin-grid/second-skin-grid.png differ diff --git a/content/posts/02/single-white-shirt/index.md b/content/posts/02/single-white-shirt/index.md new file mode 100644 index 0000000..fc92f42 --- /dev/null +++ b/content/posts/02/single-white-shirt/index.md @@ -0,0 +1,21 @@ +--- +title: "Single White Shirt" +description: "A red-haired model in one oversized crisp white poplin shirt and nothing else visible, bare legs, against bone-white seamless with flat even light." +plate: "084" +slug: "single-white-shirt" +issues: + - "02" +image: "single-white-shirt.png" +weight: 84 +featured: true +categories: + - "Minimalism" +tags: + - "Minimalism" + - "White Shirt" + - "Poplin" + - "Bare" + - "Seamless" + - "Flat Light" + - "Negative Space" +--- diff --git a/content/posts/02/single-white-shirt/single-white-shirt.png b/content/posts/02/single-white-shirt/single-white-shirt.png new file mode 100644 index 0000000..d501bc5 Binary files /dev/null and b/content/posts/02/single-white-shirt/single-white-shirt.png differ diff --git a/content/posts/02/smoke-filled-booth/index.md b/content/posts/02/smoke-filled-booth/index.md new file mode 100644 index 0000000..10b2eae --- /dev/null +++ b/content/posts/02/smoke-filled-booth/index.md @@ -0,0 +1,20 @@ +--- +title: "Smoke-Filled Booth" +description: "A red-haired model in a long-sleeved black velvet dress in a dim jazz-club booth, a candle on the table and a ribbon of smoke rising, moody low light." +plate: "085" +slug: "smoke-filled-booth" +issues: + - "02" +image: "smoke-filled-booth.png" +weight: 85 +categories: + - "Film Noir" +tags: + - "Noir" + - "Jazz" + - "Smoke" + - "Velvet" + - "Candle" + - "Booth" + - "Low Key" +--- diff --git a/content/posts/02/smoke-filled-booth/smoke-filled-booth.png b/content/posts/02/smoke-filled-booth/smoke-filled-booth.png new file mode 100644 index 0000000..1c368f8 Binary files /dev/null and b/content/posts/02/smoke-filled-booth/smoke-filled-booth.png differ diff --git a/content/posts/02/staircase-descent/index.md b/content/posts/02/staircase-descent/index.md new file mode 100644 index 0000000..ec778a7 --- /dev/null +++ b/content/posts/02/staircase-descent/index.md @@ -0,0 +1,20 @@ +--- +title: "Staircase Descent" +description: "A red-haired model in a bias-cut satin gown, one gloved hand on a wrought-iron banister, descending into a deep chiaroscuro stairwell." +plate: "086" +slug: "staircase-descent" +issues: + - "02" +image: "staircase-descent.png" +weight: 86 +categories: + - "Film Noir" +tags: + - "Noir" + - "Satin" + - "Staircase" + - "Gloves" + - "Chiaroscuro" + - "Descent" + - "Monochrome" +--- diff --git a/content/posts/02/staircase-descent/staircase-descent.png b/content/posts/02/staircase-descent/staircase-descent.png new file mode 100644 index 0000000..03c70b0 Binary files /dev/null and b/content/posts/02/staircase-descent/staircase-descent.png differ diff --git a/content/posts/02/stocking-seam/index.md b/content/posts/02/stocking-seam/index.md new file mode 100644 index 0000000..4e22b9e --- /dev/null +++ b/content/posts/02/stocking-seam/index.md @@ -0,0 +1,20 @@ +--- +title: "Stocking Seam" +description: "A red-haired model seated on a bed edge in a satin slip and sheer stockings, one hand straightening a stocking seam, soft morning window light." +plate: "087" +slug: "stocking-seam" +issues: + - "02" +image: "stocking-seam.png" +weight: 87 +categories: + - "Boudoir" +tags: + - "Boudoir" + - "Stockings" + - "Slip" + - "Bed" + - "Morning" + - "Seam" + - "Window Light" +--- diff --git a/content/posts/02/stocking-seam/stocking-seam.png b/content/posts/02/stocking-seam/stocking-seam.png new file mode 100644 index 0000000..1cc0818 Binary files /dev/null and b/content/posts/02/stocking-seam/stocking-seam.png differ diff --git a/content/posts/02/structured-scarlet-peplum/index.md b/content/posts/02/structured-scarlet-peplum/index.md new file mode 100644 index 0000000..8552aa0 --- /dev/null +++ b/content/posts/02/structured-scarlet-peplum/index.md @@ -0,0 +1,20 @@ +--- +title: "Structured Scarlet Peplum" +description: "A red-haired model in an architectural scarlet wool peplum jacket over a floor-length skirt, posed in a mirrored fitting salon with warm sconce light." +plate: "088" +slug: "structured-scarlet-peplum" +issues: + - "02" +image: "structured-scarlet-peplum.png" +weight: 88 +categories: + - "Haute Couture" +tags: + - "Couture" + - "Scarlet" + - "Tailoring" + - "Peplum" + - "Mirrors" + - "Salon" + - "Structure" +--- diff --git a/content/posts/02/structured-scarlet-peplum/structured-scarlet-peplum.png b/content/posts/02/structured-scarlet-peplum/structured-scarlet-peplum.png new file mode 100644 index 0000000..2c93e66 Binary files /dev/null and b/content/posts/02/structured-scarlet-peplum/structured-scarlet-peplum.png differ diff --git a/content/posts/02/subway-grate-steam/index.md b/content/posts/02/subway-grate-steam/index.md new file mode 100644 index 0000000..0c4bcf1 --- /dev/null +++ b/content/posts/02/subway-grate-steam/index.md @@ -0,0 +1,20 @@ +--- +title: "Subway Grate Steam" +description: "A red-haired model in a vintage band tee under a tailored coat, steam rising from a subway grate, sodium streetlight." +plate: "089" +slug: "subway-grate-steam" +issues: + - "02" +image: "subway-grate-steam.png" +weight: 89 +categories: + - "Street Style" +tags: + - "Street" + - "Steam" + - "Grate" + - "Band Tee" + - "Coat" + - "Sodium Light" + - "Urban" +--- diff --git a/content/posts/02/subway-grate-steam/subway-grate-steam.png b/content/posts/02/subway-grate-steam/subway-grate-steam.png new file mode 100644 index 0000000..b4a6bf4 Binary files /dev/null and b/content/posts/02/subway-grate-steam/subway-grate-steam.png differ diff --git a/content/posts/02/taxi-door-exit/index.md b/content/posts/02/taxi-door-exit/index.md new file mode 100644 index 0000000..aaf3dd9 --- /dev/null +++ b/content/posts/02/taxi-door-exit/index.md @@ -0,0 +1,20 @@ +--- +title: "Taxi Door Exit" +description: "A red-haired model in a sequin blazer stepping one heel to the kerb out of a yellow cab, blurred traffic behind." +plate: "090" +slug: "taxi-door-exit" +issues: + - "02" +image: "taxi-door-exit.png" +weight: 90 +categories: + - "Street Style" +tags: + - "Street" + - "Taxi" + - "Sequins" + - "Kerb" + - "Traffic" + - "Night Out" + - "Exit" +--- diff --git a/content/posts/02/taxi-door-exit/taxi-door-exit.png b/content/posts/02/taxi-door-exit/taxi-door-exit.png new file mode 100644 index 0000000..7e9177e Binary files /dev/null and b/content/posts/02/taxi-door-exit/taxi-door-exit.png differ diff --git a/content/posts/02/telephone-booth-vigil/index.md b/content/posts/02/telephone-booth-vigil/index.md new file mode 100644 index 0000000..5237584 --- /dev/null +++ b/content/posts/02/telephone-booth-vigil/index.md @@ -0,0 +1,20 @@ +--- +title: "Telephone Booth Vigil" +description: "A red-haired model in a heavy wool coat on wet pavement beside a glowing telephone booth at 3am, long hard shadows, empty street." +plate: "091" +slug: "telephone-booth-vigil" +issues: + - "02" +image: "telephone-booth-vigil.png" +weight: 91 +categories: + - "Film Noir" +tags: + - "Noir" + - "Phone Booth" + - "Night" + - "Rain" + - "Coat" + - "Solitude" + - "Streetlight" +--- diff --git a/content/posts/02/telephone-booth-vigil/telephone-booth-vigil.png b/content/posts/02/telephone-booth-vigil/telephone-booth-vigil.png new file mode 100644 index 0000000..2b28874 Binary files /dev/null and b/content/posts/02/telephone-booth-vigil/telephone-booth-vigil.png differ diff --git a/content/posts/02/thorn-collar/index.md b/content/posts/02/thorn-collar/index.md new file mode 100644 index 0000000..55da1ba --- /dev/null +++ b/content/posts/02/thorn-collar/index.md @@ -0,0 +1,20 @@ +--- +title: "Thorn Collar" +description: "A red-haired model in a towering laser-cut black leather thorn collar, hair slicked back, hard side light." +plate: "092" +slug: "thorn-collar" +issues: + - "02" +image: "thorn-collar.png" +weight: 92 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Thorns" + - "Collar" + - "Leather" + - "Laser-Cut" + - "Sharp" + - "Black" +--- diff --git a/content/posts/02/thorn-collar/thorn-collar.png b/content/posts/02/thorn-collar/thorn-collar.png new file mode 100644 index 0000000..c854ad9 Binary files /dev/null and b/content/posts/02/thorn-collar/thorn-collar.png differ diff --git a/content/posts/02/total-black-study/index.md b/content/posts/02/total-black-study/index.md new file mode 100644 index 0000000..f153916 --- /dev/null +++ b/content/posts/02/total-black-study/index.md @@ -0,0 +1,20 @@ +--- +title: "Total Black Study" +description: "A red-haired model in a black coat and black gloves against a black wall, only her face and copper hair emerging." +plate: "093" +slug: "total-black-study" +issues: + - "02" +image: "total-black-study.png" +weight: 93 +categories: + - "Monochrome" +tags: + - "Monochrome" + - "Black" + - "Coat" + - "Void" + - "Face" + - "Hair" + - "Low Key" +--- diff --git a/content/posts/02/total-black-study/total-black-study.png b/content/posts/02/total-black-study/total-black-study.png new file mode 100644 index 0000000..20df8df Binary files /dev/null and b/content/posts/02/total-black-study/total-black-study.png differ diff --git a/content/posts/02/twin-reflection-split/index.md b/content/posts/02/twin-reflection-split/index.md new file mode 100644 index 0000000..dc02ce5 --- /dev/null +++ b/content/posts/02/twin-reflection-split/index.md @@ -0,0 +1,20 @@ +--- +title: "Twin Reflection Split" +description: "A red-haired model in a portrait split down the centre — the same face mirrored, an ivory gown on one side and a grey lace gown on the other, seamless join, dark studio." +plate: "094" +slug: "twin-reflection-split" +issues: + - "02" +image: "twin-reflection-split.png" +weight: 94 +categories: + - "Surrealism" +tags: + - "Surreal" + - "Mirror" + - "Twin" + - "Symmetry" + - "Split" + - "Gowns" + - "Dream" +--- diff --git a/content/posts/02/twin-reflection-split/twin-reflection-split.png b/content/posts/02/twin-reflection-split/twin-reflection-split.png new file mode 100644 index 0000000..9a8e57c Binary files /dev/null and b/content/posts/02/twin-reflection-split/twin-reflection-split.png differ diff --git a/content/posts/02/umbrella-and-cigarette/index.md b/content/posts/02/umbrella-and-cigarette/index.md new file mode 100644 index 0000000..8577f9d --- /dev/null +++ b/content/posts/02/umbrella-and-cigarette/index.md @@ -0,0 +1,20 @@ +--- +title: "Umbrella And Cigarette" +description: "A red-haired model under a clear umbrella in a khaki trench coat in the night rain, a glowing shop window behind her, wet pavement reflections." +plate: "095" +slug: "umbrella-and-cigarette" +issues: + - "02" +image: "umbrella-and-cigarette.png" +weight: 95 +categories: + - "Street Style" +tags: + - "Street" + - "Umbrella" + - "Rain" + - "Trench" + - "Shopfront" + - "Reflection" + - "Night" +--- diff --git a/content/posts/02/umbrella-and-cigarette/umbrella-and-cigarette.png b/content/posts/02/umbrella-and-cigarette/umbrella-and-cigarette.png new file mode 100644 index 0000000..4a4b17e Binary files /dev/null and b/content/posts/02/umbrella-and-cigarette/umbrella-and-cigarette.png differ diff --git a/content/posts/02/velvet-curtain-reveal/index.md b/content/posts/02/velvet-curtain-reveal/index.md new file mode 100644 index 0000000..92fd7e3 --- /dev/null +++ b/content/posts/02/velvet-curtain-reveal/index.md @@ -0,0 +1,20 @@ +--- +title: "Velvet Curtain Reveal" +description: "A red-haired model in a floor-length red velvet gown stepping through a parting in a massive red velvet stage curtain, warm footlights glowing from below." +plate: "096" +slug: "velvet-curtain-reveal" +issues: + - "02" +image: "velvet-curtain-reveal.png" +weight: 96 +categories: + - "Baroque" +tags: + - "Baroque" + - "Velvet Curtain" + - "Gown" + - "Stage" + - "Footlights" + - "Theatre" + - "Red" +--- diff --git a/content/posts/02/velvet-curtain-reveal/velvet-curtain-reveal.png b/content/posts/02/velvet-curtain-reveal/velvet-curtain-reveal.png new file mode 100644 index 0000000..5f9e416 Binary files /dev/null and b/content/posts/02/velvet-curtain-reveal/velvet-curtain-reveal.png differ diff --git a/content/posts/02/venetian-blind-shadows/index.md b/content/posts/02/venetian-blind-shadows/index.md new file mode 100644 index 0000000..ed8a22d --- /dev/null +++ b/content/posts/02/venetian-blind-shadows/index.md @@ -0,0 +1,20 @@ +--- +title: "Venetian Blind Shadows" +description: "A red-haired model in a belted trench coat and a tilted fedora, a hard blade of venetian-blind light falling across her face, high-contrast black and white." +plate: "097" +slug: "venetian-blind-shadows" +issues: + - "02" +image: "venetian-blind-shadows.png" +weight: 97 +categories: + - "Film Noir" +tags: + - "Noir" + - "Trench" + - "Blinds" + - "Shadow" + - "Monochrome" + - "Mystery" + - "Fedora" +--- diff --git a/content/posts/02/venetian-blind-shadows/venetian-blind-shadows.png b/content/posts/02/venetian-blind-shadows/venetian-blind-shadows.png new file mode 100644 index 0000000..74cb85f Binary files /dev/null and b/content/posts/02/venetian-blind-shadows/venetian-blind-shadows.png differ diff --git a/content/posts/02/wax-dipped-hands/index.md b/content/posts/02/wax-dipped-hands/index.md new file mode 100644 index 0000000..e562cca --- /dev/null +++ b/content/posts/02/wax-dipped-hands/index.md @@ -0,0 +1,20 @@ +--- +title: "Wax-Dipped Hands" +description: "A red-haired model with her hands and forearms in sculptural matte-white gloves moulded like poured wax, a plain ecru dress, cold flat studio light, pale backdrop." +plate: "098" +slug: "wax-dipped-hands" +issues: + - "02" +image: "wax-dipped-hands.png" +weight: 98 +categories: + - "Avant-Garde" +tags: + - "Avant-Garde" + - "Wax" + - "Gloves" + - "White" + - "Sculptural" + - "Cold Light" + - "Concept" +--- diff --git a/content/posts/02/wax-dipped-hands/wax-dipped-hands.png b/content/posts/02/wax-dipped-hands/wax-dipped-hands.png new file mode 100644 index 0000000..0b68da4 Binary files /dev/null and b/content/posts/02/wax-dipped-hands/wax-dipped-hands.png differ diff --git a/content/posts/02/white-tank-freckles/index.md b/content/posts/02/white-tank-freckles/index.md new file mode 100644 index 0000000..092ad0f --- /dev/null +++ b/content/posts/02/white-tank-freckles/index.md @@ -0,0 +1,20 @@ +--- +title: "White Tank Freckles" +description: "A red-haired model in a plain white cotton tank with natural freckles and no makeup, soft window light, plain pale wall." +plate: "099" +slug: "white-tank-freckles" +issues: + - "02" +image: "white-tank-freckles.png" +weight: 99 +categories: + - "Minimalism" +tags: + - "Minimalism" + - "Tank" + - "Freckles" + - "Bare Face" + - "Window Light" + - "Natural" + - "White" +--- diff --git a/content/posts/02/white-tank-freckles/white-tank-freckles.png b/content/posts/02/white-tank-freckles/white-tank-freckles.png new file mode 100644 index 0000000..4c00e5f Binary files /dev/null and b/content/posts/02/white-tank-freckles/white-tank-freckles.png differ diff --git a/content/posts/02/wire-frame-bustier/index.md b/content/posts/02/wire-frame-bustier/index.md new file mode 100644 index 0000000..807f8cb --- /dev/null +++ b/content/posts/02/wire-frame-bustier/index.md @@ -0,0 +1,20 @@ +--- +title: "Wire-Frame Bustier" +description: "A red-haired model in a sculptural wire-armature corset over an opaque black bodysuit, at a workshop bench under a single task lamp." +plate: "100" +slug: "wire-frame-bustier" +issues: + - "02" +image: "wire-frame-bustier.png" +weight: 100 +categories: + - "Haute Couture" +tags: + - "Haute Couture" + - "Armature" + - "Corset" + - "Wireframe" + - "Workshop" + - "Construction" + - "Steel" +--- diff --git a/content/posts/02/wire-frame-bustier/wire-frame-bustier.png b/content/posts/02/wire-frame-bustier/wire-frame-bustier.png new file mode 100644 index 0000000..89fb448 Binary files /dev/null and b/content/posts/02/wire-frame-bustier/wire-frame-bustier.png differ diff --git a/content/posts/_index.md b/content/posts/_index.md index f9fcae2..07d8af1 100644 --- a/content/posts/_index.md +++ b/content/posts/_index.md @@ -1,4 +1,4 @@ --- title: "The Archive" -description: "All one hundred plates from the Roux archive." +description: "Every plate across every issue of Roux." --- diff --git a/hugo.toml b/hugo.toml index 66c9788..9a3e6c0 100644 --- a/hugo.toml +++ b/hugo.toml @@ -1,10 +1,10 @@ baseURL = "https://roux.pivoine.art/" -languageCode = "en" +locale = "en" title = "Roux" enableRobotsTXT = true enableGitInfo = false [pagination] -pagerSize = 10 +pagerSize = 8 [taxonomies] category = "categories" @@ -21,11 +21,11 @@ term = ["HTML"] [params] description = "Roux is a slow-publishing fashion journal — one hundred photographs at a time. Editorial, couture, beauty and backstage plates." author = "Roux Editorial" -issueIds = ["01"] -issueNumber = "01" -issueName = "Devotion" -issueSeason = "Spring MMXXVI" -issueBlurb = "One hundred plates devoted to a single presence — photographed across worlds, light, and time." +issueIds = ["02", "01"] +issueNumber = "02" +issueName = "Obsession" +issueSeason = "Autumn MMXXVI" +issueBlurb = "One hundred plates in thrall to a single body — a bared shoulder, a parted mouth, silk slipping loose." siteURL = "https://roux.pivoine.art" umamiSrc = "https://umami.pivoine.art/script.js" umamiId = "df675ca7-f82a-463b-89aa-f67c1f56ed68" @@ -34,7 +34,26 @@ umamiId = "df675ca7-f82a-463b-89aa-f67c1f56ed68" unsafe = true [build] -writeStats = true + [build.buildStats] + enable = true + [[build.cachebusters]] + source = 'assets/notwatching/hugo_stats\.json' + target = 'css' + [[build.cachebusters]] + source = 'assets/css/main\.css' + target = 'css' + +[module] + [[module.mounts]] + source = 'assets' + target = 'assets' + [[module.mounts]] + source = 'hugo_stats.json' + target = 'assets/notwatching/hugo_stats.json' + disableWatch = true + +[security.exec] + allow = ['^(dart-)?sass$', '^go$', '^git$', '^node$', '^npx$', '^postcss$', '^tailwindcss$'] [imaging] quality = 85 diff --git a/hugo_stats.json b/hugo_stats.json deleted file mode 100644 index c6e71f9..0000000 --- a/hugo_stats.json +++ /dev/null @@ -1,393 +0,0 @@ -{ - "htmlElements": { - "tags": [ - "a", - "article", - "aside", - "body", - "br", - "button", - "circle", - "defs", - "div", - "ellipse", - "em", - "footer", - "g", - "h1", - "h2", - "h4", - "head", - "header", - "hr", - "html", - "img", - "input", - "label", - "link", - "main", - "meta", - "nav", - "p", - "path", - "picture", - "radialgradient", - "script", - "section", - "source", - "span", - "stop", - "strong", - "svg", - "title" - ], - "classes": [ - "[&_a]:border-[var(--rule)]", - "[&_a]:border-b", - "[&_a]:duration-150", - "[&_a]:text-ink-2", - "[&_a]:transition-colors", - "[&_b]:font-semibold", - "[&_b]:mr-1", - "[&_b]:text-ink", - "[&_h2]:first:mt-0", - "[&_h2]:font-medium", - "[&_h2]:font-sans", - "[&_h2]:leading-none", - "[&_h2]:mb-4", - "[&_h2]:mt-10", - "[&_h2]:text-[10px]", - "[&_h2]:text-ink-soft", - "[&_h2]:tracking-[.22em]", - "[&_h2]:uppercase", - "[&_hr]:bg-[var(--rule-2)]", - "[&_hr]:block", - "[&_hr]:border-none", - "[&_hr]:h-px", - "[&_hr]:mb-0", - "[&_hr]:mt-8", - "[&_p]:font-serif", - "[&_p]:leading-[1.72]", - "[&_p]:mb-0", - "[&_p]:mt-3", - "[&_p]:text-[clamp(15px,1.05vw,17px)]", - "[&_p]:text-ink-2", - "[&_strong]:font-medium", - "[&_strong]:font-sans", - "[&_strong]:text-[13px]", - "[&_strong]:text-ink", - "[&_strong]:tracking-[.02em]", - "[-webkit-box-orient:vertical]", - "[-webkit-line-clamp:2]", - "[background:color-mix(in_oklab,var(--paper)_86%,transparent)]", - "[background:color-mix(in_oklab,var(--paper)_95%,transparent)]", - "[display:-webkit-box]", - "[filter:saturate(.92)_contrast(1.02)]", - "[grid-template-columns:1fr_1px_auto]", - "[grid-template-columns:1fr_auto_1fr]", - "[grid-template-columns:2fr_1fr_1fr_1fr]", - "[grid-template-columns:repeat(auto-fill,minmax(220px,1fr))]", - "[grid-template-columns:repeat(auto-fill,minmax(280px,1fr))]", - "[transition-duration:.9s,.6s]", - "[transition-timing-function:cubic-bezier(.2,.7,.1,1),ease]", - "absolute", - "after:absolute", - "after:content-['']", - "after:inset-0", - "after:pointer-events-none", - "after:shadow-[inset_0_0_0_1px_rgba(22,17,13,.04)]", - "aspect-[2/3]", - "backdrop-blur-[14px]", - "bg-[var(--rule)]", - "bg-current", - "bg-ink", - "bg-paper-2", - "bg-roux", - "bg-transparent", - "block", - "border", - "border-0", - "border-[var(--rule)]", - "border-[var(--rule-2)]", - "border-b", - "border-current", - "border-current/30", - "border-ink", - "border-l-0", - "border-r", - "border-t", - "border-white/20", - "bottom-0", - "bottom-[10px]", - "card", - "card-img", - "cursor-pointer", - "cursor-text", - "duration-200", - "duration-300", - "duration-700", - "fixed", - "flex", - "flex-1", - "flex-col", - "flex-wrap", - "font-display", - "font-light", - "font-medium", - "font-mono", - "font-normal", - "font-sans", - "font-serif", - "gap-1", - "gap-1.5", - "gap-10", - "gap-2", - "gap-3", - "gap-4", - "gap-5", - "gap-6", - "gap-[18px]", - "gap-[7px]", - "gap-[clamp(12px,2vw,24px)]", - "gap-[var(--gap)]", - "grid", - "group", - "group-hover:scale-[1.02]", - "h-10", - "h-6", - "h-9", - "h-[30px]", - "h-full", - "h-px", - "hover:[&_a]:border-ink", - "hover:[&_a]:text-ink", - "hover:bg-roux-deep", - "hover:bg-white/10", - "hover:border-ink", - "hover:opacity-100", - "hover:text-ink", - "hover:text-white", - "img-zoom", - "inline-flex", - "inset-0", - "inset-x-0", - "italic", - "items-center", - "items-stretch", - "justify-between", - "justify-center", - "justify-end", - "justify-items-center", - "justify-self-center", - "lb", - "lb-brand", - "lb-close", - "lb-index", - "lb-meta", - "lb-nav", - "lb-nav-next", - "lb-nav-prev", - "lb-stage", - "lb-thumbs", - "lb-topbar", - "lb-track", - "leading-[0.92]", - "leading-[0.94]", - "leading-[0.95]", - "leading-[1.05]", - "leading-[1.1]", - "leading-[1.4]", - "leading-[1.5]", - "leading-[1.65]", - "leading-none", - "left-[10px]", - "m-0", - "max-[1100px]:hidden", - "max-[460px]:[grid-template-columns:1fr]", - "max-[460px]:hidden", - "max-[620px]:gap-[10px]", - "max-[620px]:h-[22px]", - "max-[620px]:py-3", - "max-[620px]:text-[10px]", - "max-[620px]:text-[22px]", - "max-[620px]:text-[7.5px]", - "max-[620px]:tracking-[.28em]", - "max-[620px]:w-[22px]", - "max-[720px]:hidden", - "max-[720px]:text-[15px]", - "max-[820px]:[grid-template-columns:1fr_1fr]", - "max-[820px]:block", - "max-[820px]:border-[var(--rule)]", - "max-[820px]:border-t", - "max-[820px]:hidden", - "max-h-[96vh]", - "max-w-[14ch]", - "max-w-[40ch]", - "max-w-[44ch]", - "max-w-[55ch]", - "max-w-[62ch]", - "max-w-[96vw]", - "mb-10", - "mb-2", - "mb-4", - "mb-5", - "mb-6", - "mb-8", - "mb-[14px]", - "min-h-[75vh]", - "min-w-0", - "mix-blend-difference", - "ml-1", - "ml-3", - "mr-3", - "mt-0.5", - "mt-14", - "mt-2", - "mt-[14px]", - "mt-[var(--gap)]", - "mt-auto", - "nav-link", - "object-contain", - "object-cover", - "opacity-30", - "opacity-50", - "opacity-60", - "opacity-[.035]", - "outline-none", - "overflow-hidden", - "pb-0", - "pb-14", - "pb-[clamp(28px,3.5vw,48px)]", - "pb-[clamp(32px,4vw,60px)]", - "pb-px", - "place-items-center", - "placeholder:opacity-90", - "placeholder:text-ink-soft", - "pointer-events-none", - "pt-4", - "pt-9", - "pt-[clamp(36px,5vw,64px)]", - "pt-[clamp(40px,6vw,80px)]", - "pt-[var(--gap)]", - "px-4", - "px-6", - "px-[6px]", - "px-[7px]", - "px-[clamp(24px,4vw,60px)]", - "px-[var(--pad)]", - "py-1.5", - "py-2", - "py-3", - "py-[10px]", - "py-[14px]", - "py-[3px]", - "py-[5px]", - "py-[clamp(24px,3vw,40px)]", - "py-[clamp(32px,4vw,60px)]", - "py-[clamp(36px,5vw,64px)]", - "py-[clamp(48px,8vw,96px)]", - "py-[var(--gap)]", - "relative", - "ribbon", - "right-4", - "right-[10px]", - "rounded-[1px]", - "rounded-[3px]", - "rounded-full", - "saturate-[1.05]", - "searchpop", - "select-none", - "shrink-0", - "space-y-0", - "sticky", - "tabular-nums", - "text-[10px]", - "text-[11px]", - "text-[12px]", - "text-[13px]", - "text-[16px]", - "text-[30px]", - "text-[8.5px]", - "text-[clamp(13px,1vw,16px)]", - "text-[clamp(14px,1.1vw,17px)]", - "text-[clamp(15px,1.2vw,18px)]", - "text-[clamp(200px,40vw,520px)]", - "text-[clamp(20px,1.6vw,26px)]", - "text-[clamp(22px,2vw,30px)]", - "text-[clamp(40px,6vw,80px)]", - "text-[clamp(42px,6vw,88px)]", - "text-[clamp(48px,6vw,80px)]", - "text-[clamp(48px,7vw,96px)]", - "text-center", - "text-ink", - "text-ink-2", - "text-ink-soft", - "text-ink-soft/40", - "text-ink-soft/50", - "text-paper", - "text-roux", - "text-white/60", - "top-0", - "top-4", - "top-[10px]", - "tracking-[.005em]", - "tracking-[.045em]", - "tracking-[.04em]", - "tracking-[.12em]", - "tracking-[.14em]", - "tracking-[.16em]", - "tracking-[.18em]", - "tracking-[.1em]", - "tracking-[.22em]", - "tracking-[.32em]", - "tracking-normal", - "transition-[transform,filter]", - "transition-colors", - "transition-opacity", - "transition-transform", - "translate-y-[6%]", - "uppercase", - "w-10", - "w-12", - "w-6", - "w-8", - "w-9", - "w-[30px]", - "w-full", - "whitespace-nowrap", - "z-10", - "z-50", - "z-[100]" - ], - "ids": [ - "ai-training", - "content", - "copyright", - "count", - "grid", - "hero", - "imgZoom", - "imgZoomClose", - "imgZoomImg", - "lb", - "lbBloom", - "lbIndex", - "lbMeta", - "lbThumbs", - "lbTrack", - "masthead", - "mhBloom", - "mhDate", - "photography", - "publication", - "responsible-person", - "ribbon", - "ribbonClose", - "roux-data", - "searchInput", - "searchpop", - "technical", - "viewFull" - ] - } -} diff --git a/layouts/404.html b/layouts/404.html index 4297aeb..b34fd4f 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -32,7 +32,7 @@ {{/* Body */}}

The photograph you're looking for may have been moved, archived, or perhaps it was never printed. - One hundred plates remain in the archive — return and find your frame. + Every plate remains in the archive — return and find your frame.

{{/* CTAs */}} diff --git a/layouts/_default/list.html b/layouts/_default/list.html index 45cf02d..824999e 100644 --- a/layouts/_default/list.html +++ b/layouts/_default/list.html @@ -65,7 +65,8 @@ {{- end }} -{{- $paginator := .Paginate .Pages }} +{{- $items := cond (eq .Kind "section") .RegularPagesRecursive .Pages }} +{{- $paginator := .Paginate $items }}
-{{/* Tell JS which slug to open in the lightbox */}} +{{/* Tell JS which slug to open in the lightbox (script for first load, data attr for SPA nav) */}} + {{ end }} diff --git a/layouts/baseof.html b/layouts/baseof.html index 376e9f5..1bc1331 100644 --- a/layouts/baseof.html +++ b/layouts/baseof.html @@ -21,7 +21,7 @@ bg-ink text-paper font-sans font-medium text-[11px] leading-none tracking-[.16em] uppercase transition-transform duration-300"> - Roux № {{ .Site.Params.issueNumber }} — out now. See the plates → + Roux № {{ .Site.Params.issueNumber }} — out now. See the plates →