From ac6f0f96a4b1300187fe690ea2254c5c37e5f2bf Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 29 May 2017 20:07:17 +0200 Subject: [PATCH 01/66] Docker set up. Adding containers for Hugo and Docker. --- .docker/nginx/Dockerfile | 4 ++++ .docker/nginx/nginx.build.conf | 0 .docker/nginx/nginx.development.conf | 28 ++++++++++++++++++++++++++ .docker/site/Dockerfile | 16 +++++++++++++++ docker-compose.yml | 30 ++++++++++++++++++++++++++++ 5 files changed, 78 insertions(+) create mode 100644 .docker/nginx/Dockerfile create mode 100644 .docker/nginx/nginx.build.conf create mode 100644 .docker/nginx/nginx.development.conf create mode 100644 .docker/site/Dockerfile diff --git a/.docker/nginx/Dockerfile b/.docker/nginx/Dockerfile new file mode 100644 index 0000000..7175044 --- /dev/null +++ b/.docker/nginx/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:alpine +MAINTAINER Matt Finucane +ARG nginx_conf +COPY $nginx_conf /etc/nginx/nginx.conf \ No newline at end of file diff --git a/.docker/nginx/nginx.build.conf b/.docker/nginx/nginx.build.conf new file mode 100644 index 0000000..e69de29 diff --git a/.docker/nginx/nginx.development.conf b/.docker/nginx/nginx.development.conf new file mode 100644 index 0000000..def8edd --- /dev/null +++ b/.docker/nginx/nginx.development.conf @@ -0,0 +1,28 @@ +http { + default_type application/octet-stream; + include /etc/nginx/mime.types; + + server { + listen 80; + server_name cinematt.dev; + + gzip on; + gzip_proxied any; + gzip_types text/plain text/css application/x-javascript; + gzip_vary on; + gzip_disable "MSIE [1-6]\.(?!.*SV1)"; + + access_log /var/log/access.log; + error_log /var/log/error.log; + + location / { + proxy_pass http://cinematt-site-dev:1313; + proxy_http_version 1.1; + proxy_set_header Host $host; + proxy_set_header X-Forwarded-For $remote_addr; + proxy_intercept_errors on; + error_page 404 /404.html; + } + + } +} \ No newline at end of file diff --git a/.docker/site/Dockerfile b/.docker/site/Dockerfile new file mode 100644 index 0000000..eb9d7dc --- /dev/null +++ b/.docker/site/Dockerfile @@ -0,0 +1,16 @@ +FROM alpine:latest +MAINTAINER Matt Finucane + +ARG hugo_version +RUN rm -rf /opt/public + +RUN apk add --update wget ca-certificates && \ + cd /tmp/ && \ + wget https://github.com/spf13/hugo/releases/download/v${hugo_version}/hugo_${hugo_version}_Linux-64bit.tar.gz && \ + tar xzf hugo_${hugo_version}_Linux-64bit.tar.gz && \ + rm -r hugo_${hugo_version}_Linux-64bit.tar.gz && \ + mv hugo*/hugo* /usr/bin/hugo && \ + apk del wget ca-certificates && \ + rm /var/cache/apk/* + +WORKDIR /opt \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index e69de29..1ed2acc 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -0,0 +1,30 @@ +version: '3' + +services: + cinematt-site-dev: + container_name: site_dev + restart: always + build: + context: .docker/site + dockerfile: Dockerfile + args: + hugo_version: "0.21" + ports: + - "1313:1313" + volumes: + ./:/opt:rw + command: hugo server -s /opt/site --config /opt/site/config.yml --baseUrl http://cinematt.dev --bind "0.0.0.0" --appendPort=false --verbose + + cinematt-nginx-dev: + container_name: nginx_dev + build: + context: ./docker/nginx + dockerfile: Dockerfile + args: + nginx_conf: nginx.development.conf + links: + - cinematt-site-dev + ports: + - "80:80" + command: nginx -g "daemon off;" + \ No newline at end of file From 2f9e2b840995b58b6a4ff2af705e26121b8c49b2 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Tue, 30 May 2017 12:08:17 +0200 Subject: [PATCH 02/66] Adding basic partials, content and templates. Setting up hugo config and nginx. --- .docker/nginx/nginx.build.conf | 30 ++++++++++++++++++++++++++++++ site/build.yml | 14 ++++++++++++++ site/config.yml | 14 ++++++++++++++ site/content/404.md | 8 ++++++++ site/content/_index.md | 8 ++++++++ site/layouts/404.html | 13 +++++++++++++ site/layouts/index.html | 13 +++++++++++++ site/layouts/partials/footer.html | 2 ++ site/layouts/partials/head.html | 19 +++++++++++++++++++ site/layouts/partials/header.html | 7 +++++++ 10 files changed, 128 insertions(+) create mode 100644 site/content/404.md create mode 100644 site/content/_index.md diff --git a/.docker/nginx/nginx.build.conf b/.docker/nginx/nginx.build.conf index e69de29..94a17f3 100644 --- a/.docker/nginx/nginx.build.conf +++ b/.docker/nginx/nginx.build.conf @@ -0,0 +1,30 @@ +http { + default_type application/octet-stream; + include /etc/nginx/mime.types; + + map $sent_http_content_type $expires { + default off; + text/html off; + text/css max; + application/javasvript max; + -image/ max; + } + + server { + listen 80; + server_name cinematt.build; + expires $expires; + + gzip on; + gzip_proxied any; + gzip_types text/plain text/css application/x-javascript; + gzip_vary on; + gzip_disable "MSIE [1-6]\.(?!.*SV1)"; + + access_log /var/log/access.log; + error_log /var/log/error.log; + + error_page /404.html; + root /opt/public; + } +} \ No newline at end of file diff --git a/site/build.yml b/site/build.yml index e69de29..9bc1af2 100644 --- a/site/build.yml +++ b/site/build.yml @@ -0,0 +1,14 @@ +--- +baseUrl: "http://cinematt.build" +languageCode: "en-ie" +title: "[BUILD] Cinematt" +disableLiveReload: true +watch: false +preservetaxonomynames: true + +params: + description: "Photography website" + author: "Matt Finucane" + noindex: true +... + diff --git a/site/config.yml b/site/config.yml index e69de29..502756b 100644 --- a/site/config.yml +++ b/site/config.yml @@ -0,0 +1,14 @@ +--- +baseUrl: "http://cinematt.dev" +languageCode: "en-ie" +title: "[DEV] Cinematt" +disableLiveReload: true +watch: true +preservetaxonomynames: true + +params: + description: "Photography website" + author: "Matt Finucane" + noindex: true +... + diff --git a/site/content/404.md b/site/content/404.md new file mode 100644 index 0000000..4ca86cf --- /dev/null +++ b/site/content/404.md @@ -0,0 +1,8 @@ +--- +title: "404" +description: "Not found" +--- + +# Sorry + +I couldn't find what you were looking for. \ No newline at end of file diff --git a/site/content/_index.md b/site/content/_index.md new file mode 100644 index 0000000..86c3f3e --- /dev/null +++ b/site/content/_index.md @@ -0,0 +1,8 @@ +--- +title: "Welcome" +description: "Matt Finucane personal photography webite" +--- + +# Cinematt + +This is the content for the index page. \ No newline at end of file diff --git a/site/layouts/404.html b/site/layouts/404.html index e69de29..1ffb328 100644 --- a/site/layouts/404.html +++ b/site/layouts/404.html @@ -0,0 +1,13 @@ + + + + {{ partial "head" . }} + + + {{ partial "header" . }} +
+ {{ .Content }} +
+ {{ partial "footer" . }} + + \ No newline at end of file diff --git a/site/layouts/index.html b/site/layouts/index.html index e69de29..1ffb328 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -0,0 +1,13 @@ + + + + {{ partial "head" . }} + + + {{ partial "header" . }} +
+ {{ .Content }} +
+ {{ partial "footer" . }} + + \ No newline at end of file diff --git a/site/layouts/partials/footer.html b/site/layouts/partials/footer.html index e69de29..f893ae1 100644 --- a/site/layouts/partials/footer.html +++ b/site/layouts/partials/footer.html @@ -0,0 +1,2 @@ +
+
\ No newline at end of file diff --git a/site/layouts/partials/head.html b/site/layouts/partials/head.html index e69de29..1cc2c5e 100644 --- a/site/layouts/partials/head.html +++ b/site/layouts/partials/head.html @@ -0,0 +1,19 @@ + + {{ .Title }} | Cinematt + +{{ if .Site.Params.no_index }} + + +{{ end }} + + + + +{{ if .Description }} + +{{ else }} + +{{ end }} + + + \ No newline at end of file diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html index e69de29..76b0812 100644 --- a/site/layouts/partials/header.html +++ b/site/layouts/partials/header.html @@ -0,0 +1,7 @@ +
+ +

+ {{ .Site.Params.title }} +

+
+
\ No newline at end of file From d8a8e426e43c785facfb51395ab6908ae8479680 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Tue, 30 May 2017 12:39:35 +0200 Subject: [PATCH 03/66] Corrected docker compose file and nginx config. --- .docker/nginx/nginx.development.conf | 6 ++++++ docker-compose.yml | 10 +++++----- site/layouts/partials/head.html | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.docker/nginx/nginx.development.conf b/.docker/nginx/nginx.development.conf index def8edd..71801e8 100644 --- a/.docker/nginx/nginx.development.conf +++ b/.docker/nginx/nginx.development.conf @@ -1,3 +1,9 @@ +worker_processes 4; + +events { + worker_connections 1024; +} + http { default_type application/octet-stream; include /etc/nginx/mime.types; diff --git a/docker-compose.yml b/docker-compose.yml index 1ed2acc..ee62747 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,23 +2,23 @@ version: '3' services: cinematt-site-dev: - container_name: site_dev + container_name: cinematt_site_dev restart: always build: context: .docker/site dockerfile: Dockerfile args: - hugo_version: "0.21" + hugo_version: "0.20.2" ports: - "1313:1313" volumes: - ./:/opt:rw + - ./:/opt:rw command: hugo server -s /opt/site --config /opt/site/config.yml --baseUrl http://cinematt.dev --bind "0.0.0.0" --appendPort=false --verbose cinematt-nginx-dev: - container_name: nginx_dev + container_name: cinematt_nginx_dev build: - context: ./docker/nginx + context: .docker/nginx dockerfile: Dockerfile args: nginx_conf: nginx.development.conf diff --git a/site/layouts/partials/head.html b/site/layouts/partials/head.html index 1cc2c5e..23d9c07 100644 --- a/site/layouts/partials/head.html +++ b/site/layouts/partials/head.html @@ -15,5 +15,5 @@ {{ end }} - + \ No newline at end of file From 3794c7b69635307f3e7fac8e3c9904430c7daa2a Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Tue, 30 May 2017 15:37:13 +0200 Subject: [PATCH 04/66] Adding layout files for SASS. Compiling these to CSS with Ruby Sass. Docker compose build setup completeded. --- .docker/nginx/nginx.build.conf | 8 ++++++- assets/sass/animations.sass | 0 assets/sass/cards.sass | 0 assets/sass/constants.sass | 31 ++++++++++++++++++++++++++ assets/sass/layouts/landing.sass | 0 assets/sass/main.sass | 8 +++++++ assets/sass/mixins.sass | 0 assets/sass/partials.sass | 0 assets/sass/setup.sass | 4 ++++ assets/sass/typography.sass | 4 ++++ build.yml | 37 ++++++++++++++++++++++++++++++++ docker-compose.yml | 13 +++++++++++ site/layouts/partials/head.html | 3 ++- 13 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 assets/sass/animations.sass create mode 100644 assets/sass/cards.sass create mode 100644 assets/sass/constants.sass create mode 100644 assets/sass/layouts/landing.sass create mode 100644 assets/sass/main.sass create mode 100644 assets/sass/mixins.sass create mode 100644 assets/sass/partials.sass create mode 100644 assets/sass/setup.sass create mode 100644 assets/sass/typography.sass diff --git a/.docker/nginx/nginx.build.conf b/.docker/nginx/nginx.build.conf index 94a17f3..fa486e7 100644 --- a/.docker/nginx/nginx.build.conf +++ b/.docker/nginx/nginx.build.conf @@ -1,3 +1,9 @@ +worker_processes 4; + +events { + worker_connections 1024; +} + http { default_type application/octet-stream; include /etc/nginx/mime.types; @@ -24,7 +30,7 @@ http { access_log /var/log/access.log; error_log /var/log/error.log; - error_page /404.html; + error_page 404 /404.html; root /opt/public; } } \ No newline at end of file diff --git a/assets/sass/animations.sass b/assets/sass/animations.sass new file mode 100644 index 0000000..e69de29 diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass new file mode 100644 index 0000000..e69de29 diff --git a/assets/sass/constants.sass b/assets/sass/constants.sass new file mode 100644 index 0000000..afb6503 --- /dev/null +++ b/assets/sass/constants.sass @@ -0,0 +1,31 @@ +/** + * Breakpoints + */ +$break-0: 40rem +$break-1: 48rem +$break-2: 64rem +$break-3: 80rem + +/** + * Layers + */ +$z-over: 1 +$z-middle: 0 +$z-under: -1 + +/** + * Typography + */ +$font-family: Gill Sans, Gill Sans MT, Calibri, sans-serif +$base-font-size: 1rem +$letter-spacing: $base-font-size / 8 +$font-weight-light: 100 +$font-weight-normal: 300 +$font-weight-semibold: 400 +$font-weight-bold: 600 + +/** + * Base measurements + */ +$units: 1rem +$transition-duration: 350ms diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass new file mode 100644 index 0000000..e69de29 diff --git a/assets/sass/main.sass b/assets/sass/main.sass new file mode 100644 index 0000000..18303e9 --- /dev/null +++ b/assets/sass/main.sass @@ -0,0 +1,8 @@ +/** + * Base set up + */ +@import "constants" +@import "mixins" +@import "typography" +@import "setup" +@import "animations" \ No newline at end of file diff --git a/assets/sass/mixins.sass b/assets/sass/mixins.sass new file mode 100644 index 0000000..e69de29 diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass new file mode 100644 index 0000000..e69de29 diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass new file mode 100644 index 0000000..bd96053 --- /dev/null +++ b/assets/sass/setup.sass @@ -0,0 +1,4 @@ +* + padding: 0 + margin: 0 + box-sizing: border-box diff --git a/assets/sass/typography.sass b/assets/sass/typography.sass new file mode 100644 index 0000000..a61a443 --- /dev/null +++ b/assets/sass/typography.sass @@ -0,0 +1,4 @@ +body + font-family: $font-family + -webkit-font-smoothing: antialiased + -moz-osx-font-smoothing: grayscale \ No newline at end of file diff --git a/build.yml b/build.yml index e69de29..61662e5 100644 --- a/build.yml +++ b/build.yml @@ -0,0 +1,37 @@ +version: '3' + +services: + cinematt-site-build: + container_name: cinematt_site_build + build: + context: .docker/site + dockerfile: Dockerfile + args: + hugo_version: "0.20.2" + volumes: + - ./:/opt:rw + command: hugo -s /opt/site -b http://cinematt.build --config=./site/build.yml -d ../public + + cinematt-nginx-build: + container_name: cinematt_nginx_build + build: + context: .docker/nginx + dockerfile: Dockerfile + args: + nginx_conf: nginx.build.conf + volumes: + - ./public:/opt/public:ro + links: + - cinematt-site-build + ports: + - "80:80" + command: nginx -g "daemon off;" + + cinemat-sass-build: + container_name: cinematt_sass_build + image: ruby:2.1-alpine + volumes: + - ./:/opt:rw + links: + - cinematt-site-build + command: sh -c "gem install sass && sass /opt/assets/sass/main.sass:/opt/public/css/main.css --style compressed" \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index ee62747..eac03c7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,4 +27,17 @@ services: ports: - "80:80" command: nginx -g "daemon off;" + + cinematt-sass-dev: + container_name: cinematt_sass_dev + image: ruby:2.1-alpine + restart: always + volumes: + - ./:/opt:rw + links: + - cinematt-site-dev + depends_on: + - cinematt-site-dev + command: sh -c "gem install sass && sass --watch /opt/assets/sass/main.sass:/opt/site/static/css/main.css" + \ No newline at end of file diff --git a/site/layouts/partials/head.html b/site/layouts/partials/head.html index 23d9c07..811e573 100644 --- a/site/layouts/partials/head.html +++ b/site/layouts/partials/head.html @@ -16,4 +16,5 @@ {{ end }} - \ No newline at end of file + + \ No newline at end of file From fb9651c2aea9cfdc940cf83e2ded939944ca6e59 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Tue, 30 May 2017 17:00:36 +0200 Subject: [PATCH 05/66] Setting up archetypes. --- site/archetypes/album.md | 8 ++++++++ site/archetypes/default.md | 0 site/archetypes/photo.md | 13 +++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 site/archetypes/album.md create mode 100644 site/archetypes/default.md create mode 100644 site/archetypes/photo.md diff --git a/site/archetypes/album.md b/site/archetypes/album.md new file mode 100644 index 0000000..2a6277e --- /dev/null +++ b/site/archetypes/album.md @@ -0,0 +1,8 @@ +--- +title: "" +description: "" +date: "" +identifier: "" +weight: "" +importance: "" +--- \ No newline at end of file diff --git a/site/archetypes/default.md b/site/archetypes/default.md new file mode 100644 index 0000000..e69de29 diff --git a/site/archetypes/photo.md b/site/archetypes/photo.md new file mode 100644 index 0000000..134ae98 --- /dev/null +++ b/site/archetypes/photo.md @@ -0,0 +1,13 @@ +--- +title: "" +type: "" +description: "" +date: "" +album: "" +url: "" +exif_exposure: "" +exif_f_number: "" +exif_focal_mm: "" +exif_iso: "" +exif_lens: "" +--- \ No newline at end of file From e193ddef7fbdcabf851cc11653836b771af1ff6c Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Wed, 31 May 2017 16:21:28 +0200 Subject: [PATCH 06/66] Adding layouts for photos, albums and taxonomy. Added content for albums. --- site/archetypes/album.md | 1 + site/content/albums/abandoned.md | 12 ++++++++++++ site/content/albums/city.md | 12 ++++++++++++ site/content/albums/events.md | 12 ++++++++++++ site/content/albums/experimental.md | 12 ++++++++++++ site/content/albums/landscapes.md | 12 ++++++++++++ site/content/albums/music.md | 12 ++++++++++++ site/content/albums/nature.md | 12 ++++++++++++ site/content/albums/people.md | 12 ++++++++++++ site/content/albums/the-road.md | 12 ++++++++++++ site/layouts/albums/card.html | 5 +++++ site/layouts/albums/list.html | 0 site/layouts/albums/single.html | 13 +++++++++++++ site/layouts/index.html | 7 +++++-- site/layouts/photos/card.html | 0 site/layouts/photos/list.html | 0 site/layouts/photos/single.html | 0 site/layouts/taxonomy/category.terms.html | 0 site/layouts/taxonomy/tag.terms.html | 0 19 files changed, 132 insertions(+), 2 deletions(-) create mode 100644 site/content/albums/abandoned.md create mode 100644 site/content/albums/city.md create mode 100644 site/content/albums/events.md create mode 100644 site/content/albums/experimental.md create mode 100644 site/content/albums/landscapes.md create mode 100644 site/content/albums/music.md create mode 100644 site/content/albums/nature.md create mode 100644 site/content/albums/people.md create mode 100644 site/content/albums/the-road.md create mode 100644 site/layouts/albums/card.html create mode 100644 site/layouts/albums/list.html create mode 100644 site/layouts/albums/single.html create mode 100644 site/layouts/photos/card.html create mode 100644 site/layouts/photos/list.html create mode 100644 site/layouts/photos/single.html create mode 100644 site/layouts/taxonomy/category.terms.html create mode 100644 site/layouts/taxonomy/tag.terms.html diff --git a/site/archetypes/album.md b/site/archetypes/album.md index 2a6277e..f587c1c 100644 --- a/site/archetypes/album.md +++ b/site/archetypes/album.md @@ -5,4 +5,5 @@ date: "" identifier: "" weight: "" importance: "" +preview_image: "" --- \ No newline at end of file diff --git a/site/content/albums/abandoned.md b/site/content/albums/abandoned.md new file mode 100644 index 0000000..ee09664 --- /dev/null +++ b/site/content/albums/abandoned.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:45:38Z +description: "Abandoned" +identifier: "abandoned" +importance: "9" +preview_image: "" +title: "Abandoned" +weight: "9" +--- + +# Abandoned +This is the content for Abandoned \ No newline at end of file diff --git a/site/content/albums/city.md b/site/content/albums/city.md new file mode 100644 index 0000000..2c6f070 --- /dev/null +++ b/site/content/albums/city.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:42:34Z +description: "City" +identifier: "city" +importance: "3" +title: "City" +weight: "3" +preview_image: "" +--- + +# City +This is the content for City \ No newline at end of file diff --git a/site/content/albums/events.md b/site/content/albums/events.md new file mode 100644 index 0000000..4f29ac0 --- /dev/null +++ b/site/content/albums/events.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:44:49Z +description: "Events" +identifier: "events" +importance: "5" +preview_image: "" +title: "Events" +weight: "5" +--- + +# Events +This is the content for Events \ No newline at end of file diff --git a/site/content/albums/experimental.md b/site/content/albums/experimental.md new file mode 100644 index 0000000..1fec707 --- /dev/null +++ b/site/content/albums/experimental.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:42:59Z +description: "Experimental" +identifier: "experimental" +importance: "4" +title: "Experimental" +weight: "4" +preview_image: "" +--- + +# Experimental +This is the content for Experimental \ No newline at end of file diff --git a/site/content/albums/landscapes.md b/site/content/albums/landscapes.md new file mode 100644 index 0000000..37f413e --- /dev/null +++ b/site/content/albums/landscapes.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:42:04Z +description: "Landcapes" +identifier: "landscapes" +importance: "2" +title: "Landscapes" +weight: "2" +preview_image: "" +--- + +# Landscapes +This is the content for Landscapes \ No newline at end of file diff --git a/site/content/albums/music.md b/site/content/albums/music.md new file mode 100644 index 0000000..2e6c12c --- /dev/null +++ b/site/content/albums/music.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:47:34Z +description: "Music" +identifier: "music" +importance: "8" +preview_image: "" +title: "Music" +weight: "8" +--- + +# Music +This is the content for Music \ No newline at end of file diff --git a/site/content/albums/nature.md b/site/content/albums/nature.md new file mode 100644 index 0000000..0d9bdb5 --- /dev/null +++ b/site/content/albums/nature.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:46:14Z +description: "Nature" +identifier: "nature" +importance: "6" +preview_image: "" +title: "Nature" +weight: "6" +--- + +# Nature +This is the content for Nature \ No newline at end of file diff --git a/site/content/albums/people.md b/site/content/albums/people.md new file mode 100644 index 0000000..3ab9b91 --- /dev/null +++ b/site/content/albums/people.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:41:21Z +description: "People" +identifier: "people" +importance: "1" +title: "People" +weight: "1" +preview_image: "" +--- + +# People +This is the content for People \ No newline at end of file diff --git a/site/content/albums/the-road.md b/site/content/albums/the-road.md new file mode 100644 index 0000000..e2e2f28 --- /dev/null +++ b/site/content/albums/the-road.md @@ -0,0 +1,12 @@ +--- +date: 2017-05-31T13:46:55Z +description: "The road" +identifier: "the-road" +importance: "7" +preview_image: "" +title: "The Road" +weight: "7" +--- + +# The Road +This is the content for The Road \ No newline at end of file diff --git a/site/layouts/albums/card.html b/site/layouts/albums/card.html new file mode 100644 index 0000000..9c108dd --- /dev/null +++ b/site/layouts/albums/card.html @@ -0,0 +1,5 @@ + +

+ {{ .Title }} +

+
\ No newline at end of file diff --git a/site/layouts/albums/list.html b/site/layouts/albums/list.html new file mode 100644 index 0000000..e69de29 diff --git a/site/layouts/albums/single.html b/site/layouts/albums/single.html new file mode 100644 index 0000000..1ffb328 --- /dev/null +++ b/site/layouts/albums/single.html @@ -0,0 +1,13 @@ + + + + {{ partial "head" . }} + + + {{ partial "header" . }} +
+ {{ .Content }} +
+ {{ partial "footer" . }} + + \ No newline at end of file diff --git a/site/layouts/index.html b/site/layouts/index.html index 1ffb328..23fc9a3 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -5,8 +5,11 @@ {{ partial "header" . }} -
- {{ .Content }} +
+ {{ $albums := where .Data.Pages "Section" "albums" }} + {{ range sort $albums ".Params.weight" "desc" }} + {{ .Render "card" }} + {{ end }}
{{ partial "footer" . }} diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html new file mode 100644 index 0000000..e69de29 diff --git a/site/layouts/photos/list.html b/site/layouts/photos/list.html new file mode 100644 index 0000000..e69de29 diff --git a/site/layouts/photos/single.html b/site/layouts/photos/single.html new file mode 100644 index 0000000..e69de29 diff --git a/site/layouts/taxonomy/category.terms.html b/site/layouts/taxonomy/category.terms.html new file mode 100644 index 0000000..e69de29 diff --git a/site/layouts/taxonomy/tag.terms.html b/site/layouts/taxonomy/tag.terms.html new file mode 100644 index 0000000..e69de29 From eb8c02455194281e5c44837f92d2b1974f4b5947 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Wed, 31 May 2017 18:08:55 +0200 Subject: [PATCH 07/66] Setting up the JS task runner using Gulp. --- assets/scripts/main.js | 3 + assets/scripts/utils.js | 13 + docker-compose.yml | 21 +- gulpfile.js | 60 ++ package-lock.json | 1269 +++++++++++++++++++++++++++++++++++++++ package.json | 29 + 6 files changed, 1393 insertions(+), 2 deletions(-) create mode 100644 assets/scripts/main.js create mode 100644 assets/scripts/utils.js create mode 100644 gulpfile.js create mode 100644 package-lock.json create mode 100644 package.json diff --git a/assets/scripts/main.js b/assets/scripts/main.js new file mode 100644 index 0000000..ee7226a --- /dev/null +++ b/assets/scripts/main.js @@ -0,0 +1,3 @@ +'use strict'; + +onload = cinematt.utils.dummy; \ No newline at end of file diff --git a/assets/scripts/utils.js b/assets/scripts/utils.js new file mode 100644 index 0000000..f207585 --- /dev/null +++ b/assets/scripts/utils.js @@ -0,0 +1,13 @@ +'use strict'; + +if(cinematt == null) { + cinematt = {}; +} + +cinematt.utils = { + + dummy: () => { + console.log('Dummy function call successful!'); + } + +}; \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index eac03c7..b94fec4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ version: '3' services: cinematt-site-dev: container_name: cinematt_site_dev - restart: always + restart: on-failure build: context: .docker/site dockerfile: Dockerfile @@ -28,10 +28,27 @@ services: - "80:80" command: nginx -g "daemon off;" + cinematt-js-dev: + container_name: cinematt_js_dev + restart: on-failure + environment: + - WATCH=true + - SCRIPTS_DEST=./site/static/js + - SVG_DEST=./site/static/svg + - FAVICONS_DEST=./site/static/favicons + image: node:8.0.0-alpine + volumes: + - ./:/opt:rw + links: + - cinematt-site-dev + depends_on: + - cinematt-site-dev + command: sh -c "cd /opt && npm install && npm start" + cinematt-sass-dev: container_name: cinematt_sass_dev image: ruby:2.1-alpine - restart: always + restart: on-failure volumes: - ./:/opt:rw links: diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..fccfdf4 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,60 @@ +'use strict'; + +const gulp = require('gulp'), + concat = require('gulp-concat'); + +const dest = { + scripts: process.env['SCRIPTS_DEST'], + svgs: process.env['SVG_DEST'], + favicons: process.env['FAVICONS_DEST'], + watch: process.env['WATCH'] != null +}; + +const tasks = () => { + let items = [ + 'debug', + 'scripts', + 'svgs', + 'favicons' + ]; + + if(dest.watch) { + items.push('watch') + } + + return items; +}; + +gulp.task('debug', () => { + console.log({ + destinations: dest + }); +}); + +gulp.task('scripts', () => { + return gulp + .src('./assets/scripts/**/*') + .pipe(concat('main.js')) + .pipe(gulp.dest(dest.scripts)); +}); + +gulp.task('favicons', () => { + return gulp + .src('./assets/favicons/**/*') + .pipe(gulp.dest(dest.favicons)); +}); + +gulp.task('svgs', () => { + return gulp + .src('./assets/svgs/**/*') + .pipe(gulp.dest(dest.svgs)); +}); + +gulp.task('watch', () => { + gulp.watch('./assets/scripts/**/*', ['scripts']); + gulp.watch('./assets/svg/**/*', ['svg']); + gulp.watch('./assets/favicons/**/*', ['favicons']); +}); + +gulp.task('default', tasks()); + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..f7671b5 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1269 @@ +{ + "name": "cinematt", + "version": "1.0.0", + "lockfileVersion": 1, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", + "dev": true + }, + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "dev": true + }, + "arr-flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.3.tgz", + "integrity": "sha1-onTthawIhJtr14R8RYB0XcUa37E=", + "dev": true + }, + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", + "dev": true + }, + "balanced-match": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=", + "dev": true + }, + "beeper": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz", + "integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz", + "integrity": "sha1-Pv/DxQ4ABTH7cg6v+A8K6O8jz1k=", + "dev": true + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "dev": true + }, + "buffer-shims": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-shims/-/buffer-shims-1.0.0.tgz", + "integrity": "sha1-mXjOMXOIxkmth5MCjDR37wRKi1E=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true + }, + "cli": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz", + "integrity": "sha1-IoF1NPJL+klQw01TLUjsvGIbjBQ=", + "dev": true, + "dependencies": { + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true + } + } + }, + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=", + "dev": true + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "dev": true + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + }, + "cloneable-readable": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.0.0.tgz", + "integrity": "sha1-pikNQT8hemEjL5XkWP84QYz7ARc=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-with-sourcemaps": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.0.4.tgz", + "integrity": "sha1-9Vs74q60dgGxCi1SWcz7cP0vHdY=", + "dev": true + }, + "console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", + "dev": true + }, + "dateformat": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz", + "integrity": "sha1-J0Pjq7XD/CRi5SfcpEXgTp9N7hc=", + "dev": true + }, + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true + }, + "deprecated": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz", + "integrity": "sha1-+cmvVGSvoeepcUWKi97yqpTVuxk=", + "dev": true + }, + "detect-file": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-0.1.0.tgz", + "integrity": "sha1-STXe39lIhkjgBrASlWbpOGcR6mM=", + "dev": true + }, + "dom-serializer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", + "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", + "dev": true, + "dependencies": { + "domelementtype": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", + "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=", + "dev": true + }, + "entities": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=", + "dev": true + } + } + }, + "domelementtype": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", + "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=", + "dev": true + }, + "domhandler": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", + "integrity": "sha1-LeWaCCLVAn+r/28DLCsloqir5zg=", + "dev": true + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "dev": true + }, + "duplexer2": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", + "integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=", + "dev": true + }, + "end-of-stream": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", + "integrity": "sha1-jhdyBsPICDfYVjLouTWd/osvbq8=", + "dev": true + }, + "entities": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", + "integrity": "sha1-sph6o4ITR/zeZCsk/fyeT7cSvyY=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", + "dev": true + }, + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", + "dev": true + }, + "expand-tilde": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz", + "integrity": "sha1-C4HrqJflo9MdHD0QL48BRB5VlEk=", + "dev": true + }, + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=", + "dev": true + }, + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", + "dev": true + }, + "fancy-log": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.0.tgz", + "integrity": "sha1-Rb4X0Cu5kX1gzP/UmVyZnmyMmUg=", + "dev": true + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", + "dev": true + }, + "fill-range": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", + "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", + "dev": true + }, + "find-index": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz", + "integrity": "sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ=", + "dev": true + }, + "findup-sync": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.4.3.tgz", + "integrity": "sha1-QAQ5Kee8YK3wt/SCfExudaDeyhI=", + "dev": true + }, + "fined": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.0.2.tgz", + "integrity": "sha1-WyhCS3YNdZiWC374SA3/itNmDpc=", + "dev": true + }, + "first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha1-Wb+1DNkF9g18OUzT2ayqtOatk04=", + "dev": true + }, + "flagged-respawn": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-0.3.2.tgz", + "integrity": "sha1-/xke3c1wiKZ1smEP/8l2vpuAdLU=", + "dev": true + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "dev": true + }, + "fs-exists-sync": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz", + "integrity": "sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "gaze": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", + "integrity": "sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8=", + "dev": true + }, + "glob": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "integrity": "sha1-xstz0yJsHv7wTePFbQEvAzd+4V8=", + "dev": true + }, + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "dev": true + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "dev": true + }, + "glob-stream": { + "version": "3.1.18", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz", + "integrity": "sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs=", + "dev": true, + "dependencies": { + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true + } + } + }, + "glob-watcher": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz", + "integrity": "sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs=", + "dev": true + }, + "glob2base": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", + "integrity": "sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY=", + "dev": true + }, + "global-modules": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz", + "integrity": "sha1-6lo77ULG1s6ZWk+KEmm12uIjgo0=", + "dev": true + }, + "global-prefix": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz", + "integrity": "sha1-jTvGuNo8qBEqFg2NSW/wRiv+948=", + "dev": true + }, + "globule": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", + "integrity": "sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU=", + "dev": true, + "dependencies": { + "glob": { + "version": "3.1.21", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", + "integrity": "sha1-0p4KBV3qUTj00H7UDomC6DwgZs0=", + "dev": true + }, + "graceful-fs": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz", + "integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=", + "dev": true + }, + "inherits": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz", + "integrity": "sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js=", + "dev": true + }, + "minimatch": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "integrity": "sha1-x054BXT2PG+aCQ6Q775u9TpqdWo=", + "dev": true + } + } + }, + "glogg": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz", + "integrity": "sha1-f+DxmfV6yQbPUS/urY+Q7kooT8U=", + "dev": true + }, + "graceful-fs": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz", + "integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=", + "dev": true + }, + "gulp": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz", + "integrity": "sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ=", + "dev": true + }, + "gulp-concat": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", + "integrity": "sha1-Yz0WyV2IUEYorQJmVmPO5aR5M1M=", + "dev": true, + "dependencies": { + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true + }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "dev": true + }, + "vinyl": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.0.2.tgz", + "integrity": "sha1-CjcT2NTpIhxY8QyhbAEWyeJe2nw=", + "dev": true + } + } + }, + "gulp-util": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz", + "integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=", + "dev": true + }, + "gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", + "dev": true + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true + }, + "has-gulplog": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", + "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", + "dev": true + }, + "homedir-polyfill": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz", + "integrity": "sha1-TCu8inWJmP7r9e1oWA921GdotLw=", + "dev": true + }, + "htmlparser2": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", + "integrity": "sha1-mWwosZFRaovoZQGn15dX5ccMEGg=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "ini": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz", + "integrity": "sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4=", + "dev": true + }, + "interpret": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz", + "integrity": "sha1-y8NcYu7uc/Gat7EKgBURQBr8D5A=", + "dev": true + }, + "is-absolute": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-0.2.6.tgz", + "integrity": "sha1-IN5p89uULvLYe5wto28XIjWxtes=", + "dev": true + }, + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=", + "dev": true + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", + "dev": true + }, + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", + "dev": true + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "dev": true + }, + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true + }, + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", + "dev": true + }, + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", + "dev": true + }, + "is-relative": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-0.2.1.tgz", + "integrity": "sha1-0n9MfVFtF1+2ENuEu+7yPDvJeqU=", + "dev": true + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "is-unc-path": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-0.1.2.tgz", + "integrity": "sha1-arBTpyVzwQJQ/0FqOBTDUXivObk=", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "is-windows": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz", + "integrity": "sha1-3hqm1j6indJIc3tp8f+LgALSEIw=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + } + } + }, + "jshint": { + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/jshint/-/jshint-2.9.4.tgz", + "integrity": "sha1-XjupeEjVKQJz21FK7kf+JM9ZKTQ=", + "dev": true, + "dependencies": { + "lodash": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz", + "integrity": "sha1-Nni9irmVBXwHreg27S7wh9qBHUU=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true + } + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true + }, + "liftoff": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.3.0.tgz", + "integrity": "sha1-qY8v9nGD2Lp8+soQVIvX/wVQs4U=", + "dev": true + }, + "lodash": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz", + "integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=", + "dev": true + }, + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=", + "dev": true + }, + "lodash._basetostring": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz", + "integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=", + "dev": true + }, + "lodash._basevalues": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz", + "integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=", + "dev": true + }, + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=", + "dev": true + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=", + "dev": true + }, + "lodash._reescape": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz", + "integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=", + "dev": true + }, + "lodash._reevaluate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz", + "integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=", + "dev": true + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", + "dev": true + }, + "lodash._root": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz", + "integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=", + "dev": true + }, + "lodash.assignwith": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assignwith/-/lodash.assignwith-4.2.0.tgz", + "integrity": "sha1-EnqX8CrcQXUalU0ksN4X4QDgOOs=", + "dev": true + }, + "lodash.escape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz", + "integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=", + "dev": true + }, + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=", + "dev": true + }, + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=", + "dev": true + }, + "lodash.isempty": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz", + "integrity": "sha1-b4bL7di+TsmHvpqvM8loTbGzHn4=", + "dev": true + }, + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", + "dev": true + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", + "dev": true + }, + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "dev": true + }, + "lodash.mapvalues": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz", + "integrity": "sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=", + "dev": true + }, + "lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=", + "dev": true + }, + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=", + "dev": true + }, + "lodash.template": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", + "integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=", + "dev": true + }, + "lodash.templatesettings": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz", + "integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=", + "dev": true + }, + "lru-cache": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", + "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=", + "dev": true + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "dev": true + }, + "minimatch": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "integrity": "sha1-jQh8OcazjAAbl/ynzm0OHoCvusc=", + "dev": true + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "multipipe": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", + "integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=", + "dev": true + }, + "natives": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.0.tgz", + "integrity": "sha1-6f+EFBimsux6SV6TmYT3jxY+bjE=", + "dev": true + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true + }, + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=", + "dev": true + }, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "dev": true + }, + "once": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", + "dev": true + }, + "orchestrator": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz", + "integrity": "sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4=", + "dev": true + }, + "ordered-read-streams": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz", + "integrity": "sha1-/VZamvjrRHO6abbtijQ1LLVS8SY=", + "dev": true + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + }, + "parse-filepath": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.1.tgz", + "integrity": "sha1-FZ1hVdQ5BNFsEO9piRHaHpGWm3M=", + "dev": true + }, + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "dev": true + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-parse": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", + "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=", + "dev": true + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", + "dev": true + }, + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=", + "dev": true + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", + "dev": true + }, + "pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", + "dev": true + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=", + "dev": true + }, + "randomatic": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.6.tgz", + "integrity": "sha1-EQ3Kv/OX6dz/fAeJzMCkmt8exbs=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true + }, + "regex-cache": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", + "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", + "dev": true + }, + "remove-trailing-separator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz", + "integrity": "sha1-YV67lq9VlVLUv0BXyENtSGq2PMQ=", + "dev": true + }, + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true + }, + "resolve": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.3.3.tgz", + "integrity": "sha1-ZVkHw0aahoDcLeOidaj91paR8OU=", + "dev": true + }, + "resolve-dir": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz", + "integrity": "sha1-shklmlYC+sXFxJatiUpujMQwJh4=", + "dev": true + }, + "safe-buffer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz", + "integrity": "sha1-0mPKVGls2KMGtcplUekt5XkY++c=", + "dev": true + }, + "semver": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", + "dev": true + }, + "sequencify": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz", + "integrity": "sha1-kM/xnQLgcCf9dn9erT57ldHnOAw=", + "dev": true + }, + "shelljs": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz", + "integrity": "sha1-NZbmMHp4FUT1kfN9phg2DzHbV7E=", + "dev": true + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=", + "dev": true + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=", + "dev": true + }, + "sparkles": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", + "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=", + "dev": true + }, + "stream-consume": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz", + "integrity": "sha1-pB6tGm1ggc63n2WwYZAbbY89HQ8=", + "dev": true + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true + }, + "strip-bom": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", + "integrity": "sha1-hbiGLzhEtabV7IRnqTWYFzo295Q=", + "dev": true + }, + "strip-json-comments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", + "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=", + "dev": true + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "dev": true, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "readable-stream": { + "version": "2.2.9", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.9.tgz", + "integrity": "sha1-z3jsb0ptHrQ9JkiMrJfwQudLf8g=", + "dev": true + }, + "string_decoder": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.1.tgz", + "integrity": "sha1-YuIA8DmVWmgQ2N8KM//A8BNmLZg=", + "dev": true + } + } + }, + "tildify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz", + "integrity": "sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo=", + "dev": true + }, + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=", + "dev": true + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "dev": true + }, + "unique-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz", + "integrity": "sha1-1ZpKdUJ0R9mqbJHnAmP40mpLEEs=", + "dev": true + }, + "user-home": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz", + "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "v8flags": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz", + "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=", + "dev": true + }, + "vinyl": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", + "integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=", + "dev": true + }, + "vinyl-fs": { + "version": "0.3.14", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz", + "integrity": "sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY=", + "dev": true, + "dependencies": { + "clone": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", + "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=", + "dev": true + }, + "readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "dev": true + }, + "through2": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "dev": true + }, + "vinyl": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", + "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", + "dev": true + } + } + }, + "which": { + "version": "1.2.14", + "resolved": "https://registry.npmjs.org/which/-/which-1.2.14.tgz", + "integrity": "sha1-mofEN48D6CfOyvGs31bHNsAcFOU=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..29b021c --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "cinematt", + "version": "1.0.0", + "description": "Photography website", + "main": "gulpfile.js", + "scripts": { + "test": "echo \"Tests are coming soon!\" && exit 1", + "start": "./node_modules/.bin/gulp" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/matfin/cinematt.git" + }, + "keywords": [ + "hugo", + "photography" + ], + "author": "Matt Finucane ", + "license": "MIT", + "bugs": { + "url": "https://github.com/matfin/cinematt/issues" + }, + "homepage": "https://github.com/matfin/cinematt#readme", + "devDependencies": { + "gulp": "^3.9.1", + "gulp-concat": "^2.6.1", + "jshint": "^2.9.4" + } +} From c8251804b2259b104d07532fad04e599bb0ca514 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Wed, 31 May 2017 18:22:53 +0200 Subject: [PATCH 08/66] Gulp JS task runner now set up and tied in to Docker Compose. Scripts now concatenating and running. --- assets/scripts/main.js | 9 ++++++++- assets/scripts/utils.js | 6 +++--- build.yml | 15 +++++++++++++++ docker-compose.yml | 2 +- site/layouts/404.html | 1 + site/layouts/_default/single.html | 14 ++++++++++++++ site/layouts/albums/single.html | 1 + site/layouts/index.html | 1 + site/layouts/partials/scripts.html | 1 + 9 files changed, 45 insertions(+), 5 deletions(-) diff --git a/assets/scripts/main.js b/assets/scripts/main.js index ee7226a..0f48af6 100644 --- a/assets/scripts/main.js +++ b/assets/scripts/main.js @@ -1,3 +1,10 @@ 'use strict'; -onload = cinematt.utils.dummy; \ No newline at end of file +if(window.cinematt == null) { + window.cinematt = {}; +} + +onload = () => { + const utils = cinematt.utils; + utils.dummy(); +}; \ No newline at end of file diff --git a/assets/scripts/utils.js b/assets/scripts/utils.js index f207585..9f6c0c7 100644 --- a/assets/scripts/utils.js +++ b/assets/scripts/utils.js @@ -1,10 +1,10 @@ 'use strict'; -if(cinematt == null) { - cinematt = {}; +if(window.cinematt == null) { + window.cinematt = {}; } -cinematt.utils = { +window.cinematt.utils = { dummy: () => { console.log('Dummy function call successful!'); diff --git a/build.yml b/build.yml index 61662e5..1760196 100644 --- a/build.yml +++ b/build.yml @@ -27,6 +27,21 @@ services: - "80:80" command: nginx -g "daemon off;" + cinematt-js-build: + container_name: cinematt_js_build + environment: + - SCRIPTS_DEST=./public/js + - SVG_DEST=./public/svg + - FAVICONS_DEST=./public/favicons + image: node:7.10.0-alpine + volumes: + - ./:/opt:rw + links: + - cinematt-site-build + depends_on: + - cinematt-site-build + command: sh -c "cd /opt && npm install && npm start" + cinemat-sass-build: container_name: cinematt_sass_build image: ruby:2.1-alpine diff --git a/docker-compose.yml b/docker-compose.yml index b94fec4..d47c164 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -36,7 +36,7 @@ services: - SCRIPTS_DEST=./site/static/js - SVG_DEST=./site/static/svg - FAVICONS_DEST=./site/static/favicons - image: node:8.0.0-alpine + image: node:7.10.0-alpine volumes: - ./:/opt:rw links: diff --git a/site/layouts/404.html b/site/layouts/404.html index 1ffb328..9599949 100644 --- a/site/layouts/404.html +++ b/site/layouts/404.html @@ -9,5 +9,6 @@ {{ .Content }}
{{ partial "footer" . }} + {{ partial "scripts" }} \ No newline at end of file diff --git a/site/layouts/_default/single.html b/site/layouts/_default/single.html index e69de29..9599949 100644 --- a/site/layouts/_default/single.html +++ b/site/layouts/_default/single.html @@ -0,0 +1,14 @@ + + + + {{ partial "head" . }} + + + {{ partial "header" . }} +
+ {{ .Content }} +
+ {{ partial "footer" . }} + {{ partial "scripts" }} + + \ No newline at end of file diff --git a/site/layouts/albums/single.html b/site/layouts/albums/single.html index 1ffb328..9599949 100644 --- a/site/layouts/albums/single.html +++ b/site/layouts/albums/single.html @@ -9,5 +9,6 @@ {{ .Content }} {{ partial "footer" . }} + {{ partial "scripts" }} \ No newline at end of file diff --git a/site/layouts/index.html b/site/layouts/index.html index 23fc9a3..4662e83 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -12,5 +12,6 @@ {{ end }} {{ partial "footer" . }} + {{ partial "scripts" }} \ No newline at end of file diff --git a/site/layouts/partials/scripts.html b/site/layouts/partials/scripts.html index e69de29..f0ab6ce 100644 --- a/site/layouts/partials/scripts.html +++ b/site/layouts/partials/scripts.html @@ -0,0 +1 @@ + \ No newline at end of file From 06fb2c1592e52c743651e7dfcaa6c0d6ce8c5225 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Wed, 31 May 2017 20:35:01 +0200 Subject: [PATCH 09/66] Basic layout. --- assets/sass/layouts/landing.sass | 6 ++++++ assets/sass/main.sass | 11 +++++++++-- assets/sass/mixins.sass | 14 ++++++++++++++ site/layouts/index.html | 2 +- 4 files changed, 30 insertions(+), 3 deletions(-) diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index e69de29..8fc2171 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -0,0 +1,6 @@ +main.albums + display: grid + grid-template-columns: 1fr 1fr 1fr + grid-template-rows: 1fr 1fr 1fr + grid-column-gap: $units + grid-row-gap: $units \ No newline at end of file diff --git a/assets/sass/main.sass b/assets/sass/main.sass index 18303e9..380ab09 100644 --- a/assets/sass/main.sass +++ b/assets/sass/main.sass @@ -3,6 +3,13 @@ */ @import "constants" @import "mixins" -@import "typography" @import "setup" -@import "animations" \ No newline at end of file +@import "typography" +@import "animations" + +/** + * Layout + */ +@import "partials" +@import "cards" +@import "layouts/landing" diff --git a/assets/sass/mixins.sass b/assets/sass/mixins.sass index e69de29..f232c4f 100644 --- a/assets/sass/mixins.sass +++ b/assets/sass/mixins.sass @@ -0,0 +1,14 @@ +=break($type, $param-break-1, $param-break-2: '') + @if $type == min + @media screen and (min-width: $param-break-1) + @content + @else if $type == max + @media screen and (max-width: $param-break-2) + @content + @else if $type == min-max + @media screen and (min-width: $param-break-1) and (max-width: $param-break-2 - 0.05rem) + @content + +=transitionWithProperties($props, $ms: $transition-duration) + transition-property: $props + transition-duration: $ms \ No newline at end of file diff --git a/site/layouts/index.html b/site/layouts/index.html index 4662e83..7b812d2 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -5,7 +5,7 @@ {{ partial "header" . }} -
+
{{ $albums := where .Data.Pages "Section" "albums" }} {{ range sort $albums ".Params.weight" "desc" }} {{ .Render "card" }} From 5c638040711b855a390f9ec38db414496a74d972 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sat, 10 Jun 2017 16:53:16 +0200 Subject: [PATCH 10/66] Updating photo archetype. --- assets/sass/layouts/landing.sass | 12 ++++++------ site/archetypes/photo.md | 33 +++++++++++++++++++++++++------- site/content/albums/the-road.md | 12 ------------ 3 files changed, 32 insertions(+), 25 deletions(-) delete mode 100644 site/content/albums/the-road.md diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index 8fc2171..0e33509 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -1,6 +1,6 @@ -main.albums - display: grid - grid-template-columns: 1fr 1fr 1fr - grid-template-rows: 1fr 1fr 1fr - grid-column-gap: $units - grid-row-gap: $units \ No newline at end of file +// main.albums +// display: grid +// grid-template-columns: 1fr 1fr 1fr +// grid-template-rows: 1fr 1fr 1fr +// grid-column-gap: $units +// grid-row-gap: $units \ No newline at end of file diff --git a/site/archetypes/photo.md b/site/archetypes/photo.md index 134ae98..b48b3bd 100644 --- a/site/archetypes/photo.md +++ b/site/archetypes/photo.md @@ -1,13 +1,32 @@ --- title: "" -type: "" +type: "" description: "" date: "" album: "" -url: "" -exif_exposure: "" -exif_f_number: "" -exif_focal_mm: "" -exif_iso: "" -exif_lens: "" +filename: "" +series: "" +cl_public_id: "" +cl_version: "" +format: "" +bytes: "" +width: "" +height: "" +exposure_mode: "" +program: "" +aperture: "" +focal_length: "" +iso: "" +shutter_speed: "" +metering: "" +flash: "" +white_balance: "" +colour_temp: "" +has_crop: "" +orientation: "" +camera_model: "" +lens_info: "" +artist: "" +x_resolution: "" +y_resolution: "" --- \ No newline at end of file diff --git a/site/content/albums/the-road.md b/site/content/albums/the-road.md deleted file mode 100644 index e2e2f28..0000000 --- a/site/content/albums/the-road.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -date: 2017-05-31T13:46:55Z -description: "The road" -identifier: "the-road" -importance: "7" -preview_image: "" -title: "The Road" -weight: "7" ---- - -# The Road -This is the content for The Road \ No newline at end of file From f024c1bb8f8b5a7e51ac43c7c1be835b6e090c6f Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sat, 10 Jun 2017 16:57:02 +0200 Subject: [PATCH 11/66] Adding generated content for photos. --- site/content/photos/adac-building.md | 32 +++++++++++++++++++ site/content/photos/aideens-rock-anna.md | 32 +++++++++++++++++++ site/content/photos/alabama-3-guitarist.md | 32 +++++++++++++++++++ site/content/photos/alabama-3-lead.md | 32 +++++++++++++++++++ site/content/photos/alabama-3-single.md | 32 +++++++++++++++++++ site/content/photos/alabama-3-stage.md | 32 +++++++++++++++++++ site/content/photos/alabama-3-vocals.md | 32 +++++++++++++++++++ site/content/photos/alberto-blindfolded.md | 32 +++++++++++++++++++ site/content/photos/alberto-david-unicorns.md | 32 +++++++++++++++++++ site/content/photos/alberto-dschung.md | 32 +++++++++++++++++++ site/content/photos/alt-neue-berlin.md | 32 +++++++++++++++++++ site/content/photos/anna-candid.md | 32 +++++++++++++++++++ site/content/photos/anna-cite-foche.md | 32 +++++++++++++++++++ site/content/photos/anna-grogans-pint.md | 32 +++++++++++++++++++ site/content/photos/anna-light-museum.md | 32 +++++++++++++++++++ site/content/photos/anna-pearse-station.md | 32 +++++++++++++++++++ site/content/photos/anna-portfolio-closeup.md | 32 +++++++++++++++++++ site/content/photos/anna-portfolio-desk.md | 32 +++++++++++++++++++ site/content/photos/anna-portrait.md | 32 +++++++++++++++++++ .../photos/anna-shoot-facing-camera.md | 32 +++++++++++++++++++ site/content/photos/anna-shoot-flowers.md | 32 +++++++++++++++++++ site/content/photos/anna-shoot-hair-swirl.md | 32 +++++++++++++++++++ site/content/photos/anna_markt.md | 32 +++++++++++++++++++ site/content/photos/anna_pier.md | 32 +++++++++++++++++++ site/content/photos/balcony-plants.md | 32 +++++++++++++++++++ site/content/photos/ballinskelligs-cottage.md | 32 +++++++++++++++++++ site/content/photos/bankomat-berlin.md | 32 +++++++++++++++++++ site/content/photos/barcelona-ship.md | 32 +++++++++++++++++++ site/content/photos/berlin-10k-group.md | 32 +++++++++++++++++++ site/content/photos/berlin-5k-ruairi.md | 32 +++++++++++++++++++ .../photos/berlin-christmas-market-bar.md | 32 +++++++++++++++++++ .../photos/berlin-christmas-market-shed.md | 32 +++++++++++++++++++ .../content/photos/berlin-christmas-market.md | 32 +++++++++++++++++++ .../photos/berlin-demonstration-lying-down.md | 32 +++++++++++++++++++ site/content/photos/berlin-expo-messe-nord.md | 32 +++++++++++++++++++ site/content/photos/berlin-protest-banner.md | 32 +++++++++++++++++++ site/content/photos/berlin-supermarkt.md | 32 +++++++++++++++++++ site/content/photos/bird-closeup.md | 32 +++++++++++++++++++ site/content/photos/bird-poised.md | 32 +++++++++++++++++++ site/content/photos/blumen.md | 32 +++++++++++++++++++ site/content/photos/border.md | 32 +++++++++++++++++++ site/content/photos/brandenburger-tor.md | 32 +++++++++++++++++++ site/content/photos/braurei.md | 32 +++++++++++++++++++ site/content/photos/building-pattern.md | 32 +++++++++++++++++++ site/content/photos/busker-street-berlin.md | 32 +++++++++++++++++++ site/content/photos/canal.md | 32 +++++++++++++++++++ site/content/photos/casino-berlin.md | 32 +++++++++++++++++++ .../photos/channel-tunnel-self-portrait.md | 32 +++++++++++++++++++ site/content/photos/channel-tunnel.md | 32 +++++++++++++++++++ .../photos/charlottenburg-lake-fisheye.md | 32 +++++++++++++++++++ site/content/photos/charlottenburg-statue.md | 32 +++++++++++++++++++ site/content/photos/charlottenburg-tree.md | 32 +++++++++++++++++++ site/content/photos/chloe.md | 32 +++++++++++++++++++ site/content/photos/christina-berlin.md | 32 +++++++++++++++++++ site/content/photos/christina-light-museum.md | 32 +++++++++++++++++++ site/content/photos/christina-matt-berlin.md | 32 +++++++++++++++++++ site/content/photos/church_interior.md | 32 +++++++++++++++++++ .../photos/cite-foche-anna-illuminated.md | 32 +++++++++++++++++++ site/content/photos/cite-foche-anna-rain.md | 32 +++++++++++++++++++ site/content/photos/cite-foche-cinema.md | 32 +++++++++++++++++++ site/content/photos/cite-foche-exterior.md | 32 +++++++++++++++++++ site/content/photos/cite-foche-hole-wall.md | 32 +++++++++++++++++++ site/content/photos/cite-foche-offices.md | 32 +++++++++++++++++++ site/content/photos/cite-foche-reflections.md | 32 +++++++++++++++++++ site/content/photos/city-lamp-posters.md | 32 +++++++++++++++++++ site/content/photos/cliffs-2005-cans.md | 32 +++++++++++++++++++ site/content/photos/cliffs-2005.md | 32 +++++++++++++++++++ site/content/photos/cliffs-toadstool.md | 32 +++++++++++++++++++ site/content/photos/colm.md | 32 +++++++++++++++++++ site/content/photos/crew-camera-checking.md | 32 +++++++++++++++++++ site/content/photos/dad-lauren.md | 32 +++++++++++++++++++ site/content/photos/dan_and_luke_kitchen.md | 32 +++++++++++++++++++ site/content/photos/dan_sophie.md | 32 +++++++++++++++++++ site/content/photos/dark-grass.md | 32 +++++++++++++++++++ site/content/photos/david-oliveira.md | 32 +++++++++++++++++++ site/content/photos/deer-park-window.md | 32 +++++++++++++++++++ .../photos/demonstration-crowd-berlin.md | 32 +++++++++++++++++++ site/content/photos/dschung-hand.md | 32 +++++++++++++++++++ site/content/photos/dschung-nori.md | 32 +++++++++++++++++++ site/content/photos/dschung-standing.md | 32 +++++++++++++++++++ site/content/photos/dublin-from-howth.md | 32 +++++++++++++++++++ site/content/photos/dublin-street.md | 32 +++++++++++++++++++ site/content/photos/dublin.md | 32 +++++++++++++++++++ site/content/photos/eagle-tempelhof.md | 32 +++++++++++++++++++ site/content/photos/easter-market-cakes.md | 32 +++++++++++++++++++ site/content/photos/easter-prost.md | 32 +++++++++++++++++++ site/content/photos/eavan.md | 32 +++++++++++++++++++ site/content/photos/escalator.md | 32 +++++++++++++++++++ site/content/photos/eternit.md | 32 +++++++++++++++++++ site/content/photos/expo-center-veb-berlin.md | 32 +++++++++++++++++++ site/content/photos/fence-poland.md | 32 +++++++++++++++++++ site/content/photos/fence.md | 32 +++++++++++++++++++ site/content/photos/fernsehturm.md | 32 +++++++++++++++++++ site/content/photos/film-palast.md | 32 +++++++++++++++++++ site/content/photos/finucane-family.md | 32 +++++++++++++++++++ site/content/photos/flasche-tempelhof.md | 32 +++++++++++++++++++ site/content/photos/fontane_trevi.md | 32 +++++++++++++++++++ site/content/photos/forest.md | 32 +++++++++++++++++++ site/content/photos/francis-wine-glass.md | 32 +++++++++++++++++++ site/content/photos/frosted-leaves.md | 32 +++++++++++++++++++ site/content/photos/german-actress-forest.md | 32 +++++++++++++++++++ site/content/photos/glendalough-landscape.md | 32 +++++++++++++++++++ site/content/photos/glendalough-path.md | 32 +++++++++++++++++++ site/content/photos/glendalough-tower.md | 32 +++++++++++++++++++ .../photos/gluwein-christmas-market.md | 32 +++++++++++++++++++ site/content/photos/greifswalder-tunnel.md | 32 +++++++++++++++++++ site/content/photos/greifswaler_apartments.md | 32 +++++++++++++++++++ site/content/photos/grogans-finger-chomp.md | 32 +++++++++++++++++++ site/content/photos/grogans-the-castle.md | 32 +++++++++++++++++++ site/content/photos/haus-der-statistiche-2.md | 32 +++++++++++++++++++ site/content/photos/haus-der-statistiche.md | 32 +++++++++++++++++++ site/content/photos/hohenschenhausen-cell.md | 32 +++++++++++++++++++ site/content/photos/hot-sprockets-leads.md | 32 +++++++++++++++++++ .../photos/hot-sprockets-stage-vantastival.md | 32 +++++++++++++++++++ site/content/photos/howth-fishing-boat.md | 32 +++++++++++++++++++ .../photos/howth-harbour-lighthouse.md | 32 +++++++++++++++++++ site/content/photos/howth-harbour.md | 32 +++++++++++++++++++ site/content/photos/howth-horse.md | 32 +++++++++++++++++++ site/content/photos/howth_pier.md | 32 +++++++++++++++++++ .../content/photos/ice-lake-charlottenburg.md | 32 +++++++++++++++++++ site/content/photos/jonathan-cliffs.md | 32 +++++++++++++++++++ site/content/photos/jonathan-mum.md | 32 +++++++++++++++++++ site/content/photos/jonathan.md | 32 +++++++++++++++++++ site/content/photos/jumper.md | 32 +++++++++++++++++++ site/content/photos/kaisers.md | 32 +++++++++++++++++++ site/content/photos/karl-mark-allee-shops.md | 32 +++++++++++++++++++ site/content/photos/karl-marx-alle-anna.md | 32 +++++++++++++++++++ site/content/photos/karl-marx-allee.md | 32 +++++++++++++++++++ .../photos/karneval-der-kulturen-dress.md | 32 +++++++++++++++++++ .../photos/karneval-der-kulturen-group.md | 32 +++++++++++++++++++ .../photos/karneval-der-kulturen-hat.md | 32 +++++++++++++++++++ .../photos/karneval-der-kulturen-mojito.md | 32 +++++++++++++++++++ .../photos/karneval-der-kulturen-people.md | 32 +++++++++++++++++++ .../photos/karneval-der-kulturen-sandals.md | 32 +++++++++++++++++++ site/content/photos/karneval-der-kulturen.md | 32 +++++++++++++++++++ .../photos/kerry-cottage-long-exposure.md | 32 +++++++++++++++++++ site/content/photos/kerry-road-horse.md | 32 +++++++++++++++++++ site/content/photos/kerry-sheep.md | 32 +++++++++++++++++++ .../photos/kino-international-berlin.md | 32 +++++++++++++++++++ site/content/photos/kitesurfer-tempelhof.md | 32 +++++++++++++++++++ .../content/photos/kluner-kranich-visitors.md | 32 +++++++++++++++++++ site/content/photos/klunkerkranich-chairs.md | 32 +++++++++++++++++++ .../photos/klunkerkranich-fernsehturm.md | 32 +++++++++++++++++++ site/content/photos/klunkerkranich.md | 32 +++++++++++++++++++ .../knonigs-wusterhausen-ruairi-fionn.md | 32 +++++++++++++++++++ site/content/photos/konigs-wusterhausen.md | 32 +++++++++++++++++++ site/content/photos/kudamm-christmas.md | 32 +++++++++++++++++++ site/content/photos/kudamm-kiosk.md | 32 +++++++++++++++++++ site/content/photos/kunst-museum.md | 32 +++++++++++++++++++ site/content/photos/lahu-village-cat.md | 32 +++++++++++++++++++ site/content/photos/lake.md | 32 +++++++++++++++++++ site/content/photos/lakes-killarney.md | 32 +++++++++++++++++++ .../photos/lakeside-konigs-wusterhausen.md | 32 +++++++++++++++++++ site/content/photos/leaves-water.md | 32 +++++++++++++++++++ site/content/photos/li-behind-paper.md | 32 +++++++++++++++++++ site/content/photos/li-tempelhof.md | 32 +++++++++++++++++++ site/content/photos/li.md | 32 +++++++++++++++++++ .../photos/look-beautiful-tempelhof.md | 32 +++++++++++++++++++ site/content/photos/lunchtime.md | 32 +++++++++++++++++++ site/content/photos/marienfeld-church.md | 32 +++++++++++++++++++ .../photos/marienfield-church-ceiling.md | 32 +++++++++++++++++++ site/content/photos/markt-spiegel-anna.md | 32 +++++++++++++++++++ .../content/photos/messe-nord-race-terrace.md | 32 +++++++++++++++++++ site/content/photos/meteor-meetup.md | 32 +++++++++++++++++++ site/content/photos/mick-beach.md | 32 +++++++++++++++++++ site/content/photos/mixing-desk.md | 32 +++++++++++++++++++ site/content/photos/model-airplane.md | 32 +++++++++++++++++++ site/content/photos/mossy-drums.md | 32 +++++++++++++++++++ site/content/photos/mossy-laura.md | 32 +++++++++++++++++++ site/content/photos/mossy-nolan.md | 32 +++++++++++++++++++ site/content/photos/motel-avus.md | 32 +++++++++++++++++++ site/content/photos/northwest-200.md | 32 +++++++++++++++++++ .../photos/norwegian-actress-forest-shoot.md | 32 +++++++++++++++++++ .../photos/norwegian-actress-profile.md | 32 +++++++++++++++++++ site/content/photos/orb.md | 32 +++++++++++++++++++ site/content/photos/overcooked_anna.md | 32 +++++++++++++++++++ site/content/photos/pai-cat.md | 32 +++++++++++++++++++ site/content/photos/pai-parrot.md | 32 +++++++++++++++++++ site/content/photos/paul-and-luke.md | 32 +++++++++++++++++++ site/content/photos/paul-james-beach.md | 32 +++++++++++++++++++ site/content/photos/peter-coonan-redline.md | 32 +++++++++++++++++++ site/content/photos/phi-phi-monkey.md | 32 +++++++++++++++++++ site/content/photos/phil-bans-donegal.md | 32 +++++++++++++++++++ site/content/photos/phoenix-park-deer.md | 32 +++++++++++++++++++ .../photos/phoenix-park-model-plane.md | 32 +++++++++++++++++++ site/content/photos/phoenix-park-training.md | 32 +++++++++++++++++++ site/content/photos/photographer.md | 32 +++++++++++++++++++ site/content/photos/plant-labels.md | 32 +++++++++++++++++++ site/content/photos/poland-house.md | 32 +++++++++++++++++++ site/content/photos/polizei.md | 32 +++++++++++++++++++ site/content/photos/portugal-guitarist.md | 32 +++++++++++++++++++ site/content/photos/portugal-street.md | 32 +++++++++++++++++++ site/content/photos/pppb.md | 32 +++++++++++++++++++ site/content/photos/praater.md | 32 +++++++++++++++++++ site/content/photos/prairie-dawgs-connor.md | 32 +++++++++++++++++++ site/content/photos/prairie-dawgs-karen.md | 32 +++++++++++++++++++ site/content/photos/prairie-dawgs-ruairi.md | 32 +++++++++++++++++++ site/content/photos/presse-tabak-berlin.md | 32 +++++++++++++++++++ .../photos/redline-film-take-dublin.md | 32 +++++++++++++++++++ site/content/photos/refeshments.md | 32 +++++++++++++++++++ site/content/photos/rhob-cunningham.md | 32 +++++++++++++++++++ site/content/photos/rian-ro-kerry-bar.md | 32 +++++++++++++++++++ site/content/photos/rian-ro-kerry-lobby.md | 32 +++++++++++++++++++ site/content/photos/rian-ro-kerry-windows.md | 32 +++++++++++++++++++ site/content/photos/rian-ro-kerry.md | 32 +++++++++++++++++++ site/content/photos/richie-cmc.md | 32 +++++++++++++++++++ .../photos/rixdorf-christmas-market.md | 32 +++++++++++++++++++ site/content/photos/ruairi-fionn.md | 32 +++++++++++++++++++ site/content/photos/rupert-clarissa.md | 32 +++++++++++++++++++ site/content/photos/russian-embassy-berlin.md | 32 +++++++++++++++++++ site/content/photos/scaffold-tunnel.md | 32 +++++++++++++++++++ site/content/photos/schneedrop.md | 32 +++++++++++++++++++ site/content/photos/schnitzel_konig.md | 32 +++++++++++++++++++ site/content/photos/seagull-poland.md | 32 +++++++++++++++++++ site/content/photos/shopping-trolley.md | 32 +++++++++++++++++++ site/content/photos/side-street-berlin.md | 32 +++++++++++++++++++ site/content/photos/side_steps_wall.md | 32 +++++++++++++++++++ site/content/photos/singer.md | 32 +++++++++++++++++++ site/content/photos/skelligs-kerry.md | 32 +++++++++++++++++++ site/content/photos/smartphones.md | 32 +++++++++++++++++++ site/content/photos/spirit-of-folk-bird.md | 32 +++++++++++++++++++ .../content/photos/spirit-of-folk-musician.md | 32 +++++++++++++++++++ site/content/photos/spirit-of-folk-people.md | 32 +++++++++++++++++++ site/content/photos/spirit-of-folk-shield.md | 32 +++++++++++++++++++ site/content/photos/spirit-of-folk-tent.md | 32 +++++++++++++++++++ site/content/photos/spree-statue.md | 32 +++++++++++++++++++ site/content/photos/spreepark-ferris-wheel.md | 32 +++++++++++++++++++ site/content/photos/spwc-dublin-waldos.md | 32 +++++++++++++++++++ site/content/photos/spwc-performer.md | 32 +++++++++++++++++++ .../photos/st-finans-bay-long-exposure.md | 32 +++++++++++++++++++ site/content/photos/st-finians-beach.md | 32 +++++++++++++++++++ .../photos/stadtbad-wedding-anna-dark.md | 32 +++++++++++++++++++ .../photos/stadtbad-wedding-anna-pool.md | 32 +++++++++++++++++++ site/content/photos/stadtbad-wedding-anna.md | 32 +++++++++++++++++++ .../content/photos/stadtbad-wedding-blinds.md | 32 +++++++++++++++++++ site/content/photos/stadtbad-wedding-door.md | 32 +++++++++++++++++++ .../content/photos/stadtbad-wedding-stairs.md | 32 +++++++++++++++++++ site/content/photos/stadtbadd-wedding.md | 32 +++++++++++++++++++ site/content/photos/steps.md | 32 +++++++++++++++++++ site/content/photos/stina.md | 32 +++++++++++++++++++ site/content/photos/stoplerstein.md | 32 +++++++++++++++++++ site/content/photos/street-performer.md | 32 +++++++++++++++++++ site/content/photos/table-tennis-berlin.md | 32 +++++++++++++++++++ site/content/photos/tara-street-dart.md | 32 +++++++++++++++++++ site/content/photos/tempelhof-cyclist.md | 32 +++++++++++++++++++ site/content/photos/tempelhof-floodlight.md | 32 +++++++++++++++++++ site/content/photos/the-glen-shop.md | 32 +++++++++++++++++++ site/content/photos/the-young-folk-lead.md | 32 +++++++++++++++++++ .../photos/tim-hot-sprockets-under-mic.md | 32 +++++++++++++++++++ site/content/photos/tim-hot-sprockets.md | 32 +++++++++++++++++++ site/content/photos/tree-howth.md | 32 +++++++++++++++++++ site/content/photos/tree-killarney.md | 32 +++++++++++++++++++ site/content/photos/tree.md | 32 +++++++++++++++++++ .../photos/treehouse-klunkerkranich.md | 32 +++++++++++++++++++ site/content/photos/treptower-war-memorial.md | 32 +++++++++++++++++++ site/content/photos/ubahn-berlin.md | 32 +++++++++++++++++++ site/content/photos/unicorns.md | 32 +++++++++++++++++++ .../photos/vantastival-2011-daytime-gs.md | 32 +++++++++++++++++++ site/content/photos/vantastival-2011-group.md | 32 +++++++++++++++++++ site/content/photos/vantastival-2011.md | 32 +++++++++++++++++++ site/content/photos/vantastival-guitarist.md | 32 +++++++++++++++++++ site/content/photos/vantastival-performer.md | 32 +++++++++++++++++++ site/content/photos/vantastival-rochelle.md | 32 +++++++++++++++++++ site/content/photos/vantastival-ross.md | 32 +++++++++++++++++++ site/content/photos/vantastival-singer.md | 32 +++++++++++++++++++ site/content/photos/vantastival-vin.md | 32 +++++++++++++++++++ site/content/photos/viking-renactor.md | 32 +++++++++++++++++++ site/content/photos/violinist.md | 32 +++++++++++++++++++ site/content/photos/volkswagen-berlin.md | 32 +++++++++++++++++++ site/content/photos/weinachts-markt-2016.md | 32 +++++++++++++++++++ .../photos/west-berlin-apartment-door.md | 32 +++++++++++++++++++ site/content/photos/whelans.md | 32 +++++++++++++++++++ site/content/photos/wide-angle-kitchen.md | 32 +++++++++++++++++++ site/content/photos/window-pattern.md | 32 +++++++++++++++++++ site/content/photos/wittenberg.md | 32 +++++++++++++++++++ site/content/photos/workplace.md | 32 +++++++++++++++++++ site/content/photos/xha-xhu-zhi.md | 32 +++++++++++++++++++ site/content/photos/yves.md | 32 +++++++++++++++++++ 278 files changed, 8896 insertions(+) create mode 100644 site/content/photos/adac-building.md create mode 100644 site/content/photos/aideens-rock-anna.md create mode 100644 site/content/photos/alabama-3-guitarist.md create mode 100644 site/content/photos/alabama-3-lead.md create mode 100644 site/content/photos/alabama-3-single.md create mode 100644 site/content/photos/alabama-3-stage.md create mode 100644 site/content/photos/alabama-3-vocals.md create mode 100644 site/content/photos/alberto-blindfolded.md create mode 100644 site/content/photos/alberto-david-unicorns.md create mode 100644 site/content/photos/alberto-dschung.md create mode 100644 site/content/photos/alt-neue-berlin.md create mode 100644 site/content/photos/anna-candid.md create mode 100644 site/content/photos/anna-cite-foche.md create mode 100644 site/content/photos/anna-grogans-pint.md create mode 100644 site/content/photos/anna-light-museum.md create mode 100644 site/content/photos/anna-pearse-station.md create mode 100644 site/content/photos/anna-portfolio-closeup.md create mode 100644 site/content/photos/anna-portfolio-desk.md create mode 100644 site/content/photos/anna-portrait.md create mode 100644 site/content/photos/anna-shoot-facing-camera.md create mode 100644 site/content/photos/anna-shoot-flowers.md create mode 100644 site/content/photos/anna-shoot-hair-swirl.md create mode 100644 site/content/photos/anna_markt.md create mode 100644 site/content/photos/anna_pier.md create mode 100644 site/content/photos/balcony-plants.md create mode 100644 site/content/photos/ballinskelligs-cottage.md create mode 100644 site/content/photos/bankomat-berlin.md create mode 100644 site/content/photos/barcelona-ship.md create mode 100644 site/content/photos/berlin-10k-group.md create mode 100644 site/content/photos/berlin-5k-ruairi.md create mode 100644 site/content/photos/berlin-christmas-market-bar.md create mode 100644 site/content/photos/berlin-christmas-market-shed.md create mode 100644 site/content/photos/berlin-christmas-market.md create mode 100644 site/content/photos/berlin-demonstration-lying-down.md create mode 100644 site/content/photos/berlin-expo-messe-nord.md create mode 100644 site/content/photos/berlin-protest-banner.md create mode 100644 site/content/photos/berlin-supermarkt.md create mode 100644 site/content/photos/bird-closeup.md create mode 100644 site/content/photos/bird-poised.md create mode 100644 site/content/photos/blumen.md create mode 100644 site/content/photos/border.md create mode 100644 site/content/photos/brandenburger-tor.md create mode 100644 site/content/photos/braurei.md create mode 100644 site/content/photos/building-pattern.md create mode 100644 site/content/photos/busker-street-berlin.md create mode 100644 site/content/photos/canal.md create mode 100644 site/content/photos/casino-berlin.md create mode 100644 site/content/photos/channel-tunnel-self-portrait.md create mode 100644 site/content/photos/channel-tunnel.md create mode 100644 site/content/photos/charlottenburg-lake-fisheye.md create mode 100644 site/content/photos/charlottenburg-statue.md create mode 100644 site/content/photos/charlottenburg-tree.md create mode 100644 site/content/photos/chloe.md create mode 100644 site/content/photos/christina-berlin.md create mode 100644 site/content/photos/christina-light-museum.md create mode 100644 site/content/photos/christina-matt-berlin.md create mode 100644 site/content/photos/church_interior.md create mode 100644 site/content/photos/cite-foche-anna-illuminated.md create mode 100644 site/content/photos/cite-foche-anna-rain.md create mode 100644 site/content/photos/cite-foche-cinema.md create mode 100644 site/content/photos/cite-foche-exterior.md create mode 100644 site/content/photos/cite-foche-hole-wall.md create mode 100644 site/content/photos/cite-foche-offices.md create mode 100644 site/content/photos/cite-foche-reflections.md create mode 100644 site/content/photos/city-lamp-posters.md create mode 100644 site/content/photos/cliffs-2005-cans.md create mode 100644 site/content/photos/cliffs-2005.md create mode 100644 site/content/photos/cliffs-toadstool.md create mode 100644 site/content/photos/colm.md create mode 100644 site/content/photos/crew-camera-checking.md create mode 100644 site/content/photos/dad-lauren.md create mode 100644 site/content/photos/dan_and_luke_kitchen.md create mode 100644 site/content/photos/dan_sophie.md create mode 100644 site/content/photos/dark-grass.md create mode 100644 site/content/photos/david-oliveira.md create mode 100644 site/content/photos/deer-park-window.md create mode 100644 site/content/photos/demonstration-crowd-berlin.md create mode 100644 site/content/photos/dschung-hand.md create mode 100644 site/content/photos/dschung-nori.md create mode 100644 site/content/photos/dschung-standing.md create mode 100644 site/content/photos/dublin-from-howth.md create mode 100644 site/content/photos/dublin-street.md create mode 100644 site/content/photos/dublin.md create mode 100644 site/content/photos/eagle-tempelhof.md create mode 100644 site/content/photos/easter-market-cakes.md create mode 100644 site/content/photos/easter-prost.md create mode 100644 site/content/photos/eavan.md create mode 100644 site/content/photos/escalator.md create mode 100644 site/content/photos/eternit.md create mode 100644 site/content/photos/expo-center-veb-berlin.md create mode 100644 site/content/photos/fence-poland.md create mode 100644 site/content/photos/fence.md create mode 100644 site/content/photos/fernsehturm.md create mode 100644 site/content/photos/film-palast.md create mode 100644 site/content/photos/finucane-family.md create mode 100644 site/content/photos/flasche-tempelhof.md create mode 100644 site/content/photos/fontane_trevi.md create mode 100644 site/content/photos/forest.md create mode 100644 site/content/photos/francis-wine-glass.md create mode 100644 site/content/photos/frosted-leaves.md create mode 100644 site/content/photos/german-actress-forest.md create mode 100644 site/content/photos/glendalough-landscape.md create mode 100644 site/content/photos/glendalough-path.md create mode 100644 site/content/photos/glendalough-tower.md create mode 100644 site/content/photos/gluwein-christmas-market.md create mode 100644 site/content/photos/greifswalder-tunnel.md create mode 100644 site/content/photos/greifswaler_apartments.md create mode 100644 site/content/photos/grogans-finger-chomp.md create mode 100644 site/content/photos/grogans-the-castle.md create mode 100644 site/content/photos/haus-der-statistiche-2.md create mode 100644 site/content/photos/haus-der-statistiche.md create mode 100644 site/content/photos/hohenschenhausen-cell.md create mode 100644 site/content/photos/hot-sprockets-leads.md create mode 100644 site/content/photos/hot-sprockets-stage-vantastival.md create mode 100644 site/content/photos/howth-fishing-boat.md create mode 100644 site/content/photos/howth-harbour-lighthouse.md create mode 100644 site/content/photos/howth-harbour.md create mode 100644 site/content/photos/howth-horse.md create mode 100644 site/content/photos/howth_pier.md create mode 100644 site/content/photos/ice-lake-charlottenburg.md create mode 100644 site/content/photos/jonathan-cliffs.md create mode 100644 site/content/photos/jonathan-mum.md create mode 100644 site/content/photos/jonathan.md create mode 100644 site/content/photos/jumper.md create mode 100644 site/content/photos/kaisers.md create mode 100644 site/content/photos/karl-mark-allee-shops.md create mode 100644 site/content/photos/karl-marx-alle-anna.md create mode 100644 site/content/photos/karl-marx-allee.md create mode 100644 site/content/photos/karneval-der-kulturen-dress.md create mode 100644 site/content/photos/karneval-der-kulturen-group.md create mode 100644 site/content/photos/karneval-der-kulturen-hat.md create mode 100644 site/content/photos/karneval-der-kulturen-mojito.md create mode 100644 site/content/photos/karneval-der-kulturen-people.md create mode 100644 site/content/photos/karneval-der-kulturen-sandals.md create mode 100644 site/content/photos/karneval-der-kulturen.md create mode 100644 site/content/photos/kerry-cottage-long-exposure.md create mode 100644 site/content/photos/kerry-road-horse.md create mode 100644 site/content/photos/kerry-sheep.md create mode 100644 site/content/photos/kino-international-berlin.md create mode 100644 site/content/photos/kitesurfer-tempelhof.md create mode 100644 site/content/photos/kluner-kranich-visitors.md create mode 100644 site/content/photos/klunkerkranich-chairs.md create mode 100644 site/content/photos/klunkerkranich-fernsehturm.md create mode 100644 site/content/photos/klunkerkranich.md create mode 100644 site/content/photos/knonigs-wusterhausen-ruairi-fionn.md create mode 100644 site/content/photos/konigs-wusterhausen.md create mode 100644 site/content/photos/kudamm-christmas.md create mode 100644 site/content/photos/kudamm-kiosk.md create mode 100644 site/content/photos/kunst-museum.md create mode 100644 site/content/photos/lahu-village-cat.md create mode 100644 site/content/photos/lake.md create mode 100644 site/content/photos/lakes-killarney.md create mode 100644 site/content/photos/lakeside-konigs-wusterhausen.md create mode 100644 site/content/photos/leaves-water.md create mode 100644 site/content/photos/li-behind-paper.md create mode 100644 site/content/photos/li-tempelhof.md create mode 100644 site/content/photos/li.md create mode 100644 site/content/photos/look-beautiful-tempelhof.md create mode 100644 site/content/photos/lunchtime.md create mode 100644 site/content/photos/marienfeld-church.md create mode 100644 site/content/photos/marienfield-church-ceiling.md create mode 100644 site/content/photos/markt-spiegel-anna.md create mode 100644 site/content/photos/messe-nord-race-terrace.md create mode 100644 site/content/photos/meteor-meetup.md create mode 100644 site/content/photos/mick-beach.md create mode 100644 site/content/photos/mixing-desk.md create mode 100644 site/content/photos/model-airplane.md create mode 100644 site/content/photos/mossy-drums.md create mode 100644 site/content/photos/mossy-laura.md create mode 100644 site/content/photos/mossy-nolan.md create mode 100644 site/content/photos/motel-avus.md create mode 100644 site/content/photos/northwest-200.md create mode 100644 site/content/photos/norwegian-actress-forest-shoot.md create mode 100644 site/content/photos/norwegian-actress-profile.md create mode 100644 site/content/photos/orb.md create mode 100644 site/content/photos/overcooked_anna.md create mode 100644 site/content/photos/pai-cat.md create mode 100644 site/content/photos/pai-parrot.md create mode 100644 site/content/photos/paul-and-luke.md create mode 100644 site/content/photos/paul-james-beach.md create mode 100644 site/content/photos/peter-coonan-redline.md create mode 100644 site/content/photos/phi-phi-monkey.md create mode 100644 site/content/photos/phil-bans-donegal.md create mode 100644 site/content/photos/phoenix-park-deer.md create mode 100644 site/content/photos/phoenix-park-model-plane.md create mode 100644 site/content/photos/phoenix-park-training.md create mode 100644 site/content/photos/photographer.md create mode 100644 site/content/photos/plant-labels.md create mode 100644 site/content/photos/poland-house.md create mode 100644 site/content/photos/polizei.md create mode 100644 site/content/photos/portugal-guitarist.md create mode 100644 site/content/photos/portugal-street.md create mode 100644 site/content/photos/pppb.md create mode 100644 site/content/photos/praater.md create mode 100644 site/content/photos/prairie-dawgs-connor.md create mode 100644 site/content/photos/prairie-dawgs-karen.md create mode 100644 site/content/photos/prairie-dawgs-ruairi.md create mode 100644 site/content/photos/presse-tabak-berlin.md create mode 100644 site/content/photos/redline-film-take-dublin.md create mode 100644 site/content/photos/refeshments.md create mode 100644 site/content/photos/rhob-cunningham.md create mode 100644 site/content/photos/rian-ro-kerry-bar.md create mode 100644 site/content/photos/rian-ro-kerry-lobby.md create mode 100644 site/content/photos/rian-ro-kerry-windows.md create mode 100644 site/content/photos/rian-ro-kerry.md create mode 100644 site/content/photos/richie-cmc.md create mode 100644 site/content/photos/rixdorf-christmas-market.md create mode 100644 site/content/photos/ruairi-fionn.md create mode 100644 site/content/photos/rupert-clarissa.md create mode 100644 site/content/photos/russian-embassy-berlin.md create mode 100644 site/content/photos/scaffold-tunnel.md create mode 100644 site/content/photos/schneedrop.md create mode 100644 site/content/photos/schnitzel_konig.md create mode 100644 site/content/photos/seagull-poland.md create mode 100644 site/content/photos/shopping-trolley.md create mode 100644 site/content/photos/side-street-berlin.md create mode 100644 site/content/photos/side_steps_wall.md create mode 100644 site/content/photos/singer.md create mode 100644 site/content/photos/skelligs-kerry.md create mode 100644 site/content/photos/smartphones.md create mode 100644 site/content/photos/spirit-of-folk-bird.md create mode 100644 site/content/photos/spirit-of-folk-musician.md create mode 100644 site/content/photos/spirit-of-folk-people.md create mode 100644 site/content/photos/spirit-of-folk-shield.md create mode 100644 site/content/photos/spirit-of-folk-tent.md create mode 100644 site/content/photos/spree-statue.md create mode 100644 site/content/photos/spreepark-ferris-wheel.md create mode 100644 site/content/photos/spwc-dublin-waldos.md create mode 100644 site/content/photos/spwc-performer.md create mode 100644 site/content/photos/st-finans-bay-long-exposure.md create mode 100644 site/content/photos/st-finians-beach.md create mode 100644 site/content/photos/stadtbad-wedding-anna-dark.md create mode 100644 site/content/photos/stadtbad-wedding-anna-pool.md create mode 100644 site/content/photos/stadtbad-wedding-anna.md create mode 100644 site/content/photos/stadtbad-wedding-blinds.md create mode 100644 site/content/photos/stadtbad-wedding-door.md create mode 100644 site/content/photos/stadtbad-wedding-stairs.md create mode 100644 site/content/photos/stadtbadd-wedding.md create mode 100644 site/content/photos/steps.md create mode 100644 site/content/photos/stina.md create mode 100644 site/content/photos/stoplerstein.md create mode 100644 site/content/photos/street-performer.md create mode 100644 site/content/photos/table-tennis-berlin.md create mode 100644 site/content/photos/tara-street-dart.md create mode 100644 site/content/photos/tempelhof-cyclist.md create mode 100644 site/content/photos/tempelhof-floodlight.md create mode 100644 site/content/photos/the-glen-shop.md create mode 100644 site/content/photos/the-young-folk-lead.md create mode 100644 site/content/photos/tim-hot-sprockets-under-mic.md create mode 100644 site/content/photos/tim-hot-sprockets.md create mode 100644 site/content/photos/tree-howth.md create mode 100644 site/content/photos/tree-killarney.md create mode 100644 site/content/photos/tree.md create mode 100644 site/content/photos/treehouse-klunkerkranich.md create mode 100644 site/content/photos/treptower-war-memorial.md create mode 100644 site/content/photos/ubahn-berlin.md create mode 100644 site/content/photos/unicorns.md create mode 100644 site/content/photos/vantastival-2011-daytime-gs.md create mode 100644 site/content/photos/vantastival-2011-group.md create mode 100644 site/content/photos/vantastival-2011.md create mode 100644 site/content/photos/vantastival-guitarist.md create mode 100644 site/content/photos/vantastival-performer.md create mode 100644 site/content/photos/vantastival-rochelle.md create mode 100644 site/content/photos/vantastival-ross.md create mode 100644 site/content/photos/vantastival-singer.md create mode 100644 site/content/photos/vantastival-vin.md create mode 100644 site/content/photos/viking-renactor.md create mode 100644 site/content/photos/violinist.md create mode 100644 site/content/photos/volkswagen-berlin.md create mode 100644 site/content/photos/weinachts-markt-2016.md create mode 100644 site/content/photos/west-berlin-apartment-door.md create mode 100644 site/content/photos/whelans.md create mode 100644 site/content/photos/wide-angle-kitchen.md create mode 100644 site/content/photos/window-pattern.md create mode 100644 site/content/photos/wittenberg.md create mode 100644 site/content/photos/workplace.md create mode 100644 site/content/photos/xha-xhu-zhi.md create mode 100644 site/content/photos/yves.md diff --git a/site/content/photos/adac-building.md b/site/content/photos/adac-building.md new file mode 100644 index 0000000..1f4429c --- /dev/null +++ b/site/content/photos/adac-building.md @@ -0,0 +1,32 @@ +--- +title: "adac-building" +type: "upload" +description: "TBC" +date: "2016-12-09 10:49:50+00:00" +album: "experimental" +filename: "adac-building.md" +series: "" +cl_public_id: "experimental/adac-building" +cl_version: 1497004405 +format: "tiff" +bytes: 4368980 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "44.0 mm" +iso: "200" +shutter_speed: "1/160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/aideens-rock-anna.md b/site/content/photos/aideens-rock-anna.md new file mode 100644 index 0000000..1b16e64 --- /dev/null +++ b/site/content/photos/aideens-rock-anna.md @@ -0,0 +1,32 @@ +--- +title: "aideens-rock-anna" +type: "upload" +description: "TBC" +date: "2014-04-06 20:22:54+00:00" +album: "people" +filename: "aideens-rock-anna.md" +series: "" +cl_public_id: "people/aideens-rock-anna" +cl_version: 1497005298 +format: "tiff" +bytes: 1867052 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/800" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "6650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alabama-3-guitarist.md b/site/content/photos/alabama-3-guitarist.md new file mode 100644 index 0000000..2d9beb8 --- /dev/null +++ b/site/content/photos/alabama-3-guitarist.md @@ -0,0 +1,32 @@ +--- +title: "alabama-3-guitarist" +type: "upload" +description: "TBC" +date: "2011-05-01 23:41:18+00:00" +album: "music" +filename: "alabama-3-guitarist.md" +series: "" +cl_public_id: "music/alabama-3-guitarist" +cl_version: 1497004864 +format: "tiff" +bytes: 5035516 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.0" +focal_length: "56.0 mm" +iso: "4000" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alabama-3-lead.md b/site/content/photos/alabama-3-lead.md new file mode 100644 index 0000000..b9e00b4 --- /dev/null +++ b/site/content/photos/alabama-3-lead.md @@ -0,0 +1,32 @@ +--- +title: "alabama-3-lead" +type: "upload" +description: "TBC" +date: "2011-05-01 23:31:50+00:00" +album: "music" +filename: "alabama-3-lead.md" +series: "" +cl_public_id: "music/alabama-3-lead" +cl_version: 1497004809 +format: "tiff" +bytes: 1610272 +width: 810 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "170.0 mm" +iso: "4000" +shutter_speed: "1/100" +metering: "Multi-segment" +flash: "On, Return detected" +white_balance: "Custom" +colour_temp: "6600" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alabama-3-single.md b/site/content/photos/alabama-3-single.md new file mode 100644 index 0000000..e9720f3 --- /dev/null +++ b/site/content/photos/alabama-3-single.md @@ -0,0 +1,32 @@ +--- +title: "alabama-3-single" +type: "upload" +description: "TBC" +date: "2011-05-01 23:31:27+00:00" +album: "music" +filename: "alabama-3-single.md" +series: "" +cl_public_id: "music/alabama-3-single" +cl_version: 1497004847 +format: "tiff" +bytes: 4520392 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.0" +focal_length: "82.0 mm" +iso: "4000" +shutter_speed: "1/100" +metering: "Multi-segment" +flash: "On, Return detected" +white_balance: "Custom" +colour_temp: "7250" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alabama-3-stage.md b/site/content/photos/alabama-3-stage.md new file mode 100644 index 0000000..e20f3cd --- /dev/null +++ b/site/content/photos/alabama-3-stage.md @@ -0,0 +1,32 @@ +--- +title: "alabama-3-stage" +type: "upload" +description: "TBC" +date: "2011-05-01 23:40:52+00:00" +album: "music" +filename: "alabama-3-stage.md" +series: "" +cl_public_id: "music/alabama-3-stage" +cl_version: 1497004838 +format: "tiff" +bytes: 5315936 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.0" +focal_length: "18.0 mm" +iso: "4000" +shutter_speed: "1/50" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alabama-3-vocals.md b/site/content/photos/alabama-3-vocals.md new file mode 100644 index 0000000..fe3ef49 --- /dev/null +++ b/site/content/photos/alabama-3-vocals.md @@ -0,0 +1,32 @@ +--- +title: "alabama-3-vocals" +type: "upload" +description: "TBC" +date: "2011-05-01 23:41:23+00:00" +album: "music" +filename: "alabama-3-vocals.md" +series: "" +cl_public_id: "music/alabama-3-vocals" +cl_version: 1497004827 +format: "tiff" +bytes: 5293740 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.0" +focal_length: "46.0 mm" +iso: "4000" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "14000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alberto-blindfolded.md b/site/content/photos/alberto-blindfolded.md new file mode 100644 index 0000000..1728a61 --- /dev/null +++ b/site/content/photos/alberto-blindfolded.md @@ -0,0 +1,32 @@ +--- +title: "alberto-blindfolded" +type: "upload" +description: "TBC" +date: "2014-04-19 09:45:55+00:00" +album: "people" +filename: "alberto-blindfolded.md" +series: "" +cl_public_id: "people/alberto-blindfolded" +cl_version: 1497005300 +format: "tiff" +bytes: 1849448 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4850" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alberto-david-unicorns.md b/site/content/photos/alberto-david-unicorns.md new file mode 100644 index 0000000..b801846 --- /dev/null +++ b/site/content/photos/alberto-david-unicorns.md @@ -0,0 +1,32 @@ +--- +title: "alberto-david-unicorns" +type: "upload" +description: "TBC" +date: "2014-04-19 19:44:29+00:00" +album: "people" +filename: "alberto-david-unicorns.md" +series: "" +cl_public_id: "people/alberto-david-unicorns" +cl_version: 1497005320 +format: "tiff" +bytes: 3820968 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "112.0 mm" +iso: "250" +shutter_speed: "1/320" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4550" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alberto-dschung.md b/site/content/photos/alberto-dschung.md new file mode 100644 index 0000000..d39229f --- /dev/null +++ b/site/content/photos/alberto-dschung.md @@ -0,0 +1,32 @@ +--- +title: "alberto-dschung" +type: "upload" +description: "TBC" +date: "2014-04-19 09:33:21+00:00" +album: "people" +filename: "alberto-dschung.md" +series: "" +cl_public_id: "people/alberto-dschung" +cl_version: 1497005318 +format: "tiff" +bytes: 4941772 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/320" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/alt-neue-berlin.md b/site/content/photos/alt-neue-berlin.md new file mode 100644 index 0000000..a8e905a --- /dev/null +++ b/site/content/photos/alt-neue-berlin.md @@ -0,0 +1,32 @@ +--- +title: "alt-neue-berlin" +type: "upload" +description: "TBC" +date: "2014-02-09 17:28:01+00:00" +album: "city" +filename: "alt-neue-berlin.md" +series: "" +cl_public_id: "city/alt-neue-berlin" +cl_version: 1497000174 +format: "tiff" +bytes: 7435140 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "50.0 mm" +iso: "160" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "7250" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-candid.md b/site/content/photos/anna-candid.md new file mode 100644 index 0000000..0068b8a --- /dev/null +++ b/site/content/photos/anna-candid.md @@ -0,0 +1,32 @@ +--- +title: "anna-candid" +type: "upload" +description: "TBC" +date: "2014-04-20 15:54:51+00:00" +album: "people" +filename: "anna-candid.md" +series: "" +cl_public_id: "people/anna-candid" +cl_version: 1497005311 +format: "tiff" +bytes: 3239032 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/1250" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-cite-foche.md b/site/content/photos/anna-cite-foche.md new file mode 100644 index 0000000..1e6103a --- /dev/null +++ b/site/content/photos/anna-cite-foche.md @@ -0,0 +1,32 @@ +--- +title: "anna-cite-foche" +type: "upload" +description: "TBC" +date: "2016-08-21 18:56:23+00:00" +album: "people" +filename: "anna-cite-foche.md" +series: "" +cl_public_id: "people/anna-cite-foche" +cl_version: 1497005320 +format: "tiff" +bytes: 1824672 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "52.0 mm" +iso: "800" +shutter_speed: "1/40" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3850" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-grogans-pint.md b/site/content/photos/anna-grogans-pint.md new file mode 100644 index 0000000..d25b068 --- /dev/null +++ b/site/content/photos/anna-grogans-pint.md @@ -0,0 +1,32 @@ +--- +title: "anna-grogans-pint" +type: "upload" +description: "TBC" +date: "2014-04-07 18:29:47+00:00" +album: "people" +filename: "anna-grogans-pint.md" +series: "" +cl_public_id: "people/anna-grogans-pint" +cl_version: 1497005308 +format: "tiff" +bytes: 2296292 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "640" +shutter_speed: "1/40" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3300" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-light-museum.md b/site/content/photos/anna-light-museum.md new file mode 100644 index 0000000..4bf6071 --- /dev/null +++ b/site/content/photos/anna-light-museum.md @@ -0,0 +1,32 @@ +--- +title: "anna-light-museum" +type: "upload" +description: "TBC" +date: "2014-02-09 16:55:50+00:00" +album: "people" +filename: "anna-light-museum.md" +series: "" +cl_public_id: "people/anna-light-museum" +cl_version: 1497005347 +format: "tiff" +bytes: 5683360 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "1600" +shutter_speed: "1/1250" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-pearse-station.md b/site/content/photos/anna-pearse-station.md new file mode 100644 index 0000000..64b7341 --- /dev/null +++ b/site/content/photos/anna-pearse-station.md @@ -0,0 +1,32 @@ +--- +title: "anna-pearse-station" +type: "upload" +description: "TBC" +date: "2014-04-07 19:02:37+00:00" +album: "city" +filename: "anna-pearse-station.md" +series: "" +cl_public_id: "city/anna-pearse-station" +cl_version: 1497000176 +format: "tiff" +bytes: 2289228 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "640" +shutter_speed: "1/1600" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-portfolio-closeup.md b/site/content/photos/anna-portfolio-closeup.md new file mode 100644 index 0000000..0370cb6 --- /dev/null +++ b/site/content/photos/anna-portfolio-closeup.md @@ -0,0 +1,32 @@ +--- +title: "anna-portfolio-closeup" +type: "upload" +description: "TBC" +date: "2017-05-26 20:25:56+00:00" +album: "people" +filename: "anna-portfolio-closeup.md" +series: "" +cl_public_id: "people/anna-portfolio-closeup" +cl_version: 1497005335 +format: "tiff" +bytes: 4208464 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "800" +shutter_speed: "1/25" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-portfolio-desk.md b/site/content/photos/anna-portfolio-desk.md new file mode 100644 index 0000000..1729af4 --- /dev/null +++ b/site/content/photos/anna-portfolio-desk.md @@ -0,0 +1,32 @@ +--- +title: "anna-portfolio-desk" +type: "upload" +description: "TBC" +date: "2017-05-26 18:04:33+00:00" +album: "people" +filename: "anna-portfolio-desk.md" +series: "" +cl_public_id: "people/anna-portfolio-desk" +cl_version: 1497005354 +format: "tiff" +bytes: 5460628 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "26.0 mm" +iso: "250" +shutter_speed: "1/15" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5350" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-portrait.md b/site/content/photos/anna-portrait.md new file mode 100644 index 0000000..7e72ca1 --- /dev/null +++ b/site/content/photos/anna-portrait.md @@ -0,0 +1,32 @@ +--- +title: "anna-portrait" +type: "upload" +description: "TBC" +date: "2017-05-21 19:28:23+00:00" +album: "people" +filename: "anna-portrait.md" +series: "" +cl_public_id: "people/anna-portrait" +cl_version: 1497005333 +format: "tiff" +bytes: 1762448 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/640" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-shoot-facing-camera.md b/site/content/photos/anna-shoot-facing-camera.md new file mode 100644 index 0000000..74ed048 --- /dev/null +++ b/site/content/photos/anna-shoot-facing-camera.md @@ -0,0 +1,32 @@ +--- +title: "anna-shoot-facing-camera" +type: "upload" +description: "TBC" +date: "2014-03-30 19:03:08+00:00" +album: "people" +filename: "anna-shoot-facing-camera.md" +series: "" +cl_public_id: "people/anna-shoot-facing-camera" +cl_version: 1497005353 +format: "tiff" +bytes: 2336864 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "50" +shutter_speed: "1/160" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6050" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-shoot-flowers.md b/site/content/photos/anna-shoot-flowers.md new file mode 100644 index 0000000..d26bdca --- /dev/null +++ b/site/content/photos/anna-shoot-flowers.md @@ -0,0 +1,32 @@ +--- +title: "anna-shoot-flowers" +type: "upload" +description: "TBC" +date: "2014-03-30 15:42:00+00:00" +album: "people" +filename: "anna-shoot-flowers.md" +series: "" +cl_public_id: "people/anna-shoot-flowers" +cl_version: 1497005343 +format: "tiff" +bytes: 5450280 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "50.0 mm" +iso: "50" +shutter_speed: "1/640" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna-shoot-hair-swirl.md b/site/content/photos/anna-shoot-hair-swirl.md new file mode 100644 index 0000000..d98f4e2 --- /dev/null +++ b/site/content/photos/anna-shoot-hair-swirl.md @@ -0,0 +1,32 @@ +--- +title: "anna-shoot-hair-swirl" +type: "upload" +description: "TBC" +date: "2014-03-30 19:05:26+00:00" +album: "people" +filename: "anna-shoot-hair-swirl.md" +series: "" +cl_public_id: "people/anna-shoot-hair-swirl" +cl_version: 1497005344 +format: "tiff" +bytes: 1543724 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "50" +shutter_speed: "1/125" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna_markt.md b/site/content/photos/anna_markt.md new file mode 100644 index 0000000..55fa2e0 --- /dev/null +++ b/site/content/photos/anna_markt.md @@ -0,0 +1,32 @@ +--- +title: "anna_markt" +type: "upload" +description: "TBC" +date: "2016-01-10 18:42:41+00:00" +album: "city" +filename: "anna-markt.md" +series: "" +cl_public_id: "city/anna_markt" +cl_version: 1497000193 +format: "tiff" +bytes: 6192676 +width: 2154 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "1000" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4500" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/anna_pier.md b/site/content/photos/anna_pier.md new file mode 100644 index 0000000..c45b0e8 --- /dev/null +++ b/site/content/photos/anna_pier.md @@ -0,0 +1,32 @@ +--- +title: "anna_pier" +type: "upload" +description: "TBC" +date: "2017-04-14 20:14:24" +album: "people" +filename: "anna-pier.md" +series: "" +cl_public_id: "people/anna_pier" +cl_version: 1497005358 +format: "tiff" +bytes: 6668880 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: undefined +focal_length: "16.0 mm" +iso: "1250" +shutter_speed: undefined +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "-0.2" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/balcony-plants.md b/site/content/photos/balcony-plants.md new file mode 100644 index 0000000..156f4fb --- /dev/null +++ b/site/content/photos/balcony-plants.md @@ -0,0 +1,32 @@ +--- +title: "balcony-plants" +type: "upload" +description: "TBC" +date: "2014-05-29 20:59:38+00:00" +album: "nature" +filename: "balcony-plants.md" +series: "" +cl_public_id: "nature/balcony-plants" +cl_version: 1497005030 +format: "tiff" +bytes: 4712332 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "7100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/ballinskelligs-cottage.md b/site/content/photos/ballinskelligs-cottage.md new file mode 100644 index 0000000..fc7e050 --- /dev/null +++ b/site/content/photos/ballinskelligs-cottage.md @@ -0,0 +1,32 @@ +--- +title: "ballinskelligs-cottage" +type: "upload" +description: "TBC" +date: "2012-04-01 16:51:48+00:00" +album: "abandoned" +filename: "ballinskelligs-cottage.md" +series: "" +cl_public_id: "abandoned/ballinskelligs-cottage" +cl_version: 1497000047 +format: "tiff" +bytes: 5241268 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "13.0" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/bankomat-berlin.md b/site/content/photos/bankomat-berlin.md new file mode 100644 index 0000000..a515945 --- /dev/null +++ b/site/content/photos/bankomat-berlin.md @@ -0,0 +1,32 @@ +--- +title: "bankomat-berlin" +type: "upload" +description: "TBC" +date: "2016-07-17 02:54:02+00:00" +album: "city" +filename: "bankomat-berlin.md" +series: "" +cl_public_id: "city/bankomat-berlin" +cl_version: 1497000177 +format: "tiff" +bytes: 4815356 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "500" +shutter_speed: "1/80" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2950" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/barcelona-ship.md b/site/content/photos/barcelona-ship.md new file mode 100644 index 0000000..08f6225 --- /dev/null +++ b/site/content/photos/barcelona-ship.md @@ -0,0 +1,32 @@ +--- +title: "barcelona-ship" +type: "upload" +description: "TBC" +date: "2011-06-09 18:20:44+00:00" +album: "city" +filename: "barcelona-ship.md" +series: "" +cl_public_id: "city/barcelona-ship" +cl_version: 1497000391 +format: "tiff" +bytes: 4955644 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "200.0 mm" +iso: "200" +shutter_speed: "1/500" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5000" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-10k-group.md b/site/content/photos/berlin-10k-group.md new file mode 100644 index 0000000..92e36be --- /dev/null +++ b/site/content/photos/berlin-10k-group.md @@ -0,0 +1,32 @@ +--- +title: "berlin-10k-group" +type: "upload" +description: "TBC" +date: "2017-05-14 12:12:56+00:00" +album: "events" +filename: "berlin-10k-group.md" +series: "" +cl_public_id: "events/berlin-10k-group" +cl_version: 1497002554 +format: "tiff" +bytes: 3978636 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "7.1" +focal_length: "16.0 mm" +iso: "100" +shutter_speed: "1/1000" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5400" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-5k-ruairi.md b/site/content/photos/berlin-5k-ruairi.md new file mode 100644 index 0000000..e1896a7 --- /dev/null +++ b/site/content/photos/berlin-5k-ruairi.md @@ -0,0 +1,32 @@ +--- +title: "berlin-5k-ruairi" +type: "upload" +description: "TBC" +date: "2014-07-26 20:16:40+00:00" +album: "events" +filename: "berlin-5k-ruairi.md" +series: "" +cl_public_id: "events/berlin-5k-ruairi" +cl_version: 1497002563 +format: "tiff" +bytes: 4914840 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "5.6" +focal_length: "75.0 mm" +iso: "800" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5350" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-christmas-market-bar.md b/site/content/photos/berlin-christmas-market-bar.md new file mode 100644 index 0000000..fcab4f3 --- /dev/null +++ b/site/content/photos/berlin-christmas-market-bar.md @@ -0,0 +1,32 @@ +--- +title: "berlin-christmas-market-bar" +type: "upload" +description: "TBC" +date: "2015-12-05 18:25:10+00:00" +album: "city" +filename: "berlin-christmas-market-bar.md" +series: "" +cl_public_id: "city/berlin-christmas-market-bar" +cl_version: 1497000190 +format: "tiff" +bytes: 6802560 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "1600" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2900" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-christmas-market-shed.md b/site/content/photos/berlin-christmas-market-shed.md new file mode 100644 index 0000000..06ed9a4 --- /dev/null +++ b/site/content/photos/berlin-christmas-market-shed.md @@ -0,0 +1,32 @@ +--- +title: "berlin-christmas-market-shed" +type: "upload" +description: "TBC" +date: "2015-12-05 18:02:19+00:00" +album: "city" +filename: "berlin-christmas-market-shed.md" +series: "" +cl_public_id: "city/berlin-christmas-market-shed" +cl_version: 1497000194 +format: "tiff" +bytes: 2222928 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "50.0 mm" +iso: "2500" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-christmas-market.md b/site/content/photos/berlin-christmas-market.md new file mode 100644 index 0000000..ae6c9bd --- /dev/null +++ b/site/content/photos/berlin-christmas-market.md @@ -0,0 +1,32 @@ +--- +title: "berlin-christmas-market" +type: "upload" +description: "TBC" +date: "2015-12-05 17:59:44+00:00" +album: "city" +filename: "berlin-christmas-market.md" +series: "" +cl_public_id: "city/berlin-christmas-market" +cl_version: 1497000187 +format: "tiff" +bytes: 4989328 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "2500" +shutter_speed: "1/13" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3600" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-demonstration-lying-down.md b/site/content/photos/berlin-demonstration-lying-down.md new file mode 100644 index 0000000..23b65db --- /dev/null +++ b/site/content/photos/berlin-demonstration-lying-down.md @@ -0,0 +1,32 @@ +--- +title: "berlin-demonstration-lying-down" +type: "upload" +description: "TBC" +date: "2014-06-28 16:08:49+00:00" +album: "city" +filename: "berlin-demonstration-lying-down.md" +series: "" +cl_public_id: "city/berlin-demonstration-lying-down" +cl_version: 1497000190 +format: "tiff" +bytes: 2490064 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "3.2" +focal_length: "70.0 mm" +iso: "100" +shutter_speed: "1/640" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-expo-messe-nord.md b/site/content/photos/berlin-expo-messe-nord.md new file mode 100644 index 0000000..b980c65 --- /dev/null +++ b/site/content/photos/berlin-expo-messe-nord.md @@ -0,0 +1,32 @@ +--- +title: "berlin-expo-messe-nord" +type: "upload" +description: "TBC" +date: "2016-12-09 13:01:11+00:00" +album: "city" +filename: "berlin-expo-messe-nord.md" +series: "" +cl_public_id: "city/berlin-expo-messe-nord" +cl_version: 1497000191 +format: "tiff" +bytes: 3306448 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "7.1" +focal_length: "24.0 mm" +iso: "250" +shutter_speed: "1/160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5800" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-protest-banner.md b/site/content/photos/berlin-protest-banner.md new file mode 100644 index 0000000..c455f70 --- /dev/null +++ b/site/content/photos/berlin-protest-banner.md @@ -0,0 +1,32 @@ +--- +title: "berlin-protest-banner" +type: "upload" +description: "TBC" +date: "2014-06-28 16:06:45+00:00" +album: "city" +filename: "berlin-protest-banner.md" +series: "" +cl_public_id: "city/berlin-protest-banner" +cl_version: 1497000221 +format: "tiff" +bytes: 6319876 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "8.0" +focal_length: "116.0 mm" +iso: "100" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/berlin-supermarkt.md b/site/content/photos/berlin-supermarkt.md new file mode 100644 index 0000000..d7a13de --- /dev/null +++ b/site/content/photos/berlin-supermarkt.md @@ -0,0 +1,32 @@ +--- +title: "berlin-supermarkt" +type: "upload" +description: "TBC" +date: "2016-07-17 02:57:36+00:00" +album: "city" +filename: "berlin-supermarkt.md" +series: "" +cl_public_id: "city/berlin-supermarkt" +cl_version: 1497000214 +format: "tiff" +bytes: 6571272 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "6400" +shutter_speed: "1/15" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2750" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/bird-closeup.md b/site/content/photos/bird-closeup.md new file mode 100644 index 0000000..32d547f --- /dev/null +++ b/site/content/photos/bird-closeup.md @@ -0,0 +1,32 @@ +--- +title: "bird-closeup" +type: "upload" +description: "TBC" +date: "2011-09-24 16:07:03+00:00" +album: "nature" +filename: "bird-closeup.md" +series: "" +cl_public_id: "nature/bird-closeup" +cl_version: 1497005059 +format: "tiff" +bytes: 7902888 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.3" +focal_length: "105.0 mm" +iso: "8000" +shutter_speed: "1/6400" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/bird-poised.md b/site/content/photos/bird-poised.md new file mode 100644 index 0000000..3c0b7b5 --- /dev/null +++ b/site/content/photos/bird-poised.md @@ -0,0 +1,32 @@ +--- +title: "bird-poised" +type: "upload" +description: "TBC" +date: "2011-09-24 16:01:53+00:00" +album: "nature" +filename: "bird-poised.md" +series: "" +cl_public_id: "nature/bird-poised" +cl_version: 1497005045 +format: "tiff" +bytes: 7984332 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.6" +focal_length: "130.0 mm" +iso: "8000" +shutter_speed: "1/8000" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/blumen.md b/site/content/photos/blumen.md new file mode 100644 index 0000000..9b3c7f3 --- /dev/null +++ b/site/content/photos/blumen.md @@ -0,0 +1,32 @@ +--- +title: "blumen" +type: "upload" +description: "TBC" +date: "2014-03-30 15:50:48+00:00" +album: "nature" +filename: "blumen.md" +series: "" +cl_public_id: "nature/blumen" +cl_version: 1497005026 +format: "tiff" +bytes: 4030600 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "50.0 mm" +iso: "50" +shutter_speed: "1/400" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/border.md b/site/content/photos/border.md new file mode 100644 index 0000000..50bff38 --- /dev/null +++ b/site/content/photos/border.md @@ -0,0 +1,32 @@ +--- +title: "border" +type: "upload" +description: "TBC" +date: "2014-03-08 17:37:55+00:00" +album: "city" +filename: "border.md" +series: "" +cl_public_id: "city/border" +cl_version: 1497000213 +format: "tiff" +bytes: 3179564 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/brandenburger-tor.md b/site/content/photos/brandenburger-tor.md new file mode 100644 index 0000000..e256233 --- /dev/null +++ b/site/content/photos/brandenburger-tor.md @@ -0,0 +1,32 @@ +--- +title: "brandenburger-tor" +type: "upload" +description: "TBC" +date: "2016-12-09 11:30:25+00:00" +album: "city" +filename: "brandenburger-tor.md" +series: "" +cl_public_id: "city/brandenburger-tor" +cl_version: 1497000221 +format: "tiff" +bytes: 5109532 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "7.1" +focal_length: "31.0 mm" +iso: "200" +shutter_speed: "1/100" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5600" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/braurei.md b/site/content/photos/braurei.md new file mode 100644 index 0000000..b31acab --- /dev/null +++ b/site/content/photos/braurei.md @@ -0,0 +1,32 @@ +--- +title: "braurei" +type: "upload" +description: "TBC" +date: "2017-03-11 18:33:15+00:00" +album: "experimental" +filename: "braurei.md" +series: "" +cl_public_id: "experimental/braurei" +cl_version: 1497004468 +format: "tiff" +bytes: 9938040 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: undefined +focal_length: "16.0 mm" +iso: "100" +shutter_speed: undefined +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "-4.0" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/building-pattern.md b/site/content/photos/building-pattern.md new file mode 100644 index 0000000..4a17da3 --- /dev/null +++ b/site/content/photos/building-pattern.md @@ -0,0 +1,32 @@ +--- +title: "building-pattern" +type: "upload" +description: "TBC" +date: "2016-12-09 10:47:01+00:00" +album: "experimental" +filename: "building-pattern.md" +series: "" +cl_public_id: "experimental/building-pattern" +cl_version: 1497004427 +format: "tiff" +bytes: 2869740 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "70.0 mm" +iso: "200" +shutter_speed: "1/500" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/busker-street-berlin.md b/site/content/photos/busker-street-berlin.md new file mode 100644 index 0000000..f7bd3a3 --- /dev/null +++ b/site/content/photos/busker-street-berlin.md @@ -0,0 +1,32 @@ +--- +title: "busker-street-berlin" +type: "upload" +description: "TBC" +date: "2016-07-11 00:06:00+00:00" +album: "city" +filename: "busker-street-berlin.md" +series: "" +cl_public_id: "city/busker-street-berlin" +cl_version: 1497000217 +format: "tiff" +bytes: 2483788 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "16.0 mm" +iso: "800" +shutter_speed: "1/20" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3450" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/canal.md b/site/content/photos/canal.md new file mode 100644 index 0000000..ae58404 --- /dev/null +++ b/site/content/photos/canal.md @@ -0,0 +1,32 @@ +--- +title: "canal" +type: "upload" +description: "TBC" +date: "2014-04-20 18:19:34+00:00" +album: "people" +filename: "canal.md" +series: "" +cl_public_id: "people/canal" +cl_version: 1497005369 +format: "tiff" +bytes: 3264888 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.0" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/640" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5350" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/casino-berlin.md b/site/content/photos/casino-berlin.md new file mode 100644 index 0000000..964e89a --- /dev/null +++ b/site/content/photos/casino-berlin.md @@ -0,0 +1,32 @@ +--- +title: "casino-berlin" +type: "upload" +description: "TBC" +date: "2016-07-10 01:45:48+00:00" +album: "city" +filename: "casino-berlin.md" +series: "" +cl_public_id: "city/casino-berlin" +cl_version: 1497000282 +format: "tiff" +bytes: 5967544 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "16.0 mm" +iso: "2000" +shutter_speed: "1/40" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2900" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/channel-tunnel-self-portrait.md b/site/content/photos/channel-tunnel-self-portrait.md new file mode 100644 index 0000000..e156f3b --- /dev/null +++ b/site/content/photos/channel-tunnel-self-portrait.md @@ -0,0 +1,32 @@ +--- +title: "channel-tunnel-self-portrait" +type: "upload" +description: "TBC" +date: "2011-06-07 20:20:20+00:00" +album: "experimental" +filename: "channel-tunnel-self-portrait.md" +series: "" +cl_public_id: "experimental/channel-tunnel-self-portrait" +cl_version: 1497004478 +format: "tiff" +bytes: 5562568 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "38.0 mm" +iso: "2000" +shutter_speed: "1/15" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/channel-tunnel.md b/site/content/photos/channel-tunnel.md new file mode 100644 index 0000000..14ecafe --- /dev/null +++ b/site/content/photos/channel-tunnel.md @@ -0,0 +1,32 @@ +--- +title: "channel-tunnel" +type: "upload" +description: "TBC" +date: "2011-06-07 20:06:24+00:00" +album: "experimental" +filename: "channel-tunnel.md" +series: "" +cl_public_id: "experimental/channel-tunnel" +cl_version: 1497004490 +format: "tiff" +bytes: 6110572 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "3.5" +focal_length: "18.0 mm" +iso: "500" +shutter_speed: "1/40" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2300" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/charlottenburg-lake-fisheye.md b/site/content/photos/charlottenburg-lake-fisheye.md new file mode 100644 index 0000000..48e4af8 --- /dev/null +++ b/site/content/photos/charlottenburg-lake-fisheye.md @@ -0,0 +1,32 @@ +--- +title: "charlottenburg-lake-fisheye" +type: "upload" +description: "TBC" +date: "2017-01-22 16:39:09+00:00" +album: "city" +filename: "charlottenburg-lake-fisheye.md" +series: "" +cl_public_id: "city/charlottenburg-lake-fisheye" +cl_version: 1497000243 +format: "tiff" +bytes: 3289748 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "9.0" +focal_length: "16.0 mm" +iso: "100" +shutter_speed: "1/160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4800" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/charlottenburg-statue.md b/site/content/photos/charlottenburg-statue.md new file mode 100644 index 0000000..133b2fe --- /dev/null +++ b/site/content/photos/charlottenburg-statue.md @@ -0,0 +1,32 @@ +--- +title: "charlottenburg-statue" +type: "upload" +description: "TBC" +date: "2014-03-30 16:18:48+00:00" +album: "city" +filename: "charlottenburg-statue.md" +series: "" +cl_public_id: "city/charlottenburg-statue" +cl_version: 1497000221 +format: "tiff" +bytes: 1850744 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "8.0" +focal_length: "135.0 mm" +iso: "200" +shutter_speed: "1/250" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/charlottenburg-tree.md b/site/content/photos/charlottenburg-tree.md new file mode 100644 index 0000000..5df7a13 --- /dev/null +++ b/site/content/photos/charlottenburg-tree.md @@ -0,0 +1,32 @@ +--- +title: "charlottenburg-tree" +type: "upload" +description: "TBC" +date: "2017-01-22 16:41:19+00:00" +album: "experimental" +filename: "charlottenburg-tree.md" +series: "" +cl_public_id: "experimental/charlottenburg-tree" +cl_version: 1497004489 +format: "tiff" +bytes: 2639480 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.0" +focal_length: "16.0 mm" +iso: "100" +shutter_speed: "1/100" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/chloe.md b/site/content/photos/chloe.md new file mode 100644 index 0000000..ca64637 --- /dev/null +++ b/site/content/photos/chloe.md @@ -0,0 +1,32 @@ +--- +title: "chloe" +type: "upload" +description: "TBC" +date: "2015-12-25 15:02:26+00:00" +album: "people" +filename: "chloe.md" +series: "" +cl_public_id: "people/chloe" +cl_version: 1497005372 +format: "tiff" +bytes: 3844928 +width: 1321 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.0" +focal_length: "58.0 mm" +iso: "1250" +shutter_speed: "1/30" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4700" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/christina-berlin.md b/site/content/photos/christina-berlin.md new file mode 100644 index 0000000..d4466b5 --- /dev/null +++ b/site/content/photos/christina-berlin.md @@ -0,0 +1,32 @@ +--- +title: "christina-berlin" +type: "upload" +description: "TBC" +date: "2014-02-09 15:29:32+00:00" +album: "people" +filename: "christina-berlin.md" +series: "" +cl_public_id: "people/christina-berlin" +cl_version: 1497005363 +format: "tiff" +bytes: 1693840 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/500" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/christina-light-museum.md b/site/content/photos/christina-light-museum.md new file mode 100644 index 0000000..3e2da47 --- /dev/null +++ b/site/content/photos/christina-light-museum.md @@ -0,0 +1,32 @@ +--- +title: "christina-light-museum" +type: "upload" +description: "TBC" +date: "2014-02-09 17:00:35+00:00" +album: "people" +filename: "christina-light-museum.md" +series: "" +cl_public_id: "people/christina-light-museum" +cl_version: 1497005406 +format: "tiff" +bytes: 6499376 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "11.0" +focal_length: "50.0 mm" +iso: "1600" +shutter_speed: "1/50" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2250" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/christina-matt-berlin.md b/site/content/photos/christina-matt-berlin.md new file mode 100644 index 0000000..e4a5c88 --- /dev/null +++ b/site/content/photos/christina-matt-berlin.md @@ -0,0 +1,32 @@ +--- +title: "christina-matt-berlin" +type: "upload" +description: "TBC" +date: "2014-02-09 15:31:31+00:00" +album: "people" +filename: "christina-matt-berlin.md" +series: "" +cl_public_id: "people/christina-matt-berlin" +cl_version: 1497005362 +format: "tiff" +bytes: 4352156 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6550" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/church_interior.md b/site/content/photos/church_interior.md new file mode 100644 index 0000000..c43f17b --- /dev/null +++ b/site/content/photos/church_interior.md @@ -0,0 +1,32 @@ +--- +title: "church_interior" +type: "upload" +description: "TBC" +date: "2016-01-08 16:10:34+00:00" +album: "city" +filename: "church-interior.md" +series: "" +cl_public_id: "city/church_interior" +cl_version: 1497000246 +format: "tiff" +bytes: 4071732 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "1000" +shutter_speed: "1/20" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/cite-foche-anna-illuminated.md b/site/content/photos/cite-foche-anna-illuminated.md new file mode 100644 index 0000000..630d54f --- /dev/null +++ b/site/content/photos/cite-foche-anna-illuminated.md @@ -0,0 +1,32 @@ +--- +title: "cite-foche-anna-illuminated" +type: "upload" +description: "TBC" +date: "2016-08-21 19:07:18+00:00" +album: "abandoned" +filename: "cite-foche-anna-illuminated.md" +series: "" +cl_public_id: "abandoned/cite-foche-anna-illuminated" +cl_version: 1497000046 +format: "tiff" +bytes: 1596336 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "56.0 mm" +iso: "1250" +shutter_speed: "1/80" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/cite-foche-anna-rain.md b/site/content/photos/cite-foche-anna-rain.md new file mode 100644 index 0000000..3c06791 --- /dev/null +++ b/site/content/photos/cite-foche-anna-rain.md @@ -0,0 +1,32 @@ +--- +title: "cite-foche-anna-rain" +type: "upload" +description: "TBC" +date: "2016-08-21 19:02:32+00:00" +album: "abandoned" +filename: "cite-foche-anna-rain.md" +series: "" +cl_public_id: "abandoned/cite-foche-anna-rain" +cl_version: 1497000062 +format: "tiff" +bytes: 2494436 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "9.0" +focal_length: "24.0 mm" +iso: "64" +shutter_speed: "1/15" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4000" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/cite-foche-cinema.md b/site/content/photos/cite-foche-cinema.md new file mode 100644 index 0000000..4636d16 --- /dev/null +++ b/site/content/photos/cite-foche-cinema.md @@ -0,0 +1,32 @@ +--- +title: "cite-foche-cinema" +type: "upload" +description: "TBC" +date: "2016-08-21 18:28:07+00:00" +album: "abandoned" +filename: "cite-foche-cinema.md" +series: "" +cl_public_id: "abandoned/cite-foche-cinema" +cl_version: 1497000077 +format: "tiff" +bytes: 4728872 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "16.0 mm" +iso: "640" +shutter_speed: "1/50" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/cite-foche-exterior.md b/site/content/photos/cite-foche-exterior.md new file mode 100644 index 0000000..7dfeef5 --- /dev/null +++ b/site/content/photos/cite-foche-exterior.md @@ -0,0 +1,32 @@ +--- +title: "cite-foche-exterior" +type: "upload" +description: "TBC" +date: "2016-08-21 18:13:05+00:00" +album: "abandoned" +filename: "cite-foche-exterior.md" +series: "" +cl_public_id: "abandoned/cite-foche-exterior" +cl_version: 1497000082 +format: "tiff" +bytes: 6695220 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "10.0" +focal_length: "16.0 mm" +iso: "200" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/cite-foche-hole-wall.md b/site/content/photos/cite-foche-hole-wall.md new file mode 100644 index 0000000..9266c13 --- /dev/null +++ b/site/content/photos/cite-foche-hole-wall.md @@ -0,0 +1,32 @@ +--- +title: "cite-foche-hole-wall" +type: "upload" +description: "TBC" +date: "2016-08-21 18:31:57+00:00" +album: "abandoned" +filename: "cite-foche-hole-wall.md" +series: "" +cl_public_id: "abandoned/cite-foche-hole-wall" +cl_version: 1497000081 +format: "tiff" +bytes: 4017760 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "16.0 mm" +iso: "320" +shutter_speed: "1/320" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/cite-foche-offices.md b/site/content/photos/cite-foche-offices.md new file mode 100644 index 0000000..de0c7df --- /dev/null +++ b/site/content/photos/cite-foche-offices.md @@ -0,0 +1,32 @@ +--- +title: "cite-foche-offices" +type: "upload" +description: "TBC" +date: "2016-08-21 18:43:21+00:00" +album: "abandoned" +filename: "cite-foche-offices.md" +series: "" +cl_public_id: "abandoned/cite-foche-offices" +cl_version: 1497000068 +format: "tiff" +bytes: 6641548 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "16.0 mm" +iso: "1250" +shutter_speed: "1/200" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/cite-foche-reflections.md b/site/content/photos/cite-foche-reflections.md new file mode 100644 index 0000000..fe7dd62 --- /dev/null +++ b/site/content/photos/cite-foche-reflections.md @@ -0,0 +1,32 @@ +--- +title: "cite-foche-reflections" +type: "upload" +description: "TBC" +date: "2016-08-21 19:05:14+00:00" +album: "abandoned" +filename: "cite-foche-reflections.md" +series: "" +cl_public_id: "abandoned/cite-foche-reflections" +cl_version: 1497000103 +format: "tiff" +bytes: 6670160 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "60.0 mm" +iso: "1250" +shutter_speed: "1/80" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/city-lamp-posters.md b/site/content/photos/city-lamp-posters.md new file mode 100644 index 0000000..450ed9c --- /dev/null +++ b/site/content/photos/city-lamp-posters.md @@ -0,0 +1,32 @@ +--- +title: "city-lamp-posters" +type: "upload" +description: "TBC" +date: "2014-02-09 15:22:21+00:00" +album: "city" +filename: "city-lamp-posters.md" +series: "" +cl_public_id: "city/city-lamp-posters" +cl_version: 1497000228 +format: "tiff" +bytes: 2499424 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/4000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/cliffs-2005-cans.md b/site/content/photos/cliffs-2005-cans.md new file mode 100644 index 0000000..240e82d --- /dev/null +++ b/site/content/photos/cliffs-2005-cans.md @@ -0,0 +1,32 @@ +--- +title: "cliffs-2005-cans" +type: "upload" +description: "TBC" +date: "2005-02-01 18:17:16+00:00" +album: "experimental" +filename: "cliffs-2005-cans.md" +series: "" +cl_public_id: "experimental/cliffs-2005-cans" +cl_version: 1497004491 +format: "tiff" +bytes: 3134100 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "11.6 mm" +iso: "200" +shutter_speed: "1/34" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/cliffs-2005.md b/site/content/photos/cliffs-2005.md new file mode 100644 index 0000000..6436b45 --- /dev/null +++ b/site/content/photos/cliffs-2005.md @@ -0,0 +1,32 @@ +--- +title: "cliffs-2005" +type: "upload" +description: "TBC" +date: "2005-02-01 18:08:42+00:00" +album: "experimental" +filename: "cliffs-2005.md" +series: "" +cl_public_id: "experimental/cliffs-2005" +cl_version: 1497004501 +format: "tiff" +bytes: 3208700 +width: 1920 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "3.2" +focal_length: "7.8 mm" +iso: "200" +shutter_speed: "1/194" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/cliffs-toadstool.md b/site/content/photos/cliffs-toadstool.md new file mode 100644 index 0000000..d6b6484 --- /dev/null +++ b/site/content/photos/cliffs-toadstool.md @@ -0,0 +1,32 @@ +--- +title: "cliffs-toadstool" +type: "upload" +description: "TBC" +date: "2003-11-28 17-31-28 17:31:28+00:00" +album: "nature" +filename: "cliffs-toadstool.md" +series: "" +cl_public_id: "nature/cliffs-toadstool" +cl_version: 1497005029 +format: "jpg" +bytes: 1790666 +width: 2160 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "8.0 mm" +iso: "200" +shutter_speed: "1/8" +metering: "Average" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "KODAK DX4330 DIGITAL CAMERA" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "230" +y_resolution: "230" +--- \ No newline at end of file diff --git a/site/content/photos/colm.md b/site/content/photos/colm.md new file mode 100644 index 0000000..891e594 --- /dev/null +++ b/site/content/photos/colm.md @@ -0,0 +1,32 @@ +--- +title: "colm" +type: "upload" +description: "TBC" +date: "2011-09-25 15:27:03+00:00" +album: "music" +filename: "colm.md" +series: "" +cl_public_id: "music/colm" +cl_version: 1497004816 +format: "tiff" +bytes: 1416936 +width: 954 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "200.0 mm" +iso: "1600" +shutter_speed: "1/80" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/crew-camera-checking.md b/site/content/photos/crew-camera-checking.md new file mode 100644 index 0000000..4232b59 --- /dev/null +++ b/site/content/photos/crew-camera-checking.md @@ -0,0 +1,32 @@ +--- +title: "crew-camera-checking" +type: "upload" +description: "TBC" +date: "2014-04-19 18:08:23+00:00" +album: "people" +filename: "crew-camera-checking.md" +series: "" +cl_public_id: "people/crew-camera-checking" +cl_version: 1497005388 +format: "tiff" +bytes: 4941520 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "70.0 mm" +iso: "100" +shutter_speed: "1/60" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dad-lauren.md b/site/content/photos/dad-lauren.md new file mode 100644 index 0000000..d8cff36 --- /dev/null +++ b/site/content/photos/dad-lauren.md @@ -0,0 +1,32 @@ +--- +title: "dad-lauren" +type: "upload" +description: "TBC" +date: "2017-02-19 14:04:33+00:00" +album: "people" +filename: "dad-lauren.md" +series: "" +cl_public_id: "people/dad-lauren" +cl_version: 1497005386 +format: "tiff" +bytes: 2929704 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "29.0 mm" +iso: "640" +shutter_speed: "1/80" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dan_and_luke_kitchen.md b/site/content/photos/dan_and_luke_kitchen.md new file mode 100644 index 0000000..dd2f0f7 --- /dev/null +++ b/site/content/photos/dan_and_luke_kitchen.md @@ -0,0 +1,32 @@ +--- +title: "dan_and_luke_kitchen" +type: "upload" +description: "TBC" +date: "2015-12-25 15:07:07+00:00" +album: "people" +filename: "dan-and-luke-kitchen.md" +series: "" +cl_public_id: "people/dan_and_luke_kitchen" +cl_version: 1497005420 +format: "tiff" +bytes: 9296220 +width: 2561 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "24.0 mm" +iso: "1250" +shutter_speed: "1/40" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5050" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dan_sophie.md b/site/content/photos/dan_sophie.md new file mode 100644 index 0000000..de31e53 --- /dev/null +++ b/site/content/photos/dan_sophie.md @@ -0,0 +1,32 @@ +--- +title: "dan_sophie" +type: "upload" +description: "TBC" +date: "2016-08-01 14:07:46+00:00" +album: "people" +filename: "dan-sophie.md" +series: "" +cl_public_id: "people/dan_sophie" +cl_version: 1497005391 +format: "tiff" +bytes: 2137540 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "200" +shutter_speed: "1/400" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4650" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dark-grass.md b/site/content/photos/dark-grass.md new file mode 100644 index 0000000..6eeb90b --- /dev/null +++ b/site/content/photos/dark-grass.md @@ -0,0 +1,32 @@ +--- +title: "dark-grass" +type: "upload" +description: "TBC" +date: "2003-11-28 17-35-53 17:35:53+00:00" +album: "nature" +filename: "dark-grass.md" +series: "" +cl_public_id: "nature/dark-grass" +cl_version: 1497005032 +format: "jpg" +bytes: 2521336 +width: 2160 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "8.0 mm" +iso: "120" +shutter_speed: "1/32" +metering: "Average" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "KODAK DX4330 DIGITAL CAMERA" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "230" +y_resolution: "230" +--- \ No newline at end of file diff --git a/site/content/photos/david-oliveira.md b/site/content/photos/david-oliveira.md new file mode 100644 index 0000000..b140a45 --- /dev/null +++ b/site/content/photos/david-oliveira.md @@ -0,0 +1,32 @@ +--- +title: "david-oliveira" +type: "upload" +description: "TBC" +date: "2014-04-19 18:45:21+00:00" +album: "people" +filename: "david-oliveira.md" +series: "" +cl_public_id: "people/david-oliveira" +cl_version: 1497005411 +format: "tiff" +bytes: 6419976 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "95.0 mm" +iso: "640" +shutter_speed: "1/400" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "6300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/deer-park-window.md b/site/content/photos/deer-park-window.md new file mode 100644 index 0000000..9e0aa57 --- /dev/null +++ b/site/content/photos/deer-park-window.md @@ -0,0 +1,32 @@ +--- +title: "deer-park-window" +type: "upload" +description: "TBC" +date: "2014-04-06 20:03:06+00:00" +album: "experimental" +filename: "deer-park-window.md" +series: "" +cl_public_id: "experimental/deer-park-window" +cl_version: 1497004506 +format: "tiff" +bytes: 3567536 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/800" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/demonstration-crowd-berlin.md b/site/content/photos/demonstration-crowd-berlin.md new file mode 100644 index 0000000..b101e5e --- /dev/null +++ b/site/content/photos/demonstration-crowd-berlin.md @@ -0,0 +1,32 @@ +--- +title: "demonstration-crowd-berlin" +type: "upload" +description: "TBC" +date: "2014-06-28 16:02:55+00:00" +album: "city" +filename: "demonstration-crowd-berlin.md" +series: "" +cl_public_id: "city/demonstration-crowd-berlin" +cl_version: 1497000243 +format: "tiff" +bytes: 6864360 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "4.5" +focal_length: "170.0 mm" +iso: "100" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dschung-hand.md b/site/content/photos/dschung-hand.md new file mode 100644 index 0000000..bb3daf1 --- /dev/null +++ b/site/content/photos/dschung-hand.md @@ -0,0 +1,32 @@ +--- +title: "dschung-hand" +type: "upload" +description: "TBC" +date: "2014-04-19 09:45:27+00:00" +album: "people" +filename: "dschung-hand.md" +series: "" +cl_public_id: "people/dschung-hand" +cl_version: 1497005378 +format: "tiff" +bytes: 1079264 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/320" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4850" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dschung-nori.md b/site/content/photos/dschung-nori.md new file mode 100644 index 0000000..bd859f2 --- /dev/null +++ b/site/content/photos/dschung-nori.md @@ -0,0 +1,32 @@ +--- +title: "dschung-nori" +type: "upload" +description: "TBC" +date: "2014-04-19 19:17:39+00:00" +album: "people" +filename: "dschung-nori.md" +series: "" +cl_public_id: "people/dschung-nori" +cl_version: 1497005420 +format: "tiff" +bytes: 6304396 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "4.5" +focal_length: "116.0 mm" +iso: "640" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5600" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dschung-standing.md b/site/content/photos/dschung-standing.md new file mode 100644 index 0000000..10f21f3 --- /dev/null +++ b/site/content/photos/dschung-standing.md @@ -0,0 +1,32 @@ +--- +title: "dschung-standing" +type: "upload" +description: "TBC" +date: "2014-04-19 09:41:01+00:00" +album: "people" +filename: "dschung-standing.md" +series: "" +cl_public_id: "people/dschung-standing" +cl_version: 1497005403 +format: "tiff" +bytes: 2400744 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/800" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4850" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dublin-from-howth.md b/site/content/photos/dublin-from-howth.md new file mode 100644 index 0000000..3e27b3e --- /dev/null +++ b/site/content/photos/dublin-from-howth.md @@ -0,0 +1,32 @@ +--- +title: "dublin-from-howth" +type: "upload" +description: "TBC" +date: "2014-04-06 18:52:27+00:00" +album: "landscapes" +filename: "dublin-from-howth.md" +series: "" +cl_public_id: "landscapes/dublin-from-howth" +cl_version: 1497004709 +format: "tiff" +bytes: 5491788 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "16.0" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/60" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dublin-street.md b/site/content/photos/dublin-street.md new file mode 100644 index 0000000..febdf1b --- /dev/null +++ b/site/content/photos/dublin-street.md @@ -0,0 +1,32 @@ +--- +title: "dublin-street" +type: "upload" +description: "TBC" +date: "2011-04-16 20:09:10+00:00" +album: "city" +filename: "dublin-street.md" +series: "" +cl_public_id: "city/dublin-street" +cl_version: 1497000282 +format: "tiff" +bytes: 6516012 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "8.0" +focal_length: "11.0 mm" +iso: "200" +shutter_speed: "1/20" +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "Custom" +colour_temp: "4800" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "11-16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/dublin.md b/site/content/photos/dublin.md new file mode 100644 index 0000000..fea9ac9 --- /dev/null +++ b/site/content/photos/dublin.md @@ -0,0 +1,32 @@ +--- +title: "dublin" +type: "upload" +description: "TBC" +date: "2011-04-16 20:10:51+00:00" +album: "experimental" +filename: "dublin.md" +series: "" +cl_public_id: "experimental/dublin" +cl_version: 1497004555 +format: "tiff" +bytes: 5593580 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: undefined +focal_length: "11.0 mm" +iso: "200" +shutter_speed: undefined +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "Manual" +colour_temp: "-3.7" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/eagle-tempelhof.md b/site/content/photos/eagle-tempelhof.md new file mode 100644 index 0000000..82b9921 --- /dev/null +++ b/site/content/photos/eagle-tempelhof.md @@ -0,0 +1,32 @@ +--- +title: "eagle-tempelhof" +type: "upload" +description: "TBC" +date: "2013-02-15 15:34:29+00:00" +album: "city" +filename: "eagle-tempelhof.md" +series: "" +cl_public_id: "city/eagle-tempelhof" +cl_version: 1497000262 +format: "tiff" +bytes: 5887728 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/250" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/easter-market-cakes.md b/site/content/photos/easter-market-cakes.md new file mode 100644 index 0000000..9d4125a --- /dev/null +++ b/site/content/photos/easter-market-cakes.md @@ -0,0 +1,32 @@ +--- +title: "easter-market-cakes" +type: "upload" +description: "TBC" +date: "2014-04-20 17:39:05+00:00" +album: "events" +filename: "easter-market-cakes.md" +series: "" +cl_public_id: "events/easter-market-cakes" +cl_version: 1497002584 +format: "tiff" +bytes: 3769512 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/2000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/easter-prost.md b/site/content/photos/easter-prost.md new file mode 100644 index 0000000..1b8f71d --- /dev/null +++ b/site/content/photos/easter-prost.md @@ -0,0 +1,32 @@ +--- +title: "easter-prost" +type: "upload" +description: "TBC" +date: "2016-03-27 21:06:23+00:00" +album: "experimental" +filename: "easter-prost.md" +series: "" +cl_public_id: "experimental/easter-prost" +cl_version: 1497004522 +format: "tiff" +bytes: 2098568 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "52.0 mm" +iso: "2500" +shutter_speed: "1/13" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/eavan.md b/site/content/photos/eavan.md new file mode 100644 index 0000000..37d44e1 --- /dev/null +++ b/site/content/photos/eavan.md @@ -0,0 +1,32 @@ +--- +title: "eavan" +type: "upload" +description: "TBC" +date: "2014-04-19 15:33:16+00:00" +album: "people" +filename: "eavan.md" +series: "" +cl_public_id: "people/eavan" +cl_version: 1497005404 +format: "tiff" +bytes: 1938192 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/800" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4850" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/escalator.md b/site/content/photos/escalator.md new file mode 100644 index 0000000..57809cb --- /dev/null +++ b/site/content/photos/escalator.md @@ -0,0 +1,32 @@ +--- +title: "escalator" +type: "upload" +description: "TBC" +date: "2016-12-18 16:49:56+00:00" +album: "experimental" +filename: "escalator.md" +series: "" +cl_public_id: "experimental/escalator" +cl_version: 1497004520 +format: "tiff" +bytes: 2935204 +width: 2157 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "200" +shutter_speed: "1/60" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3350" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/eternit.md b/site/content/photos/eternit.md new file mode 100644 index 0000000..14e7df2 --- /dev/null +++ b/site/content/photos/eternit.md @@ -0,0 +1,32 @@ +--- +title: "eternit" +type: "upload" +description: "TBC" +date: "2014-02-09 16:04:51+00:00" +album: "experimental" +filename: "eternit.md" +series: "" +cl_public_id: "experimental/eternit" +cl_version: 1497004518 +format: "tiff" +bytes: 748488 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "800" +shutter_speed: "1/1000" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/expo-center-veb-berlin.md b/site/content/photos/expo-center-veb-berlin.md new file mode 100644 index 0000000..6b318aa --- /dev/null +++ b/site/content/photos/expo-center-veb-berlin.md @@ -0,0 +1,32 @@ +--- +title: "expo-center-veb-berlin" +type: "upload" +description: "TBC" +date: "2016-12-09 12:10:58+00:00" +album: "city" +filename: "expo-center-veb-berlin.md" +series: "" +cl_public_id: "city/expo-center-veb-berlin" +cl_version: 1497000264 +format: "tiff" +bytes: 7103848 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.0" +focal_length: "24.0 mm" +iso: "200" +shutter_speed: "1/160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/fence-poland.md b/site/content/photos/fence-poland.md new file mode 100644 index 0000000..6bfde71 --- /dev/null +++ b/site/content/photos/fence-poland.md @@ -0,0 +1,32 @@ +--- +title: "fence-poland" +type: "upload" +description: "TBC" +date: "2014-03-09 16:24:51+00:00" +album: "experimental" +filename: "fence-poland.md" +series: "" +cl_public_id: "experimental/fence-poland" +cl_version: 1497004536 +format: "tiff" +bytes: 3527752 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/8000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/fence.md b/site/content/photos/fence.md new file mode 100644 index 0000000..4448305 --- /dev/null +++ b/site/content/photos/fence.md @@ -0,0 +1,32 @@ +--- +title: "fence" +type: "upload" +description: "TBC" +date: "2016-07-31 13:41:36+00:00" +album: "experimental" +filename: "fence.md" +series: "" +cl_public_id: "experimental/fence" +cl_version: 1497004539 +format: "tiff" +bytes: 4189360 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "16.0 mm" +iso: "200" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/fernsehturm.md b/site/content/photos/fernsehturm.md new file mode 100644 index 0000000..1cd0e57 --- /dev/null +++ b/site/content/photos/fernsehturm.md @@ -0,0 +1,32 @@ +--- +title: "fernsehturm" +type: "upload" +description: "TBC" +date: "2014-02-09 17:33:12+00:00" +album: "city" +filename: "fernsehturm.md" +series: "" +cl_public_id: "city/fernsehturm" +cl_version: 1497000251 +format: "tiff" +bytes: 1105628 +width: 810 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "92.0 mm" +iso: "160" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/film-palast.md b/site/content/photos/film-palast.md new file mode 100644 index 0000000..90f8b2b --- /dev/null +++ b/site/content/photos/film-palast.md @@ -0,0 +1,32 @@ +--- +title: "film-palast" +type: "upload" +description: "TBC" +date: "2014-02-09 16:25:44+00:00" +album: "city" +filename: "film-palast.md" +series: "" +cl_public_id: "city/film-palast" +cl_version: 1497000277 +format: "tiff" +bytes: 6397500 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "50.0 mm" +iso: "800" +shutter_speed: "1/20" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3600" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/finucane-family.md b/site/content/photos/finucane-family.md new file mode 100644 index 0000000..fc18bf6 --- /dev/null +++ b/site/content/photos/finucane-family.md @@ -0,0 +1,32 @@ +--- +title: "finucane-family" +type: "upload" +description: "TBC" +date: "2017-02-19 14:25:31+00:00" +album: "people" +filename: "finucane-family.md" +series: "" +cl_public_id: "people/finucane-family" +cl_version: 1497005427 +format: "tiff" +bytes: 3006772 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "32.0 mm" +iso: "200" +shutter_speed: "1/80" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/flasche-tempelhof.md b/site/content/photos/flasche-tempelhof.md new file mode 100644 index 0000000..5625aea --- /dev/null +++ b/site/content/photos/flasche-tempelhof.md @@ -0,0 +1,32 @@ +--- +title: "flasche-tempelhof" +type: "upload" +description: "TBC" +date: "2013-02-15 15:02:35+00:00" +album: "city" +filename: "flasche-tempelhof.md" +series: "" +cl_public_id: "city/flasche-tempelhof" +cl_version: 1497000265 +format: "tiff" +bytes: 1477212 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/200" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6250" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/fontane_trevi.md b/site/content/photos/fontane_trevi.md new file mode 100644 index 0000000..7c4dad6 --- /dev/null +++ b/site/content/photos/fontane_trevi.md @@ -0,0 +1,32 @@ +--- +title: "fontane_trevi" +type: "upload" +description: "TBC" +date: "2016-01-08 16:34:29+00:00" +album: "city" +filename: "fontane-trevi.md" +series: "" +cl_public_id: "city/fontane_trevi" +cl_version: 1497000306 +format: "tiff" +bytes: 7479208 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.6" +focal_length: "45.0 mm" +iso: "320" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/forest.md b/site/content/photos/forest.md new file mode 100644 index 0000000..c4f0ca7 --- /dev/null +++ b/site/content/photos/forest.md @@ -0,0 +1,32 @@ +--- +title: "forest" +type: "upload" +description: "TBC" +date: "2014-04-19 18:28:31+00:00" +album: "landscapes" +filename: "forest.md" +series: "" +cl_public_id: "landscapes/forest" +cl_version: 1497004673 +format: "tiff" +bytes: 3549816 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "70.0 mm" +iso: "640" +shutter_speed: "1/2000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/francis-wine-glass.md b/site/content/photos/francis-wine-glass.md new file mode 100644 index 0000000..acf3762 --- /dev/null +++ b/site/content/photos/francis-wine-glass.md @@ -0,0 +1,32 @@ +--- +title: "francis-wine-glass" +type: "upload" +description: "TBC" +date: "2015-12-20 01:34:34+00:00" +album: "people" +filename: "francis-wine-glass.md" +series: "" +cl_public_id: "people/francis-wine-glass" +cl_version: 1497005427 +format: "tiff" +bytes: 2398176 +width: 1269 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "70.0 mm" +iso: "6400" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/frosted-leaves.md b/site/content/photos/frosted-leaves.md new file mode 100644 index 0000000..de96685 --- /dev/null +++ b/site/content/photos/frosted-leaves.md @@ -0,0 +1,32 @@ +--- +title: "frosted-leaves" +type: "upload" +description: "TBC" +date: "2016-12-30 15:36:32+00:00" +album: "nature" +filename: "frosted-leaves.md" +series: "" +cl_public_id: "nature/frosted-leaves" +cl_version: 1497005057 +format: "tiff" +bytes: 7016468 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "40.0 mm" +iso: "400" +shutter_speed: "1/160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/german-actress-forest.md b/site/content/photos/german-actress-forest.md new file mode 100644 index 0000000..7d8b9f9 --- /dev/null +++ b/site/content/photos/german-actress-forest.md @@ -0,0 +1,32 @@ +--- +title: "german-actress-forest" +type: "upload" +description: "TBC" +date: "2014-04-19 18:37:23+00:00" +album: "people" +filename: "german-actress-forest.md" +series: "" +cl_public_id: "people/german-actress-forest" +cl_version: 1497005412 +format: "tiff" +bytes: 1849760 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "200.0 mm" +iso: "640" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "6300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/glendalough-landscape.md b/site/content/photos/glendalough-landscape.md new file mode 100644 index 0000000..90d76e4 --- /dev/null +++ b/site/content/photos/glendalough-landscape.md @@ -0,0 +1,32 @@ +--- +title: "glendalough-landscape" +type: "upload" +description: "TBC" +date: "2014-04-08 15:05:46+00:00" +album: "landscapes" +filename: "glendalough-landscape.md" +series: "" +cl_public_id: "landscapes/glendalough-landscape" +cl_version: 1497004696 +format: "tiff" +bytes: 6547564 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/2500" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/glendalough-path.md b/site/content/photos/glendalough-path.md new file mode 100644 index 0000000..e5ca209 --- /dev/null +++ b/site/content/photos/glendalough-path.md @@ -0,0 +1,32 @@ +--- +title: "glendalough-path" +type: "upload" +description: "TBC" +date: "2014-04-08 14:40:28+00:00" +album: "landscapes" +filename: "glendalough-path.md" +series: "" +cl_public_id: "landscapes/glendalough-path" +cl_version: 1497004677 +format: "tiff" +bytes: 4186236 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/1250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/glendalough-tower.md b/site/content/photos/glendalough-tower.md new file mode 100644 index 0000000..23652e0 --- /dev/null +++ b/site/content/photos/glendalough-tower.md @@ -0,0 +1,32 @@ +--- +title: "glendalough-tower" +type: "upload" +description: "TBC" +date: "2014-04-08 17:19:36+00:00" +album: "landscapes" +filename: "glendalough-tower.md" +series: "" +cl_public_id: "landscapes/glendalough-tower" +cl_version: 1497004712 +format: "tiff" +bytes: 2325164 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4850" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/gluwein-christmas-market.md b/site/content/photos/gluwein-christmas-market.md new file mode 100644 index 0000000..4d0e0c5 --- /dev/null +++ b/site/content/photos/gluwein-christmas-market.md @@ -0,0 +1,32 @@ +--- +title: "gluwein-christmas-market" +type: "upload" +description: "TBC" +date: "2015-12-05 18:08:13+00:00" +album: "city" +filename: "gluwein-christmas-market.md" +series: "" +cl_public_id: "city/gluwein-christmas-market" +cl_version: 1497000304 +format: "tiff" +bytes: 5899528 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "2500" +shutter_speed: "1/400" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/greifswalder-tunnel.md b/site/content/photos/greifswalder-tunnel.md new file mode 100644 index 0000000..bfbc336 --- /dev/null +++ b/site/content/photos/greifswalder-tunnel.md @@ -0,0 +1,32 @@ +--- +title: "greifswalder-tunnel" +type: "upload" +description: "TBC" +date: "2015-12-09 00:15:08+00:00" +album: "city" +filename: "greifswalder-tunnel.md" +series: "" +cl_public_id: "city/greifswalder-tunnel" +cl_version: 1497000301 +format: "tiff" +bytes: 4282588 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "3200" +shutter_speed: "1/50" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/greifswaler_apartments.md b/site/content/photos/greifswaler_apartments.md new file mode 100644 index 0000000..7368725 --- /dev/null +++ b/site/content/photos/greifswaler_apartments.md @@ -0,0 +1,32 @@ +--- +title: "greifswaler_apartments" +type: "upload" +description: "TBC" +date: "2014-01-21 21:08:51+00:00" +album: "city" +filename: "greifswaler-apartments.md" +series: "" +cl_public_id: "city/greifswaler_apartments" +cl_version: 1497000303 +format: "tiff" +bytes: 4736832 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.0" +focal_length: "116.0 mm" +iso: "50" +shutter_speed: "30" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2050" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/grogans-finger-chomp.md b/site/content/photos/grogans-finger-chomp.md new file mode 100644 index 0000000..8d02abb --- /dev/null +++ b/site/content/photos/grogans-finger-chomp.md @@ -0,0 +1,32 @@ +--- +title: "grogans-finger-chomp" +type: "upload" +description: "TBC" +date: "2011-04-16 17:35:41+00:00" +album: "people" +filename: "grogans-finger-chomp.md" +series: "" +cl_public_id: "people/grogans-finger-chomp" +cl_version: 1497005450 +format: "tiff" +bytes: 5232548 +width: 2151 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "8.0" +focal_length: "11.0 mm" +iso: "200" +shutter_speed: "1/40" +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "Custom" +colour_temp: "4800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "11-16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/grogans-the-castle.md b/site/content/photos/grogans-the-castle.md new file mode 100644 index 0000000..aaaa6cb --- /dev/null +++ b/site/content/photos/grogans-the-castle.md @@ -0,0 +1,32 @@ +--- +title: "grogans-the-castle" +type: "upload" +description: "TBC" +date: "2011-04-16 18:50:29+00:00" +album: "city" +filename: "grogans-the-castle.md" +series: "" +cl_public_id: "city/grogans-the-castle" +cl_version: 1497000323 +format: "tiff" +bytes: 5790984 +width: 2151 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "2.8" +focal_length: "11.0 mm" +iso: "200" +shutter_speed: "1/500" +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "As Shot" +colour_temp: "5450" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "11-16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/haus-der-statistiche-2.md b/site/content/photos/haus-der-statistiche-2.md new file mode 100644 index 0000000..479955d --- /dev/null +++ b/site/content/photos/haus-der-statistiche-2.md @@ -0,0 +1,32 @@ +--- +title: "haus-der-statistiche-2" +type: "upload" +description: "TBC" +date: "2014-02-09 15:38:19+00:00" +album: "abandoned" +filename: "haus-der-statistiche-2.md" +series: "" +cl_public_id: "abandoned/haus-der-statistiche-2" +cl_version: 1497000117 +format: "tiff" +bytes: 5079364 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "16.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4700" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/haus-der-statistiche.md b/site/content/photos/haus-der-statistiche.md new file mode 100644 index 0000000..a5961e7 --- /dev/null +++ b/site/content/photos/haus-der-statistiche.md @@ -0,0 +1,32 @@ +--- +title: "haus-der-statistiche" +type: "upload" +description: "TBC" +date: "2014-02-09 15:27:28+00:00" +album: "abandoned" +filename: "haus-der-statistiche.md" +series: "" +cl_public_id: "abandoned/haus-der-statistiche" +cl_version: 1497000109 +format: "tiff" +bytes: 5806904 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.6" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/640" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/hohenschenhausen-cell.md b/site/content/photos/hohenschenhausen-cell.md new file mode 100644 index 0000000..0c02cf2 --- /dev/null +++ b/site/content/photos/hohenschenhausen-cell.md @@ -0,0 +1,32 @@ +--- +title: "hohenschenhausen-cell" +type: "upload" +description: "TBC" +date: "2013-02-16 16:01:38+00:00" +album: "abandoned" +filename: "hohenschenhausen-cell.md" +series: "" +cl_public_id: "abandoned/hohenschenhausen-cell" +cl_version: 1497000119 +format: "tiff" +bytes: 7510660 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "35.0 mm" +iso: "400" +shutter_speed: "1/60" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4800" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/hot-sprockets-leads.md b/site/content/photos/hot-sprockets-leads.md new file mode 100644 index 0000000..6b44320 --- /dev/null +++ b/site/content/photos/hot-sprockets-leads.md @@ -0,0 +1,32 @@ +--- +title: "hot-sprockets-leads" +type: "upload" +description: "TBC" +date: "2011-09-25 00:30:56+00:00" +album: "music" +filename: "hot-sprockets-leads.md" +series: "" +cl_public_id: "music/hot-sprockets-leads" +cl_version: 1497004876 +format: "tiff" +bytes: 6974596 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "150.0 mm" +iso: "8000" +shutter_speed: "1/200" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/hot-sprockets-stage-vantastival.md b/site/content/photos/hot-sprockets-stage-vantastival.md new file mode 100644 index 0000000..6a35472 --- /dev/null +++ b/site/content/photos/hot-sprockets-stage-vantastival.md @@ -0,0 +1,32 @@ +--- +title: "hot-sprockets-stage-vantastival" +type: "upload" +description: "TBC" +date: "2011-05-01 18:31:13+00:00" +album: "music" +filename: "hot-sprockets-stage-vantastival.md" +series: "" +cl_public_id: "music/hot-sprockets-stage-vantastival" +cl_version: 1497004848 +format: "tiff" +bytes: 4356456 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "9.0" +focal_length: "95.0 mm" +iso: "3200" +shutter_speed: "1/160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4250" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/howth-fishing-boat.md b/site/content/photos/howth-fishing-boat.md new file mode 100644 index 0000000..82efd67 --- /dev/null +++ b/site/content/photos/howth-fishing-boat.md @@ -0,0 +1,32 @@ +--- +title: "howth-fishing-boat" +type: "upload" +description: "TBC" +date: "2011-10-21 22:30:20+00:00" +album: "landscapes" +filename: "howth-fishing-boat.md" +series: "" +cl_public_id: "landscapes/howth-fishing-boat" +cl_version: 1497004699 +format: "tiff" +bytes: 3571496 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "10.0" +focal_length: "16.0 mm" +iso: "100" +shutter_speed: "189" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2350" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/howth-harbour-lighthouse.md b/site/content/photos/howth-harbour-lighthouse.md new file mode 100644 index 0000000..b795a8a --- /dev/null +++ b/site/content/photos/howth-harbour-lighthouse.md @@ -0,0 +1,32 @@ +--- +title: "howth-harbour-lighthouse" +type: "upload" +description: "TBC" +date: "2011-10-21 23:10:23+00:00" +album: "landscapes" +filename: "howth-harbour-lighthouse.md" +series: "" +cl_public_id: "landscapes/howth-harbour-lighthouse" +cl_version: 1497004697 +format: "tiff" +bytes: 2624984 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "7.1" +focal_length: "12.0 mm" +iso: "100" +shutter_speed: "113" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/howth-harbour.md b/site/content/photos/howth-harbour.md new file mode 100644 index 0000000..79bcfb3 --- /dev/null +++ b/site/content/photos/howth-harbour.md @@ -0,0 +1,32 @@ +--- +title: "howth-harbour" +type: "upload" +description: "TBC" +date: "2011-10-21 22:36:21+00:00" +album: "landscapes" +filename: "howth-harbour.md" +series: "" +cl_public_id: "landscapes/howth-harbour" +cl_version: 1497004722 +format: "tiff" +bytes: 5287616 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "11.0" +focal_length: "14.0 mm" +iso: "100" +shutter_speed: "145" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/howth-horse.md b/site/content/photos/howth-horse.md new file mode 100644 index 0000000..0db6233 --- /dev/null +++ b/site/content/photos/howth-horse.md @@ -0,0 +1,32 @@ +--- +title: "howth-horse" +type: "upload" +description: "TBC" +date: "2004-01-28 14:31:38+00:00" +album: "nature" +filename: "howth-horse.md" +series: "" +cl_public_id: "nature/howth-horse" +cl_version: 1497005067 +format: "tiff" +bytes: 4623588 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "4.0" +focal_length: "18.2 mm" +iso: "200" +shutter_speed: "1/294" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/howth_pier.md b/site/content/photos/howth_pier.md new file mode 100644 index 0000000..4a30e4f --- /dev/null +++ b/site/content/photos/howth_pier.md @@ -0,0 +1,32 @@ +--- +title: "howth_pier" +type: "upload" +description: "TBC" +date: "2015-12-27 16:12:23" +album: "landscapes" +filename: "howth-pier.md" +series: "" +cl_public_id: "landscapes/howth_pier" +cl_version: 1497004696 +format: "tiff" +bytes: 4762184 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: undefined +focal_length: "24.0 mm" +iso: "320" +shutter_speed: undefined +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Manual" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/ice-lake-charlottenburg.md b/site/content/photos/ice-lake-charlottenburg.md new file mode 100644 index 0000000..b63100e --- /dev/null +++ b/site/content/photos/ice-lake-charlottenburg.md @@ -0,0 +1,32 @@ +--- +title: "ice-lake-charlottenburg" +type: "upload" +description: "TBC" +date: "2017-01-22 16:37:11+00:00" +album: "city" +filename: "ice-lake-charlottenburg.md" +series: "" +cl_public_id: "city/ice-lake-charlottenburg" +cl_version: 1497000307 +format: "tiff" +bytes: 4422852 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.6" +focal_length: "16.0 mm" +iso: "100" +shutter_speed: "1/160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4900" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/jonathan-cliffs.md b/site/content/photos/jonathan-cliffs.md new file mode 100644 index 0000000..76a783a --- /dev/null +++ b/site/content/photos/jonathan-cliffs.md @@ -0,0 +1,32 @@ +--- +title: "jonathan-cliffs" +type: "upload" +description: "TBC" +date: "2016-08-01 18:25:05+00:00" +album: "people" +filename: "jonathan-cliffs.md" +series: "" +cl_public_id: "people/jonathan-cliffs" +cl_version: 1497005430 +format: "tiff" +bytes: 4324200 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "70.0 mm" +iso: "400" +shutter_speed: "1/3200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/jonathan-mum.md b/site/content/photos/jonathan-mum.md new file mode 100644 index 0000000..8c0b67e --- /dev/null +++ b/site/content/photos/jonathan-mum.md @@ -0,0 +1,32 @@ +--- +title: "jonathan-mum" +type: "upload" +description: "TBC" +date: "2016-08-01 18:47:48+00:00" +album: "people" +filename: "jonathan-mum.md" +series: "" +cl_public_id: "people/jonathan-mum" +cl_version: 1497005451 +format: "tiff" +bytes: 4551212 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "400" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/jonathan.md b/site/content/photos/jonathan.md new file mode 100644 index 0000000..49329e1 --- /dev/null +++ b/site/content/photos/jonathan.md @@ -0,0 +1,32 @@ +--- +title: "jonathan" +type: "upload" +description: "TBC" +date: "2016-08-01 18:03:00+00:00" +album: "people" +filename: "jonathan.md" +series: "" +cl_public_id: "people/jonathan" +cl_version: 1497005446 +format: "tiff" +bytes: 2554920 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "640" +shutter_speed: "1/4000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/jumper.md b/site/content/photos/jumper.md new file mode 100644 index 0000000..500e74a --- /dev/null +++ b/site/content/photos/jumper.md @@ -0,0 +1,32 @@ +--- +title: "jumper" +type: "upload" +description: "TBC" +date: "2016-08-27 19:48:57+00:00" +album: "people" +filename: "jumper.md" +series: "" +cl_public_id: "people/jumper" +cl_version: 1497005446 +format: "tiff" +bytes: 1547556 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "24.0 mm" +iso: "1250" +shutter_speed: "1/250" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kaisers.md b/site/content/photos/kaisers.md new file mode 100644 index 0000000..6b03447 --- /dev/null +++ b/site/content/photos/kaisers.md @@ -0,0 +1,32 @@ +--- +title: "kaisers" +type: "upload" +description: "TBC" +date: "2016-07-19 22:17:57+00:00" +album: "experimental" +filename: "kaisers.md" +series: "" +cl_public_id: "experimental/kaisers" +cl_version: 1497004538 +format: "tiff" +bytes: 1913652 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "640" +shutter_speed: "1/200" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karl-mark-allee-shops.md b/site/content/photos/karl-mark-allee-shops.md new file mode 100644 index 0000000..2452f3d --- /dev/null +++ b/site/content/photos/karl-mark-allee-shops.md @@ -0,0 +1,32 @@ +--- +title: "karl-mark-allee-shops" +type: "upload" +description: "TBC" +date: "2016-12-29 16:18:06+00:00" +album: "city" +filename: "karl-mark-allee-shops.md" +series: "" +cl_public_id: "city/karl-mark-allee-shops" +cl_version: 1497000321 +format: "tiff" +bytes: 4217980 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.0" +focal_length: "70.0 mm" +iso: "200" +shutter_speed: "1/30" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4350" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karl-marx-alle-anna.md b/site/content/photos/karl-marx-alle-anna.md new file mode 100644 index 0000000..b13d7c4 --- /dev/null +++ b/site/content/photos/karl-marx-alle-anna.md @@ -0,0 +1,32 @@ +--- +title: "karl-marx-alle-anna" +type: "upload" +description: "TBC" +date: "2016-12-29 16:22:42+00:00" +album: "city" +filename: "karl-marx-alle-anna.md" +series: "" +cl_public_id: "city/karl-marx-alle-anna" +cl_version: 1497000313 +format: "tiff" +bytes: 1675292 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "24.0 mm" +iso: "200" +shutter_speed: "1/100" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5350" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karl-marx-allee.md b/site/content/photos/karl-marx-allee.md new file mode 100644 index 0000000..6d9d0b6 --- /dev/null +++ b/site/content/photos/karl-marx-allee.md @@ -0,0 +1,32 @@ +--- +title: "karl-marx-allee" +type: "upload" +description: "TBC" +date: "2016-12-29 16:29:53" +album: "experimental" +filename: "karl-marx-allee.md" +series: "" +cl_public_id: "experimental/karl-marx-allee" +cl_version: 1497004567 +format: "tiff" +bytes: 7022680 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: undefined +focal_length: "24.0 mm" +iso: "200" +shutter_speed: undefined +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "-6.0" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karneval-der-kulturen-dress.md b/site/content/photos/karneval-der-kulturen-dress.md new file mode 100644 index 0000000..5585f40 --- /dev/null +++ b/site/content/photos/karneval-der-kulturen-dress.md @@ -0,0 +1,32 @@ +--- +title: "karneval-der-kulturen-dress" +type: "upload" +description: "TBC" +date: "2014-06-07 17:29:11+00:00" +album: "events" +filename: "karneval-der-kulturen-dress.md" +series: "" +cl_public_id: "events/karneval-der-kulturen-dress" +cl_version: 1497002574 +format: "tiff" +bytes: 1946768 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karneval-der-kulturen-group.md b/site/content/photos/karneval-der-kulturen-group.md new file mode 100644 index 0000000..cb74f91 --- /dev/null +++ b/site/content/photos/karneval-der-kulturen-group.md @@ -0,0 +1,32 @@ +--- +title: "karneval-der-kulturen-group" +type: "upload" +description: "TBC" +date: "2014-06-07 17:27:55+00:00" +album: "people" +filename: "karneval-der-kulturen-group.md" +series: "" +cl_public_id: "people/karneval-der-kulturen-group" +cl_version: 1497005458 +format: "tiff" +bytes: 5890132 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/2000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5600" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karneval-der-kulturen-hat.md b/site/content/photos/karneval-der-kulturen-hat.md new file mode 100644 index 0000000..1179842 --- /dev/null +++ b/site/content/photos/karneval-der-kulturen-hat.md @@ -0,0 +1,32 @@ +--- +title: "karneval-der-kulturen-hat" +type: "upload" +description: "TBC" +date: "2014-06-07 19:33:50+00:00" +album: "events" +filename: "karneval-der-kulturen-hat.md" +series: "" +cl_public_id: "events/karneval-der-kulturen-hat" +cl_version: 1497002589 +format: "tiff" +bytes: 4192532 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/500" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karneval-der-kulturen-mojito.md b/site/content/photos/karneval-der-kulturen-mojito.md new file mode 100644 index 0000000..dd365c7 --- /dev/null +++ b/site/content/photos/karneval-der-kulturen-mojito.md @@ -0,0 +1,32 @@ +--- +title: "karneval-der-kulturen-mojito" +type: "upload" +description: "TBC" +date: "2014-06-07 16:56:16+00:00" +album: "events" +filename: "karneval-der-kulturen-mojito.md" +series: "" +cl_public_id: "events/karneval-der-kulturen-mojito" +cl_version: 1497002606 +format: "tiff" +bytes: 6706188 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/320" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5850" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karneval-der-kulturen-people.md b/site/content/photos/karneval-der-kulturen-people.md new file mode 100644 index 0000000..5b7b740 --- /dev/null +++ b/site/content/photos/karneval-der-kulturen-people.md @@ -0,0 +1,32 @@ +--- +title: "karneval-der-kulturen-people" +type: "upload" +description: "TBC" +date: "2014-06-07 19:27:02+00:00" +album: "events" +filename: "karneval-der-kulturen-people.md" +series: "" +cl_public_id: "events/karneval-der-kulturen-people" +cl_version: 1497002612 +format: "tiff" +bytes: 5182544 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/800" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karneval-der-kulturen-sandals.md b/site/content/photos/karneval-der-kulturen-sandals.md new file mode 100644 index 0000000..36689e9 --- /dev/null +++ b/site/content/photos/karneval-der-kulturen-sandals.md @@ -0,0 +1,32 @@ +--- +title: "karneval-der-kulturen-sandals" +type: "upload" +description: "TBC" +date: "2014-06-07 19:29:26+00:00" +album: "events" +filename: "karneval-der-kulturen-sandals.md" +series: "" +cl_public_id: "events/karneval-der-kulturen-sandals" +cl_version: 1497002608 +format: "tiff" +bytes: 5003104 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/karneval-der-kulturen.md b/site/content/photos/karneval-der-kulturen.md new file mode 100644 index 0000000..ebf52b7 --- /dev/null +++ b/site/content/photos/karneval-der-kulturen.md @@ -0,0 +1,32 @@ +--- +title: "karneval-der-kulturen" +type: "upload" +description: "TBC" +date: "2014-06-07 17:27:33+00:00" +album: "people" +filename: "karneval-der-kulturen.md" +series: "" +cl_public_id: "people/karneval-der-kulturen" +cl_version: 1497005449 +format: "tiff" +bytes: 5646964 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/320" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kerry-cottage-long-exposure.md b/site/content/photos/kerry-cottage-long-exposure.md new file mode 100644 index 0000000..8c66ae2 --- /dev/null +++ b/site/content/photos/kerry-cottage-long-exposure.md @@ -0,0 +1,32 @@ +--- +title: "kerry-cottage-long-exposure" +type: "upload" +description: "TBC" +date: "2011-12-10 00:53:56+00:00" +album: "landscapes" +filename: "kerry-cottage-long-exposure.md" +series: "" +cl_public_id: "landscapes/kerry-cottage-long-exposure" +cl_version: 1497004700 +format: "tiff" +bytes: 5397644 +width: 2559 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "2.8" +focal_length: "11.0 mm" +iso: "100" +shutter_speed: "169" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kerry-road-horse.md b/site/content/photos/kerry-road-horse.md new file mode 100644 index 0000000..3c58b6c --- /dev/null +++ b/site/content/photos/kerry-road-horse.md @@ -0,0 +1,32 @@ +--- +title: "kerry-road-horse" +type: "upload" +description: "TBC" +date: "2011-12-10 17:06:47+00:00" +album: "nature" +filename: "kerry-road-horse.md" +series: "" +cl_public_id: "nature/kerry-road-horse" +cl_version: 1497005046 +format: "tiff" +bytes: 2077744 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.8" +focal_length: "35.0 mm" +iso: "1000" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "7200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kerry-sheep.md b/site/content/photos/kerry-sheep.md new file mode 100644 index 0000000..88a1345 --- /dev/null +++ b/site/content/photos/kerry-sheep.md @@ -0,0 +1,32 @@ +--- +title: "kerry-sheep" +type: "upload" +description: "TBC" +date: "2011-03-28 15:34:54+00:00" +album: "landscapes" +filename: "kerry-sheep.md" +series: "" +cl_public_id: "landscapes/kerry-sheep" +cl_version: 1497004755 +format: "tiff" +bytes: 8120268 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "8.0" +focal_length: "150.0 mm" +iso: "200" +shutter_speed: "1/320" +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "As Shot" +colour_temp: "4700" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kino-international-berlin.md b/site/content/photos/kino-international-berlin.md new file mode 100644 index 0000000..b9be619 --- /dev/null +++ b/site/content/photos/kino-international-berlin.md @@ -0,0 +1,32 @@ +--- +title: "kino-international-berlin" +type: "upload" +description: "TBC" +date: "2016-12-29 16:28:05+00:00" +album: "city" +filename: "kino-international-berlin.md" +series: "" +cl_public_id: "city/kino-international-berlin" +cl_version: 1497000398 +format: "tiff" +bytes: 7339308 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "24.0 mm" +iso: "200" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5450" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kitesurfer-tempelhof.md b/site/content/photos/kitesurfer-tempelhof.md new file mode 100644 index 0000000..93d0df7 --- /dev/null +++ b/site/content/photos/kitesurfer-tempelhof.md @@ -0,0 +1,32 @@ +--- +title: "kitesurfer-tempelhof" +type: "upload" +description: "TBC" +date: "2014-01-25 16:29:28+00:00" +album: "experimental" +filename: "kitesurfer-tempelhof.md" +series: "" +cl_public_id: "experimental/kitesurfer-tempelhof" +cl_version: 1497004563 +format: "tiff" +bytes: 6575408 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "8.0" +focal_length: "160.0 mm" +iso: "100" +shutter_speed: "1/400" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4900" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kluner-kranich-visitors.md b/site/content/photos/kluner-kranich-visitors.md new file mode 100644 index 0000000..b743bf9 --- /dev/null +++ b/site/content/photos/kluner-kranich-visitors.md @@ -0,0 +1,32 @@ +--- +title: "kluner-kranich-visitors" +type: "upload" +description: "TBC" +date: "2016-08-25 20:24:08+00:00" +album: "people" +filename: "kluner-kranich-visitors.md" +series: "" +cl_public_id: "people/kluner-kranich-visitors" +cl_version: 1497005495 +format: "tiff" +bytes: 6423308 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "24.0 mm" +iso: "1250" +shutter_speed: "1/40" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/klunkerkranich-chairs.md b/site/content/photos/klunkerkranich-chairs.md new file mode 100644 index 0000000..29a535b --- /dev/null +++ b/site/content/photos/klunkerkranich-chairs.md @@ -0,0 +1,32 @@ +--- +title: "klunkerkranich-chairs" +type: "upload" +description: "TBC" +date: "2016-08-25 20:03:18+00:00" +album: "city" +filename: "klunkerkranich-chairs.md" +series: "" +cl_public_id: "city/klunkerkranich-chairs" +cl_version: 1497000323 +format: "tiff" +bytes: 2059568 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "640" +shutter_speed: "1/640" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/klunkerkranich-fernsehturm.md b/site/content/photos/klunkerkranich-fernsehturm.md new file mode 100644 index 0000000..566b16f --- /dev/null +++ b/site/content/photos/klunkerkranich-fernsehturm.md @@ -0,0 +1,32 @@ +--- +title: "klunkerkranich-fernsehturm" +type: "upload" +description: "TBC" +date: "2016-08-25 20:07:36+00:00" +album: "city" +filename: "klunkerkranich-fernsehturm.md" +series: "" +cl_public_id: "city/klunkerkranich-fernsehturm" +cl_version: 1497000318 +format: "tiff" +bytes: 1506160 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "70.0 mm" +iso: "640" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5000" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/klunkerkranich.md b/site/content/photos/klunkerkranich.md new file mode 100644 index 0000000..3a52129 --- /dev/null +++ b/site/content/photos/klunkerkranich.md @@ -0,0 +1,32 @@ +--- +title: "klunkerkranich" +type: "upload" +description: "TBC" +date: "2016-08-25 19:56:49+00:00" +album: "experimental" +filename: "klunkerkranich.md" +series: "" +cl_public_id: "experimental/klunkerkranich" +cl_version: 1497004562 +format: "tiff" +bytes: 3296944 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "66.0 mm" +iso: "50" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md b/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md new file mode 100644 index 0000000..9dafeb8 --- /dev/null +++ b/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md @@ -0,0 +1,32 @@ +--- +title: "knonigs-wusterhausen-ruairi-fionn" +type: "upload" +description: "TBC" +date: "2016-08-27 19:33:21+00:00" +album: "people" +filename: "knonigs-wusterhausen-ruairi-fionn.md" +series: "" +cl_public_id: "people/knonigs-wusterhausen-ruairi-fionn" +cl_version: 1497005474 +format: "tiff" +bytes: 2702220 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "31.0 mm" +iso: "320" +shutter_speed: "1/20" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/konigs-wusterhausen.md b/site/content/photos/konigs-wusterhausen.md new file mode 100644 index 0000000..12abedf --- /dev/null +++ b/site/content/photos/konigs-wusterhausen.md @@ -0,0 +1,32 @@ +--- +title: "konigs-wusterhausen" +type: "upload" +description: "TBC" +date: "2016-08-27 21:38:33+00:00" +album: "experimental" +filename: "konigs-wusterhausen.md" +series: "" +cl_public_id: "experimental/konigs-wusterhausen" +cl_version: 1497004570 +format: "tiff" +bytes: 4941524 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "1600" +shutter_speed: "1/13" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "2500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kudamm-christmas.md b/site/content/photos/kudamm-christmas.md new file mode 100644 index 0000000..1073c3c --- /dev/null +++ b/site/content/photos/kudamm-christmas.md @@ -0,0 +1,32 @@ +--- +title: "kudamm-christmas" +type: "upload" +description: "TBC" +date: "2016-12-18 18:23:54+00:00" +album: "city" +filename: "kudamm-christmas.md" +series: "" +cl_public_id: "city/kudamm-christmas" +cl_version: 1497000346 +format: "tiff" +bytes: 8624884 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "1600" +shutter_speed: "1/160" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3450" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kudamm-kiosk.md b/site/content/photos/kudamm-kiosk.md new file mode 100644 index 0000000..fba9968 --- /dev/null +++ b/site/content/photos/kudamm-kiosk.md @@ -0,0 +1,32 @@ +--- +title: "kudamm-kiosk" +type: "upload" +description: "TBC" +date: "2016-12-18 18:31:44+00:00" +album: "city" +filename: "kudamm-kiosk.md" +series: "" +cl_public_id: "city/kudamm-kiosk" +cl_version: 1497000333 +format: "tiff" +bytes: 2757784 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "24.0 mm" +iso: "1600" +shutter_speed: "1/50" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3600" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/kunst-museum.md b/site/content/photos/kunst-museum.md new file mode 100644 index 0000000..5988a57 --- /dev/null +++ b/site/content/photos/kunst-museum.md @@ -0,0 +1,32 @@ +--- +title: "kunst-museum" +type: "upload" +description: "TBC" +date: "2013-02-17 16:36:32+00:00" +album: "experimental" +filename: "kunst-museum.md" +series: "" +cl_public_id: "experimental/kunst-museum" +cl_version: 1497004571 +format: "tiff" +bytes: 6836072 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.0" +focal_length: "35.0 mm" +iso: "800" +shutter_speed: "1/160" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3350" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/lahu-village-cat.md b/site/content/photos/lahu-village-cat.md new file mode 100644 index 0000000..b5575ae --- /dev/null +++ b/site/content/photos/lahu-village-cat.md @@ -0,0 +1,32 @@ +--- +title: "lahu-village-cat" +type: "upload" +description: "TBC" +date: "2006-07-24 07:48:46+00:00" +album: "nature" +filename: "lahu-village-cat.md" +series: "" +cl_public_id: "nature/lahu-village-cat" +cl_version: 1497005082 +format: "tiff" +bytes: 5039040 +width: 1920 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "7.8 mm" +iso: "200" +shutter_speed: "1/104" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/lake.md b/site/content/photos/lake.md new file mode 100644 index 0000000..658c103 --- /dev/null +++ b/site/content/photos/lake.md @@ -0,0 +1,32 @@ +--- +title: "lake" +type: "upload" +description: "TBC" +date: "2017-04-14 19:48:07" +album: "landscapes" +filename: "lake.md" +series: "" +cl_public_id: "landscapes/lake" +cl_version: 1497004718 +format: "tiff" +bytes: 2797356 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: undefined +focal_length: "16.0 mm" +iso: "100" +shutter_speed: undefined +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "2.0" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/lakes-killarney.md b/site/content/photos/lakes-killarney.md new file mode 100644 index 0000000..e5875af --- /dev/null +++ b/site/content/photos/lakes-killarney.md @@ -0,0 +1,32 @@ +--- +title: "lakes-killarney" +type: "upload" +description: "TBC" +date: "2012-04-01 19:23:21" +album: "landscapes" +filename: "lakes-killarney.md" +series: "" +cl_public_id: "landscapes/lakes-killarney" +cl_version: 1497004733 +format: "tiff" +bytes: 7005952 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: undefined +focal_length: "35.0 mm" +iso: "200" +shutter_speed: undefined +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Manual" +colour_temp: "-6.0" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "No lens info" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/lakeside-konigs-wusterhausen.md b/site/content/photos/lakeside-konigs-wusterhausen.md new file mode 100644 index 0000000..220464e --- /dev/null +++ b/site/content/photos/lakeside-konigs-wusterhausen.md @@ -0,0 +1,32 @@ +--- +title: "lakeside-konigs-wusterhausen" +type: "upload" +description: "TBC" +date: "2016-08-27 20:13:48+00:00" +album: "people" +filename: "lakeside-konigs-wusterhausen.md" +series: "" +cl_public_id: "people/lakeside-konigs-wusterhausen" +cl_version: 1497005463 +format: "tiff" +bytes: 1876348 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "1250" +shutter_speed: "1/100" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6650" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/leaves-water.md b/site/content/photos/leaves-water.md new file mode 100644 index 0000000..95f255b --- /dev/null +++ b/site/content/photos/leaves-water.md @@ -0,0 +1,32 @@ +--- +title: "leaves-water" +type: "upload" +description: "TBC" +date: "2017-04-01 15:23:22+00:00" +album: "nature" +filename: "leaves-water.md" +series: "" +cl_public_id: "nature/leaves-water" +cl_version: 1497005082 +format: "tiff" +bytes: 4251628 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "70.0 mm" +iso: "100" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/li-behind-paper.md b/site/content/photos/li-behind-paper.md new file mode 100644 index 0000000..164fc94 --- /dev/null +++ b/site/content/photos/li-behind-paper.md @@ -0,0 +1,32 @@ +--- +title: "li-behind-paper" +type: "upload" +description: "TBC" +date: "2013-02-15 14:05:50+00:00" +album: "people" +filename: "li-behind-paper.md" +series: "" +cl_public_id: "people/li-behind-paper" +cl_version: 1497005506 +format: "tiff" +bytes: 6089496 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.2" +focal_length: "35.0 mm" +iso: "640" +shutter_speed: "1/40" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3600" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/li-tempelhof.md b/site/content/photos/li-tempelhof.md new file mode 100644 index 0000000..f42a108 --- /dev/null +++ b/site/content/photos/li-tempelhof.md @@ -0,0 +1,32 @@ +--- +title: "li-tempelhof" +type: "upload" +description: "TBC" +date: "2013-02-15 14:51:17+00:00" +album: "people" +filename: "li-tempelhof.md" +series: "" +cl_public_id: "people/li-tempelhof" +cl_version: 1497005464 +format: "tiff" +bytes: 5042088 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/40" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/li.md b/site/content/photos/li.md new file mode 100644 index 0000000..91d7e5c --- /dev/null +++ b/site/content/photos/li.md @@ -0,0 +1,32 @@ +--- +title: "li" +type: "upload" +description: "TBC" +date: "2014-06-28 18:21:16+00:00" +album: "people" +filename: "li.md" +series: "" +cl_public_id: "people/li" +cl_version: 1497005501 +format: "tiff" +bytes: 5056044 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/look-beautiful-tempelhof.md b/site/content/photos/look-beautiful-tempelhof.md new file mode 100644 index 0000000..c9dca24 --- /dev/null +++ b/site/content/photos/look-beautiful-tempelhof.md @@ -0,0 +1,32 @@ +--- +title: "look-beautiful-tempelhof" +type: "upload" +description: "TBC" +date: "2013-02-15 15:08:56+00:00" +album: "city" +filename: "look-beautiful-tempelhof.md" +series: "" +cl_public_id: "city/look-beautiful-tempelhof" +cl_version: 1497000456 +format: "tiff" +bytes: 7387832 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/60" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5000" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/lunchtime.md b/site/content/photos/lunchtime.md new file mode 100644 index 0000000..6efd7ac --- /dev/null +++ b/site/content/photos/lunchtime.md @@ -0,0 +1,32 @@ +--- +title: "lunchtime" +type: "upload" +description: "TBC" +date: "2004-01-28 13:54:22+00:00" +album: "people" +filename: "lunchtime.md" +series: "" +cl_public_id: "people/lunchtime" +cl_version: 1497005477 +format: "tiff" +bytes: 2562124 +width: 1916 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "7.8 mm" +iso: "200" +shutter_speed: "1/30" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/marienfeld-church.md b/site/content/photos/marienfeld-church.md new file mode 100644 index 0000000..3376ce4 --- /dev/null +++ b/site/content/photos/marienfeld-church.md @@ -0,0 +1,32 @@ +--- +title: "marienfeld-church" +type: "upload" +description: "TBC" +date: "2016-03-27 13:42:25+00:00" +album: "city" +filename: "marienfeld-church.md" +series: "" +cl_public_id: "city/marienfeld-church" +cl_version: 1497000338 +format: "tiff" +bytes: 2556628 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "800" +shutter_speed: "1/50" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/marienfield-church-ceiling.md b/site/content/photos/marienfield-church-ceiling.md new file mode 100644 index 0000000..270a571 --- /dev/null +++ b/site/content/photos/marienfield-church-ceiling.md @@ -0,0 +1,32 @@ +--- +title: "marienfield-church-ceiling" +type: "upload" +description: "TBC" +date: "2016-03-27 13:43:10+00:00" +album: "city" +filename: "marienfield-church-ceiling.md" +series: "" +cl_public_id: "city/marienfield-church-ceiling" +cl_version: 1497000360 +format: "tiff" +bytes: 5912972 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "800" +shutter_speed: "1/80" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5150" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/markt-spiegel-anna.md b/site/content/photos/markt-spiegel-anna.md new file mode 100644 index 0000000..1258318 --- /dev/null +++ b/site/content/photos/markt-spiegel-anna.md @@ -0,0 +1,32 @@ +--- +title: "markt-spiegel-anna" +type: "upload" +description: "TBC" +date: "2014-04-20 15:54:33+00:00" +album: "experimental" +filename: "markt-spiegel-anna.md" +series: "" +cl_public_id: "experimental/markt-spiegel-anna" +cl_version: 1497004404 +format: "tiff" +bytes: 3983996 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "100" +shutter_speed: "1/3200" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/messe-nord-race-terrace.md b/site/content/photos/messe-nord-race-terrace.md new file mode 100644 index 0000000..1d46791 --- /dev/null +++ b/site/content/photos/messe-nord-race-terrace.md @@ -0,0 +1,32 @@ +--- +title: "messe-nord-race-terrace" +type: "upload" +description: "TBC" +date: "2016-12-09 13:15:08+00:00" +album: "city" +filename: "messe-nord-race-terrace.md" +series: "" +cl_public_id: "city/messe-nord-race-terrace" +cl_version: 1497000340 +format: "tiff" +bytes: 1619336 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "38.0 mm" +iso: "320" +shutter_speed: "1/25" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5150" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/meteor-meetup.md b/site/content/photos/meteor-meetup.md new file mode 100644 index 0000000..9594e42 --- /dev/null +++ b/site/content/photos/meteor-meetup.md @@ -0,0 +1,32 @@ +--- +title: "meteor-meetup" +type: "upload" +description: "TBC" +date: "2013-11-27 22:21:41+00:00" +album: "events" +filename: "meteor-meetup.md" +series: "" +cl_public_id: "events/meteor-meetup" +cl_version: 1497002599 +format: "tiff" +bytes: 2004632 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "98.0 mm" +iso: "2000" +shutter_speed: "1/400" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/mick-beach.md b/site/content/photos/mick-beach.md new file mode 100644 index 0000000..b625c92 --- /dev/null +++ b/site/content/photos/mick-beach.md @@ -0,0 +1,32 @@ +--- +title: "mick-beach" +type: "upload" +description: "TBC" +date: "2016-07-31 13:47:33+00:00" +album: "people" +filename: "mick-beach.md" +series: "" +cl_public_id: "people/mick-beach" +cl_version: 1497005475 +format: "tiff" +bytes: 2729756 +width: 1115 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "16.0 mm" +iso: "200" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/mixing-desk.md b/site/content/photos/mixing-desk.md new file mode 100644 index 0000000..0ed65d0 --- /dev/null +++ b/site/content/photos/mixing-desk.md @@ -0,0 +1,32 @@ +--- +title: "mixing-desk" +type: "upload" +description: "TBC" +date: "2012-01-26 18:49:27+00:00" +album: "music" +filename: "mixing-desk.md" +series: "" +cl_public_id: "music/mixing-desk" +cl_version: 1497004854 +format: "tiff" +bytes: 6200888 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "22.0" +focal_length: "50.0 mm" +iso: "800" +shutter_speed: "1/40" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "0mm f/0" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/model-airplane.md b/site/content/photos/model-airplane.md new file mode 100644 index 0000000..a531bad --- /dev/null +++ b/site/content/photos/model-airplane.md @@ -0,0 +1,32 @@ +--- +title: "model-airplane" +type: "upload" +description: "TBC" +date: "2013-01-26 12:33:28+00:00" +album: "people" +filename: "model-airplane.md" +series: "" +cl_public_id: "people/model-airplane" +cl_version: 1497005510 +format: "tiff" +bytes: 6581212 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "70.0 mm" +iso: "200" +shutter_speed: "1/2000" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "70-200mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/mossy-drums.md b/site/content/photos/mossy-drums.md new file mode 100644 index 0000000..d01768d --- /dev/null +++ b/site/content/photos/mossy-drums.md @@ -0,0 +1,32 @@ +--- +title: "mossy-drums" +type: "upload" +description: "TBC" +date: "2013-03-02 15:22:06+00:00" +album: "experimental" +filename: "mossy-drums.md" +series: "" +cl_public_id: "experimental/mossy-drums" +cl_version: 1497004402 +format: "tiff" +bytes: 4117932 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "35.0 mm" +iso: "640" +shutter_speed: "1/80" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3700" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/mossy-laura.md b/site/content/photos/mossy-laura.md new file mode 100644 index 0000000..c723002 --- /dev/null +++ b/site/content/photos/mossy-laura.md @@ -0,0 +1,32 @@ +--- +title: "mossy-laura" +type: "upload" +description: "TBC" +date: "2011-09-24 15:39:11+00:00" +album: "people" +filename: "mossy-laura.md" +series: "" +cl_public_id: "people/mossy-laura" +cl_version: 1497005488 +format: "tiff" +bytes: 3005136 +width: 954 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "11.0 mm" +iso: "8000" +shutter_speed: "1/60" +metering: "Center-weighted average" +flash: "On, Return detected" +white_balance: "Custom" +colour_temp: "6050" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/mossy-nolan.md b/site/content/photos/mossy-nolan.md new file mode 100644 index 0000000..acc24fa --- /dev/null +++ b/site/content/photos/mossy-nolan.md @@ -0,0 +1,32 @@ +--- +title: "mossy-nolan" +type: "upload" +description: "TBC" +date: "2011-09-25 15:26:48+00:00" +album: "music" +filename: "mossy-nolan.md" +series: "" +cl_public_id: "music/mossy-nolan" +cl_version: 1497004867 +format: "tiff" +bytes: 5653224 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "135.0 mm" +iso: "1600" +shutter_speed: "1/80" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2000" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/motel-avus.md b/site/content/photos/motel-avus.md new file mode 100644 index 0000000..a122875 --- /dev/null +++ b/site/content/photos/motel-avus.md @@ -0,0 +1,32 @@ +--- +title: "motel-avus" +type: "upload" +description: "TBC" +date: "2016-12-09 13:11:57+00:00" +album: "city" +filename: "motel-avus.md" +series: "" +cl_public_id: "city/motel-avus" +cl_version: 1497000363 +format: "tiff" +bytes: 5448948 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.6" +focal_length: "24.0 mm" +iso: "250" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5000" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/northwest-200.md b/site/content/photos/northwest-200.md new file mode 100644 index 0000000..915a71a --- /dev/null +++ b/site/content/photos/northwest-200.md @@ -0,0 +1,32 @@ +--- +title: "northwest-200" +type: "upload" +description: "TBC" +date: "2012-05-19 16:50:39+00:00" +album: "events" +filename: "northwest-200.md" +series: "" +cl_public_id: "events/northwest-200" +cl_version: 1497002610 +format: "tiff" +bytes: 5114172 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Shutter speed priority AE" +aperture: "9.0" +focal_length: "200.0 mm" +iso: "100" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "No colour temperature" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "70-200mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/norwegian-actress-forest-shoot.md b/site/content/photos/norwegian-actress-forest-shoot.md new file mode 100644 index 0000000..ade1548 --- /dev/null +++ b/site/content/photos/norwegian-actress-forest-shoot.md @@ -0,0 +1,32 @@ +--- +title: "norwegian-actress-forest-shoot" +type: "upload" +description: "TBC" +date: "2014-04-19 18:18:09+00:00" +album: "people" +filename: "norwegian-actress-forest-shoot.md" +series: "" +cl_public_id: "people/norwegian-actress-forest-shoot" +cl_version: 1497005493 +format: "tiff" +bytes: 2285596 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "90.0 mm" +iso: "100" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "6300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/norwegian-actress-profile.md b/site/content/photos/norwegian-actress-profile.md new file mode 100644 index 0000000..1aac096 --- /dev/null +++ b/site/content/photos/norwegian-actress-profile.md @@ -0,0 +1,32 @@ +--- +title: "norwegian-actress-profile" +type: "upload" +description: "TBC" +date: "2014-04-19 18:52:22+00:00" +album: "people" +filename: "norwegian-actress-profile.md" +series: "" +cl_public_id: "people/norwegian-actress-profile" +cl_version: 1497005500 +format: "tiff" +bytes: 1996236 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "200.0 mm" +iso: "640" +shutter_speed: "1/1600" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/orb.md b/site/content/photos/orb.md new file mode 100644 index 0000000..98bf829 --- /dev/null +++ b/site/content/photos/orb.md @@ -0,0 +1,32 @@ +--- +title: "orb" +type: "upload" +description: "TBC" +date: "2004-01-29 15:53:40+00:00" +album: "experimental" +filename: "orb.md" +series: "" +cl_public_id: "experimental/orb" +cl_version: 1497004642 +format: "tiff" +bytes: 2956480 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "7.8 mm" +iso: "200" +shutter_speed: "1/6" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/overcooked_anna.md b/site/content/photos/overcooked_anna.md new file mode 100644 index 0000000..2769c51 --- /dev/null +++ b/site/content/photos/overcooked_anna.md @@ -0,0 +1,32 @@ +--- +title: "overcooked_anna" +type: "upload" +description: "TBC" +date: "2016-07-19 22:06:51+00:00" +album: "people" +filename: "overcooked-anna.md" +series: "" +cl_public_id: "people/overcooked_anna" +cl_version: 1497005503 +format: "tiff" +bytes: 1219184 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "640" +shutter_speed: "1/15" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/pai-cat.md b/site/content/photos/pai-cat.md new file mode 100644 index 0000000..c6948be --- /dev/null +++ b/site/content/photos/pai-cat.md @@ -0,0 +1,32 @@ +--- +title: "pai-cat" +type: "upload" +description: "TBC" +date: "2006-08-09 01:30:52+00:00" +album: "nature" +filename: "pai-cat.md" +series: "" +cl_public_id: "nature/pai-cat" +cl_version: 1497005056 +format: "tiff" +bytes: 4622984 +width: 1920 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "3.2" +focal_length: "7.8 mm" +iso: "200" +shutter_speed: "1/137" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/pai-parrot.md b/site/content/photos/pai-parrot.md new file mode 100644 index 0000000..aa4da49 --- /dev/null +++ b/site/content/photos/pai-parrot.md @@ -0,0 +1,32 @@ +--- +title: "pai-parrot" +type: "upload" +description: "TBC" +date: "2006-07-29 00:26:23+00:00" +album: "nature" +filename: "pai-parrot.md" +series: "" +cl_public_id: "nature/pai-parrot" +cl_version: 1497005080 +format: "tiff" +bytes: 4747924 +width: 1920 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "3.2" +focal_length: "7.8 mm" +iso: "200" +shutter_speed: "1/158" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/paul-and-luke.md b/site/content/photos/paul-and-luke.md new file mode 100644 index 0000000..93c51ec --- /dev/null +++ b/site/content/photos/paul-and-luke.md @@ -0,0 +1,32 @@ +--- +title: "paul-and-luke" +type: "upload" +description: "TBC" +date: "2015-12-25 15:04:08+00:00" +album: "people" +filename: "paul-and-luke.md" +series: "" +cl_public_id: "people/paul-and-luke" +cl_version: 1497005511 +format: "tiff" +bytes: 1695292 +width: 886 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "48.0 mm" +iso: "1250" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/paul-james-beach.md b/site/content/photos/paul-james-beach.md new file mode 100644 index 0000000..4dc9bf3 --- /dev/null +++ b/site/content/photos/paul-james-beach.md @@ -0,0 +1,32 @@ +--- +title: "paul-james-beach" +type: "upload" +description: "TBC" +date: "2016-07-31 13:45:33+00:00" +album: "people" +filename: "paul-james-beach.md" +series: "" +cl_public_id: "people/paul-james-beach" +cl_version: 1497005513 +format: "tiff" +bytes: 3076112 +width: 1352 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "11.0" +focal_length: "16.0 mm" +iso: "200" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4200" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/peter-coonan-redline.md b/site/content/photos/peter-coonan-redline.md new file mode 100644 index 0000000..f94d30f --- /dev/null +++ b/site/content/photos/peter-coonan-redline.md @@ -0,0 +1,32 @@ +--- +title: "peter-coonan-redline" +type: "upload" +description: "TBC" +date: "2012-01-13 15:33:03+00:00" +album: "people" +filename: "peter-coonan-redline.md" +series: "" +cl_public_id: "people/peter-coonan-redline" +cl_version: 1497005524 +format: "tiff" +bytes: 3699608 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.0" +focal_length: "18.0 mm" +iso: "400" +shutter_speed: "1/160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "7750" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/phi-phi-monkey.md b/site/content/photos/phi-phi-monkey.md new file mode 100644 index 0000000..7485707 --- /dev/null +++ b/site/content/photos/phi-phi-monkey.md @@ -0,0 +1,32 @@ +--- +title: "phi-phi-monkey" +type: "upload" +description: "TBC" +date: "2006-08-02 23:52:10+00:00" +album: "nature" +filename: "phi-phi-monkey.md" +series: "" +cl_public_id: "nature/phi-phi-monkey" +cl_version: 1497005102 +format: "tiff" +bytes: 5169292 +width: 1920 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "4.0" +focal_length: "7.8 mm" +iso: "200" +shutter_speed: "1/274" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/phil-bans-donegal.md b/site/content/photos/phil-bans-donegal.md new file mode 100644 index 0000000..b4491f1 --- /dev/null +++ b/site/content/photos/phil-bans-donegal.md @@ -0,0 +1,32 @@ +--- +title: "phil-bans-donegal" +type: "upload" +description: "TBC" +date: "2010-06-06 23:56:24+00:00" +album: "people" +filename: "phil-bans-donegal.md" +series: "" +cl_public_id: "people/phil-bans-donegal" +cl_version: 1497005521 +format: "tiff" +bytes: 4188284 +width: 2151 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "18.0 mm" +iso: "100" +shutter_speed: "1/60" +metering: "Spot" +flash: "Fired, Return detected" +white_balance: "Custom" +colour_temp: "6450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "18-55mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/phoenix-park-deer.md b/site/content/photos/phoenix-park-deer.md new file mode 100644 index 0000000..55f257f --- /dev/null +++ b/site/content/photos/phoenix-park-deer.md @@ -0,0 +1,32 @@ +--- +title: "phoenix-park-deer" +type: "upload" +description: "TBC" +date: "2013-01-26 12:08:33+00:00" +album: "nature" +filename: "phoenix-park-deer.md" +series: "" +cl_public_id: "nature/phoenix-park-deer" +cl_version: 1497005102 +format: "tiff" +bytes: 6595352 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "200.0 mm" +iso: "200" +shutter_speed: "1/320" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "70-200mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/phoenix-park-model-plane.md b/site/content/photos/phoenix-park-model-plane.md new file mode 100644 index 0000000..543541f --- /dev/null +++ b/site/content/photos/phoenix-park-model-plane.md @@ -0,0 +1,32 @@ +--- +title: "phoenix-park-model-plane" +type: "upload" +description: "TBC" +date: "2013-01-26 12:33:45+00:00" +album: "city" +filename: "phoenix-park-model-plane.md" +series: "" +cl_public_id: "city/phoenix-park-model-plane" +cl_version: 1497000364 +format: "tiff" +bytes: 3954552 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "200.0 mm" +iso: "200" +shutter_speed: "1/5000" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "70-200mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/phoenix-park-training.md b/site/content/photos/phoenix-park-training.md new file mode 100644 index 0000000..03ce6d8 --- /dev/null +++ b/site/content/photos/phoenix-park-training.md @@ -0,0 +1,32 @@ +--- +title: "phoenix-park-training" +type: "upload" +description: "TBC" +date: "2013-01-26 11:34:55+00:00" +album: "people" +filename: "phoenix-park-training.md" +series: "" +cl_public_id: "people/phoenix-park-training" +cl_version: 1497005559 +format: "tiff" +bytes: 4717212 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "200.0 mm" +iso: "200" +shutter_speed: "1/1600" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "70-200mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/photographer.md b/site/content/photos/photographer.md new file mode 100644 index 0000000..b337f05 --- /dev/null +++ b/site/content/photos/photographer.md @@ -0,0 +1,32 @@ +--- +title: "photographer" +type: "upload" +description: "TBC" +date: "2013-01-26 12:59:49+00:00" +album: "people" +filename: "photographer.md" +series: "" +cl_public_id: "people/photographer" +cl_version: 1497005559 +format: "tiff" +bytes: 7739396 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "200.0 mm" +iso: "200" +shutter_speed: "1/160" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5300" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "70-200mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/plant-labels.md b/site/content/photos/plant-labels.md new file mode 100644 index 0000000..3d691f7 --- /dev/null +++ b/site/content/photos/plant-labels.md @@ -0,0 +1,32 @@ +--- +title: "plant-labels" +type: "upload" +description: "TBC" +date: "2017-04-01 15:33:03+00:00" +album: "nature" +filename: "plant-labels.md" +series: "" +cl_public_id: "nature/plant-labels" +cl_version: 1497005105 +format: "tiff" +bytes: 5659076 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "48.0 mm" +iso: "100" +shutter_speed: "1/1000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/poland-house.md b/site/content/photos/poland-house.md new file mode 100644 index 0000000..aae1d5c --- /dev/null +++ b/site/content/photos/poland-house.md @@ -0,0 +1,32 @@ +--- +title: "poland-house" +type: "upload" +description: "TBC" +date: "2014-03-09 16:30:31+00:00" +album: "city" +filename: "poland-house.md" +series: "" +cl_public_id: "city/poland-house" +cl_version: 1497000370 +format: "tiff" +bytes: 3217604 +width: 1370 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "4450" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/polizei.md b/site/content/photos/polizei.md new file mode 100644 index 0000000..21882c1 --- /dev/null +++ b/site/content/photos/polizei.md @@ -0,0 +1,32 @@ +--- +title: "polizei" +type: "upload" +description: "TBC" +date: "2014-06-28 21:55:54+00:00" +album: "city" +filename: "polizei.md" +series: "" +cl_public_id: "city/polizei" +cl_version: 1497000357 +format: "tiff" +bytes: 2332820 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "200.0 mm" +iso: "6400" +shutter_speed: "1/40" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/portugal-guitarist.md b/site/content/photos/portugal-guitarist.md new file mode 100644 index 0000000..aedf789 --- /dev/null +++ b/site/content/photos/portugal-guitarist.md @@ -0,0 +1,32 @@ +--- +title: "portugal-guitarist" +type: "upload" +description: "TBC" +date: "2012-05-15 19:30:52+00:00" +album: "people" +filename: "portugal-guitarist.md" +series: "" +cl_public_id: "people/portugal-guitarist" +cl_version: 1497005530 +format: "tiff" +bytes: 3425436 +width: 954 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.2" +focal_length: "35.0 mm" +iso: "100" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "7500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/portugal-street.md b/site/content/photos/portugal-street.md new file mode 100644 index 0000000..c339a05 --- /dev/null +++ b/site/content/photos/portugal-street.md @@ -0,0 +1,32 @@ +--- +title: "portugal-street" +type: "upload" +description: "TBC" +date: "2012-05-12 14:53:31+00:00" +album: "city" +filename: "portugal-street.md" +series: "" +cl_public_id: "city/portugal-street" +cl_version: 1497000380 +format: "tiff" +bytes: 5465516 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "7.1" +focal_length: "35.0 mm" +iso: "100" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4250" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/pppb.md b/site/content/photos/pppb.md new file mode 100644 index 0000000..f751282 --- /dev/null +++ b/site/content/photos/pppb.md @@ -0,0 +1,32 @@ +--- +title: "pppb" +type: "upload" +description: "TBC" +date: "2005-08-13 20:08:07+00:00" +album: "people" +filename: "pppb.md" +series: "" +cl_public_id: "people/pppb" +cl_version: 1497005530 +format: "tiff" +bytes: 2772000 +width: 1920 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "3.2" +focal_length: "7.8 mm" +iso: "200" +shutter_speed: "1/181" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/praater.md b/site/content/photos/praater.md new file mode 100644 index 0000000..664195c --- /dev/null +++ b/site/content/photos/praater.md @@ -0,0 +1,32 @@ +--- +title: "praater" +type: "upload" +description: "TBC" +date: "2016-07-11 00:03:34+00:00" +album: "events" +filename: "praater.md" +series: "" +cl_public_id: "events/praater" +cl_version: 1497002637 +format: "tiff" +bytes: 7439908 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "16.0 mm" +iso: "1250" +shutter_speed: "1/8" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2750" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/prairie-dawgs-connor.md b/site/content/photos/prairie-dawgs-connor.md new file mode 100644 index 0000000..336c2c2 --- /dev/null +++ b/site/content/photos/prairie-dawgs-connor.md @@ -0,0 +1,32 @@ +--- +title: "prairie-dawgs-connor" +type: "upload" +description: "TBC" +date: "2011-04-05 23:08:11+00:00" +album: "music" +filename: "prairie-dawgs-connor.md" +series: "" +cl_public_id: "music/prairie-dawgs-connor" +cl_version: 1497004878 +format: "tiff" +bytes: 4328460 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "200.0 mm" +iso: "400" +shutter_speed: "1/160" +metering: "Center-weighted average" +flash: "Fired, Return detected" +white_balance: "Custom" +colour_temp: "4100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/prairie-dawgs-karen.md b/site/content/photos/prairie-dawgs-karen.md new file mode 100644 index 0000000..60dbf9e --- /dev/null +++ b/site/content/photos/prairie-dawgs-karen.md @@ -0,0 +1,32 @@ +--- +title: "prairie-dawgs-karen" +type: "upload" +description: "TBC" +date: "2011-04-05 23:41:22+00:00" +album: "music" +filename: "prairie-dawgs-karen.md" +series: "" +cl_public_id: "music/prairie-dawgs-karen" +cl_version: 1497004910 +format: "tiff" +bytes: 3735136 +width: 1440 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "200.0 mm" +iso: "400" +shutter_speed: "1/160" +metering: "Center-weighted average" +flash: "Fired, Return detected" +white_balance: "Custom" +colour_temp: "4600" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/prairie-dawgs-ruairi.md b/site/content/photos/prairie-dawgs-ruairi.md new file mode 100644 index 0000000..baa168c --- /dev/null +++ b/site/content/photos/prairie-dawgs-ruairi.md @@ -0,0 +1,32 @@ +--- +title: "prairie-dawgs-ruairi" +type: "upload" +description: "TBC" +date: "2011-04-05 23:01:14+00:00" +album: "music" +filename: "prairie-dawgs-ruairi.md" +series: "" +cl_public_id: "music/prairie-dawgs-ruairi" +cl_version: 1497004922 +format: "tiff" +bytes: 3904448 +width: 2151 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "170.0 mm" +iso: "400" +shutter_speed: "1/100" +metering: "Center-weighted average" +flash: "Fired, Return detected" +white_balance: "As Shot" +colour_temp: "5150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/presse-tabak-berlin.md b/site/content/photos/presse-tabak-berlin.md new file mode 100644 index 0000000..ac400ef --- /dev/null +++ b/site/content/photos/presse-tabak-berlin.md @@ -0,0 +1,32 @@ +--- +title: "presse-tabak-berlin" +type: "upload" +description: "TBC" +date: "2016-07-09 23:39:37+00:00" +album: "city" +filename: "presse-tabak-berlin.md" +series: "" +cl_public_id: "city/presse-tabak-berlin" +cl_version: 1497000399 +format: "tiff" +bytes: 5226820 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "16.0 mm" +iso: "800" +shutter_speed: "1/20" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3150" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/redline-film-take-dublin.md b/site/content/photos/redline-film-take-dublin.md new file mode 100644 index 0000000..81b7c1d --- /dev/null +++ b/site/content/photos/redline-film-take-dublin.md @@ -0,0 +1,32 @@ +--- +title: "redline-film-take-dublin" +type: "upload" +description: "TBC" +date: "2012-01-13 15:26:38+00:00" +album: "city" +filename: "redline-film-take-dublin.md" +series: "" +cl_public_id: "city/redline-film-take-dublin" +cl_version: 1497000398 +format: "tiff" +bytes: 6538368 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "200.0 mm" +iso: "320" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "7300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/refeshments.md b/site/content/photos/refeshments.md new file mode 100644 index 0000000..2d07776 --- /dev/null +++ b/site/content/photos/refeshments.md @@ -0,0 +1,32 @@ +--- +title: "refeshments" +type: "upload" +description: "TBC" +date: "2013-11-27 21:25:45+00:00" +album: "events" +filename: "refeshments.md" +series: "" +cl_public_id: "events/refeshments" +cl_version: 1497002647 +format: "tiff" +bytes: 7818936 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "200.0 mm" +iso: "1000" +shutter_speed: "1/30" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/rhob-cunningham.md b/site/content/photos/rhob-cunningham.md new file mode 100644 index 0000000..2274a52 --- /dev/null +++ b/site/content/photos/rhob-cunningham.md @@ -0,0 +1,32 @@ +--- +title: "rhob-cunningham" +type: "upload" +description: "TBC" +date: "2014-06-28 19:06:45+00:00" +album: "music" +filename: "rhob-cunningham.md" +series: "" +cl_public_id: "music/rhob-cunningham" +cl_version: 1497004874 +format: "tiff" +bytes: 6370240 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "5.0" +focal_length: "135.0 mm" +iso: "800" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/rian-ro-kerry-bar.md b/site/content/photos/rian-ro-kerry-bar.md new file mode 100644 index 0000000..a4592e0 --- /dev/null +++ b/site/content/photos/rian-ro-kerry-bar.md @@ -0,0 +1,32 @@ +--- +title: "rian-ro-kerry-bar" +type: "upload" +description: "TBC" +date: "2012-04-01 17:08:38+00:00" +album: "abandoned" +filename: "rian-ro-kerry-bar.md" +series: "" +cl_public_id: "abandoned/rian-ro-kerry-bar" +cl_version: 1497000108 +format: "tiff" +bytes: 3684208 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/20" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/rian-ro-kerry-lobby.md b/site/content/photos/rian-ro-kerry-lobby.md new file mode 100644 index 0000000..410a9e3 --- /dev/null +++ b/site/content/photos/rian-ro-kerry-lobby.md @@ -0,0 +1,32 @@ +--- +title: "rian-ro-kerry-lobby" +type: "upload" +description: "TBC" +date: "2012-04-01 16:53:10+00:00" +album: "abandoned" +filename: "rian-ro-kerry-lobby.md" +series: "" +cl_public_id: "abandoned/rian-ro-kerry-lobby" +cl_version: 1497000113 +format: "tiff" +bytes: 6176308 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.5" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/50" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4850" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/rian-ro-kerry-windows.md b/site/content/photos/rian-ro-kerry-windows.md new file mode 100644 index 0000000..b5668b3 --- /dev/null +++ b/site/content/photos/rian-ro-kerry-windows.md @@ -0,0 +1,32 @@ +--- +title: "rian-ro-kerry-windows" +type: "upload" +description: "TBC" +date: "2012-04-01 17:01:30+00:00" +album: "abandoned" +filename: "rian-ro-kerry-windows.md" +series: "" +cl_public_id: "abandoned/rian-ro-kerry-windows" +cl_version: 1497000115 +format: "tiff" +bytes: 2663148 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "7.1" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5100" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/rian-ro-kerry.md b/site/content/photos/rian-ro-kerry.md new file mode 100644 index 0000000..770d10d --- /dev/null +++ b/site/content/photos/rian-ro-kerry.md @@ -0,0 +1,32 @@ +--- +title: "rian-ro-kerry" +type: "upload" +description: "TBC" +date: "2012-04-01 16:50:51+00:00" +album: "abandoned" +filename: "rian-ro-kerry.md" +series: "" +cl_public_id: "abandoned/rian-ro-kerry" +cl_version: 1497000059 +format: "tiff" +bytes: 5257228 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "13.0" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4350" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/richie-cmc.md b/site/content/photos/richie-cmc.md new file mode 100644 index 0000000..e93ea74 --- /dev/null +++ b/site/content/photos/richie-cmc.md @@ -0,0 +1,32 @@ +--- +title: "richie-cmc" +type: "upload" +description: "TBC" +date: "2012-05-25 22:01:11+00:00" +album: "music" +filename: "richie-cmc.md" +series: "" +cl_public_id: "music/richie-cmc" +cl_version: 1497004862 +format: "tiff" +bytes: 1287320 +width: 954 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "130.0 mm" +iso: "5000" +shutter_speed: "1/160" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Manual" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "70-200mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/rixdorf-christmas-market.md b/site/content/photos/rixdorf-christmas-market.md new file mode 100644 index 0000000..0ef8af5 --- /dev/null +++ b/site/content/photos/rixdorf-christmas-market.md @@ -0,0 +1,32 @@ +--- +title: "rixdorf-christmas-market" +type: "upload" +description: "TBC" +date: "2015-12-05 18:07:03+00:00" +album: "city" +filename: "rixdorf-christmas-market.md" +series: "" +cl_public_id: "city/rixdorf-christmas-market" +cl_version: 1497000414 +format: "tiff" +bytes: 6487692 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "2500" +shutter_speed: "1/13" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/ruairi-fionn.md b/site/content/photos/ruairi-fionn.md new file mode 100644 index 0000000..5de86b3 --- /dev/null +++ b/site/content/photos/ruairi-fionn.md @@ -0,0 +1,32 @@ +--- +title: "ruairi-fionn" +type: "upload" +description: "TBC" +date: "2016-08-27 19:34:22+00:00" +album: "people" +filename: "ruairi-fionn.md" +series: "" +cl_public_id: "people/ruairi-fionn" +cl_version: 1497005542 +format: "tiff" +bytes: 2669160 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "320" +shutter_speed: "1/100" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/rupert-clarissa.md b/site/content/photos/rupert-clarissa.md new file mode 100644 index 0000000..eaf713a --- /dev/null +++ b/site/content/photos/rupert-clarissa.md @@ -0,0 +1,32 @@ +--- +title: "rupert-clarissa" +type: "upload" +description: "TBC" +date: "2014-04-07 14:05:12+00:00" +album: "nature" +filename: "rupert-clarissa.md" +series: "" +cl_public_id: "nature/rupert-clarissa" +cl_version: 1497005106 +format: "tiff" +bytes: 6569048 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/8000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/russian-embassy-berlin.md b/site/content/photos/russian-embassy-berlin.md new file mode 100644 index 0000000..5005f99 --- /dev/null +++ b/site/content/photos/russian-embassy-berlin.md @@ -0,0 +1,32 @@ +--- +title: "russian-embassy-berlin" +type: "upload" +description: "TBC" +date: "2016-12-09 11:24:15+00:00" +album: "city" +filename: "russian-embassy-berlin.md" +series: "" +cl_public_id: "city/russian-embassy-berlin" +cl_version: 1497000393 +format: "tiff" +bytes: 1646216 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "7.1" +focal_length: "24.0 mm" +iso: "200" +shutter_speed: "1/40" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5550" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/scaffold-tunnel.md b/site/content/photos/scaffold-tunnel.md new file mode 100644 index 0000000..6e5449b --- /dev/null +++ b/site/content/photos/scaffold-tunnel.md @@ -0,0 +1,32 @@ +--- +title: "scaffold-tunnel" +type: "upload" +description: "TBC" +date: "2016-07-09 23:41:37+00:00" +album: "experimental" +filename: "scaffold-tunnel.md" +series: "" +cl_public_id: "experimental/scaffold-tunnel" +cl_version: 1497004396 +format: "tiff" +bytes: 2322284 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "16.0 mm" +iso: "800" +shutter_speed: "1/5" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "2650" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/schneedrop.md b/site/content/photos/schneedrop.md new file mode 100644 index 0000000..9a36fc9 --- /dev/null +++ b/site/content/photos/schneedrop.md @@ -0,0 +1,32 @@ +--- +title: "schneedrop" +type: "upload" +description: "TBC" +date: "2014-01-18 17:18:04+00:00" +album: "nature" +filename: "schneedrop.md" +series: "" +cl_public_id: "nature/schneedrop" +cl_version: 1497005109 +format: "tiff" +bytes: 4618248 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "3.2" +focal_length: "200.0 mm" +iso: "400" +shutter_speed: "1/40" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/schnitzel_konig.md b/site/content/photos/schnitzel_konig.md new file mode 100644 index 0000000..1ce3c5a --- /dev/null +++ b/site/content/photos/schnitzel_konig.md @@ -0,0 +1,32 @@ +--- +title: "schnitzel_konig" +type: "upload" +description: "TBC" +date: "2015-12-08 23:40:29+00:00" +album: "experimental" +filename: "schnitzel-konig.md" +series: "" +cl_public_id: "experimental/schnitzel_konig" +cl_version: 1497004420 +format: "tiff" +bytes: 5510528 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: undefined +focal_length: "24.0 mm" +iso: "200" +shutter_speed: undefined +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Manual" +colour_temp: "-10.0" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/seagull-poland.md b/site/content/photos/seagull-poland.md new file mode 100644 index 0000000..961e1a1 --- /dev/null +++ b/site/content/photos/seagull-poland.md @@ -0,0 +1,32 @@ +--- +title: "seagull-poland" +type: "upload" +description: "TBC" +date: "2014-03-09 14:50:47+00:00" +album: "landscapes" +filename: "seagull-poland.md" +series: "" +cl_public_id: "landscapes/seagull-poland" +cl_version: 1497004746 +format: "tiff" +bytes: 5099932 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/400" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/shopping-trolley.md b/site/content/photos/shopping-trolley.md new file mode 100644 index 0000000..144242d --- /dev/null +++ b/site/content/photos/shopping-trolley.md @@ -0,0 +1,32 @@ +--- +title: "shopping-trolley" +type: "upload" +description: "TBC" +date: "2014-02-09 15:33:25+00:00" +album: "city" +filename: "shopping-trolley.md" +series: "" +cl_public_id: "city/shopping-trolley" +cl_version: 1497000412 +format: "tiff" +bytes: 2610620 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "1.4" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/2500" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/side-street-berlin.md b/site/content/photos/side-street-berlin.md new file mode 100644 index 0000000..58ef184 --- /dev/null +++ b/site/content/photos/side-street-berlin.md @@ -0,0 +1,32 @@ +--- +title: "side-street-berlin" +type: "upload" +description: "TBC" +date: "2016-07-17 02:48:12+00:00" +album: "experimental" +filename: "side-street-berlin.md" +series: "" +cl_public_id: "experimental/side-street-berlin" +cl_version: 1497004452 +format: "tiff" +bytes: 6783436 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.0" +focal_length: "24.0 mm" +iso: "640" +shutter_speed: "1/20" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3050" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/side_steps_wall.md b/site/content/photos/side_steps_wall.md new file mode 100644 index 0000000..78957ab --- /dev/null +++ b/site/content/photos/side_steps_wall.md @@ -0,0 +1,32 @@ +--- +title: "side_steps_wall" +type: "upload" +description: "TBC" +date: "2016-01-08 15:19:51+00:00" +album: "experimental" +filename: "side-steps-wall.md" +series: "" +cl_public_id: "experimental/side_steps_wall" +cl_version: 1497004440 +format: "tiff" +bytes: 6734448 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "38.0 mm" +iso: "250" +shutter_speed: "1/320" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/singer.md b/site/content/photos/singer.md new file mode 100644 index 0000000..0fdb868 --- /dev/null +++ b/site/content/photos/singer.md @@ -0,0 +1,32 @@ +--- +title: "singer" +type: "upload" +description: "TBC" +date: "2012-05-05 21:36:13+00:00" +album: "people" +filename: "singer.md" +series: "" +cl_public_id: "people/singer" +cl_version: 1497005551 +format: "tiff" +bytes: 2731956 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "2.8" +focal_length: "200.0 mm" +iso: "200" +shutter_speed: "1/30" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2550" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "70-200mm f/2.8" +artist: "Matt Finucane" +x_resolution: "240" +y_resolution: "240" +--- \ No newline at end of file diff --git a/site/content/photos/skelligs-kerry.md b/site/content/photos/skelligs-kerry.md new file mode 100644 index 0000000..ed34e5e --- /dev/null +++ b/site/content/photos/skelligs-kerry.md @@ -0,0 +1,32 @@ +--- +title: "skelligs-kerry" +type: "upload" +description: "TBC" +date: "2011-12-11 16:05:55+00:00" +album: "landscapes" +filename: "skelligs-kerry.md" +series: "" +cl_public_id: "landscapes/skelligs-kerry" +cl_version: 1497004744 +format: "tiff" +bytes: 3300492 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.0" +focal_length: "34.0 mm" +iso: "100" +shutter_speed: "1/1600" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5950" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/smartphones.md b/site/content/photos/smartphones.md new file mode 100644 index 0000000..4b633fe --- /dev/null +++ b/site/content/photos/smartphones.md @@ -0,0 +1,32 @@ +--- +title: "smartphones" +type: "upload" +description: "TBC" +date: "2014-02-09 15:17:37+00:00" +album: "people" +filename: "smartphones.md" +series: "" +cl_public_id: "people/smartphones" +cl_version: 1497005557 +format: "tiff" +bytes: 5477468 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/500" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6350" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "0mm f/0" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spirit-of-folk-bird.md b/site/content/photos/spirit-of-folk-bird.md new file mode 100644 index 0000000..e9b0da8 --- /dev/null +++ b/site/content/photos/spirit-of-folk-bird.md @@ -0,0 +1,32 @@ +--- +title: "spirit-of-folk-bird" +type: "upload" +description: "TBC" +date: "2011-09-24 16:00:49+00:00" +album: "nature" +filename: "spirit-of-folk-bird.md" +series: "" +cl_public_id: "nature/spirit-of-folk-bird" +cl_version: 1497005117 +format: "tiff" +bytes: 9860444 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "16.0" +focal_length: "200.0 mm" +iso: "8000" +shutter_speed: "1/800" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spirit-of-folk-musician.md b/site/content/photos/spirit-of-folk-musician.md new file mode 100644 index 0000000..1a884b3 --- /dev/null +++ b/site/content/photos/spirit-of-folk-musician.md @@ -0,0 +1,32 @@ +--- +title: "spirit-of-folk-musician" +type: "upload" +description: "TBC" +date: "2011-09-24 17:29:26+00:00" +album: "events" +filename: "spirit-of-folk-musician.md" +series: "" +cl_public_id: "events/spirit-of-folk-musician" +cl_version: 1497002642 +format: "tiff" +bytes: 7447808 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "14.0" +focal_length: "170.0 mm" +iso: "8000" +shutter_speed: "1/2000" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5350" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spirit-of-folk-people.md b/site/content/photos/spirit-of-folk-people.md new file mode 100644 index 0000000..d6ac680 --- /dev/null +++ b/site/content/photos/spirit-of-folk-people.md @@ -0,0 +1,32 @@ +--- +title: "spirit-of-folk-people" +type: "upload" +description: "TBC" +date: "2011-09-25 00:36:51+00:00" +album: "events" +filename: "spirit-of-folk-people.md" +series: "" +cl_public_id: "events/spirit-of-folk-people" +cl_version: 1497002631 +format: "tiff" +bytes: 4480788 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "9.0" +focal_length: "56.0 mm" +iso: "4000" +shutter_speed: "1/50" +metering: "Center-weighted average" +flash: "On, Return detected" +white_balance: "Custom" +colour_temp: "4350" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spirit-of-folk-shield.md b/site/content/photos/spirit-of-folk-shield.md new file mode 100644 index 0000000..b41542d --- /dev/null +++ b/site/content/photos/spirit-of-folk-shield.md @@ -0,0 +1,32 @@ +--- +title: "spirit-of-folk-shield" +type: "upload" +description: "TBC" +date: "2011-09-24 16:42:14+00:00" +album: "events" +filename: "spirit-of-folk-shield.md" +series: "" +cl_public_id: "events/spirit-of-folk-shield" +cl_version: 1497002647 +format: "tiff" +bytes: 8126128 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "20.0" +focal_length: "120.0 mm" +iso: "8000" +shutter_speed: "1/1000" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spirit-of-folk-tent.md b/site/content/photos/spirit-of-folk-tent.md new file mode 100644 index 0000000..56fba12 --- /dev/null +++ b/site/content/photos/spirit-of-folk-tent.md @@ -0,0 +1,32 @@ +--- +title: "spirit-of-folk-tent" +type: "upload" +description: "TBC" +date: "2011-09-24 21:17:10+00:00" +album: "events" +filename: "spirit-of-folk-tent.md" +series: "" +cl_public_id: "events/spirit-of-folk-tent" +cl_version: 1497002642 +format: "tiff" +bytes: 4468508 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "1.8" +focal_length: "35.0 mm" +iso: "2000" +shutter_speed: "1/13" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spree-statue.md b/site/content/photos/spree-statue.md new file mode 100644 index 0000000..0f909fb --- /dev/null +++ b/site/content/photos/spree-statue.md @@ -0,0 +1,32 @@ +--- +title: "spree-statue" +type: "upload" +description: "TBC" +date: "2014-01-18 16:52:40+00:00" +album: "city" +filename: "spree-statue.md" +series: "" +cl_public_id: "city/spree-statue" +cl_version: 1497000413 +format: "tiff" +bytes: 6770640 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "70.0 mm" +iso: "400" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4350" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spreepark-ferris-wheel.md b/site/content/photos/spreepark-ferris-wheel.md new file mode 100644 index 0000000..83a9263 --- /dev/null +++ b/site/content/photos/spreepark-ferris-wheel.md @@ -0,0 +1,32 @@ +--- +title: "spreepark-ferris-wheel" +type: "upload" +description: "TBC" +date: "2014-01-18 17:33:47+00:00" +album: "experimental" +filename: "spreepark-ferris-wheel.md" +series: "" +cl_public_id: "experimental/spreepark-ferris-wheel" +cl_version: 1497004477 +format: "tiff" +bytes: 8562196 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "4.5" +focal_length: "70.0 mm" +iso: "1250" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "7850" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spwc-dublin-waldos.md b/site/content/photos/spwc-dublin-waldos.md new file mode 100644 index 0000000..b0c4351 --- /dev/null +++ b/site/content/photos/spwc-dublin-waldos.md @@ -0,0 +1,32 @@ +--- +title: "spwc-dublin-waldos" +type: "upload" +description: "TBC" +date: "2011-06-18 13:02:38+00:00" +album: "events" +filename: "spwc-dublin-waldos.md" +series: "" +cl_public_id: "events/spwc-dublin-waldos" +cl_version: 1497002577 +format: "tiff" +bytes: 8344840 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "6.3" +focal_length: "11.0 mm" +iso: "320" +shutter_speed: "1/400" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/spwc-performer.md b/site/content/photos/spwc-performer.md new file mode 100644 index 0000000..1ed8409 --- /dev/null +++ b/site/content/photos/spwc-performer.md @@ -0,0 +1,32 @@ +--- +title: "spwc-performer" +type: "upload" +description: "TBC" +date: "2011-06-18 14:04:44+00:00" +album: "people" +filename: "spwc-performer.md" +series: "" +cl_public_id: "people/spwc-performer" +cl_version: 1497005559 +format: "tiff" +bytes: 6118604 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.0" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/5000" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "6000" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/st-finans-bay-long-exposure.md b/site/content/photos/st-finans-bay-long-exposure.md new file mode 100644 index 0000000..f59d699 --- /dev/null +++ b/site/content/photos/st-finans-bay-long-exposure.md @@ -0,0 +1,32 @@ +--- +title: "st-finans-bay-long-exposure" +type: "upload" +description: "TBC" +date: "2011-12-10 01:16:36+00:00" +album: "landscapes" +filename: "st-finans-bay-long-exposure.md" +series: "" +cl_public_id: "landscapes/st-finans-bay-long-exposure" +cl_version: 1497004738 +format: "tiff" +bytes: 3918512 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "2.8" +focal_length: "11.0 mm" +iso: "100" +shutter_speed: "298" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/st-finians-beach.md b/site/content/photos/st-finians-beach.md new file mode 100644 index 0000000..05df057 --- /dev/null +++ b/site/content/photos/st-finians-beach.md @@ -0,0 +1,32 @@ +--- +title: "st-finians-beach" +type: "upload" +description: "TBC" +date: "2016-07-31 13:50:29+00:00" +album: "landscapes" +filename: "st-finians-beach.md" +series: "" +cl_public_id: "landscapes/st-finians-beach" +cl_version: 1497004750 +format: "tiff" +bytes: 5319420 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "16.0 mm" +iso: "200" +shutter_speed: "1/640" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5200" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stadtbad-wedding-anna-dark.md b/site/content/photos/stadtbad-wedding-anna-dark.md new file mode 100644 index 0000000..e7e407c --- /dev/null +++ b/site/content/photos/stadtbad-wedding-anna-dark.md @@ -0,0 +1,32 @@ +--- +title: "stadtbad-wedding-anna-dark" +type: "upload" +description: "TBC" +date: "2016-05-29 14:34:35+00:00" +album: "abandoned" +filename: "stadtbad-wedding-anna-dark.md" +series: "" +cl_public_id: "abandoned/stadtbad-wedding-anna-dark" +cl_version: 1497000033 +format: "tiff" +bytes: 2118428 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "500" +shutter_speed: "1/80" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5900" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stadtbad-wedding-anna-pool.md b/site/content/photos/stadtbad-wedding-anna-pool.md new file mode 100644 index 0000000..32be02e --- /dev/null +++ b/site/content/photos/stadtbad-wedding-anna-pool.md @@ -0,0 +1,32 @@ +--- +title: "stadtbad-wedding-anna-pool" +type: "upload" +description: "TBC" +date: "2016-05-29 14:26:52+00:00" +album: "abandoned" +filename: "stadtbad-wedding-anna-pool.md" +series: "" +cl_public_id: "abandoned/stadtbad-wedding-anna-pool" +cl_version: 1497000050 +format: "tiff" +bytes: 2100288 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "100" +shutter_speed: "1/25" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4400" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stadtbad-wedding-anna.md b/site/content/photos/stadtbad-wedding-anna.md new file mode 100644 index 0000000..8700faf --- /dev/null +++ b/site/content/photos/stadtbad-wedding-anna.md @@ -0,0 +1,32 @@ +--- +title: "stadtbad-wedding-anna" +type: "upload" +description: "TBC" +date: "2016-05-29 13:57:52+00:00" +album: "abandoned" +filename: "stadtbad-wedding-anna.md" +series: "" +cl_public_id: "abandoned/stadtbad-wedding-anna" +cl_version: 1497000049 +format: "tiff" +bytes: 2301588 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "55.0 mm" +iso: "800" +shutter_speed: "1/100" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5000" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stadtbad-wedding-blinds.md b/site/content/photos/stadtbad-wedding-blinds.md new file mode 100644 index 0000000..4d7e309 --- /dev/null +++ b/site/content/photos/stadtbad-wedding-blinds.md @@ -0,0 +1,32 @@ +--- +title: "stadtbad-wedding-blinds" +type: "upload" +description: "TBC" +date: "2016-05-29 14:38:28+00:00" +album: "abandoned" +filename: "stadtbad-wedding-blinds.md" +series: "" +cl_public_id: "abandoned/stadtbad-wedding-blinds" +cl_version: 1497000037 +format: "tiff" +bytes: 2686064 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "500" +shutter_speed: "1/250" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5100" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stadtbad-wedding-door.md b/site/content/photos/stadtbad-wedding-door.md new file mode 100644 index 0000000..ffc012a --- /dev/null +++ b/site/content/photos/stadtbad-wedding-door.md @@ -0,0 +1,32 @@ +--- +title: "stadtbad-wedding-door" +type: "upload" +description: "TBC" +date: "2016-05-29 14:32:47+00:00" +album: "abandoned" +filename: "stadtbad-wedding-door.md" +series: "" +cl_public_id: "abandoned/stadtbad-wedding-door" +cl_version: 1497000035 +format: "tiff" +bytes: 1416564 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "500" +shutter_speed: "1/40" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "7050" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stadtbad-wedding-stairs.md b/site/content/photos/stadtbad-wedding-stairs.md new file mode 100644 index 0000000..b575456 --- /dev/null +++ b/site/content/photos/stadtbad-wedding-stairs.md @@ -0,0 +1,32 @@ +--- +title: "stadtbad-wedding-stairs" +type: "upload" +description: "TBC" +date: "2016-05-29 14:37:22+00:00" +album: "abandoned" +filename: "stadtbad-wedding-stairs.md" +series: "" +cl_public_id: "abandoned/stadtbad-wedding-stairs" +cl_version: 1497000076 +format: "tiff" +bytes: 1733880 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "500" +shutter_speed: "1/50" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4950" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stadtbadd-wedding.md b/site/content/photos/stadtbadd-wedding.md new file mode 100644 index 0000000..84c50bf --- /dev/null +++ b/site/content/photos/stadtbadd-wedding.md @@ -0,0 +1,32 @@ +--- +title: "stadtbadd-wedding" +type: "upload" +description: "TBC" +date: "2016-05-29 14:21:05+00:00" +album: "experimental" +filename: "stadtbadd-wedding.md" +series: "" +cl_public_id: "experimental/stadtbadd-wedding" +cl_version: 1497004455 +format: "tiff" +bytes: 6749452 +width: 2155 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "22.0" +focal_length: "24.0 mm" +iso: "100" +shutter_speed: "25" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "240" +y_resolution: "240" +--- \ No newline at end of file diff --git a/site/content/photos/steps.md b/site/content/photos/steps.md new file mode 100644 index 0000000..e93edd8 --- /dev/null +++ b/site/content/photos/steps.md @@ -0,0 +1,32 @@ +--- +title: "steps" +type: "upload" +description: "TBC" +date: "2016-01-08 15:18:27+00:00" +album: "city" +filename: "steps.md" +series: "" +cl_public_id: "city/steps" +cl_version: 1497000416 +format: "tiff" +bytes: 1979744 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "7.1" +focal_length: "48.0 mm" +iso: "250" +shutter_speed: "1/50" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5650" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stina.md b/site/content/photos/stina.md new file mode 100644 index 0000000..054ae3d --- /dev/null +++ b/site/content/photos/stina.md @@ -0,0 +1,32 @@ +--- +title: "stina" +type: "upload" +description: "TBC" +date: "2011-09-24 20:57:02+00:00" +album: "music" +filename: "stina.md" +series: "" +cl_public_id: "music/stina" +cl_version: 1497004878 +format: "tiff" +bytes: 2013832 +width: 810 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "200.0 mm" +iso: "6400" +shutter_speed: "1/640" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/stoplerstein.md b/site/content/photos/stoplerstein.md new file mode 100644 index 0000000..cad63ae --- /dev/null +++ b/site/content/photos/stoplerstein.md @@ -0,0 +1,32 @@ +--- +title: "stoplerstein" +type: "upload" +description: "TBC" +date: "2013-02-14 15:08:23+00:00" +album: "city" +filename: "stoplerstein.md" +series: "" +cl_public_id: "city/stoplerstein" +cl_version: 1497000456 +format: "tiff" +bytes: 7951776 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "5.6" +focal_length: "35.0 mm" +iso: "320" +shutter_speed: "1/80" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4150" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/street-performer.md b/site/content/photos/street-performer.md new file mode 100644 index 0000000..1c8f76e --- /dev/null +++ b/site/content/photos/street-performer.md @@ -0,0 +1,32 @@ +--- +title: "street-performer" +type: "upload" +description: "TBC" +date: "2011-03-20 22:23:11+00:00" +album: "people" +filename: "street-performer.md" +series: "" +cl_public_id: "people/street-performer" +cl_version: 1497005562 +format: "tiff" +bytes: 2844052 +width: 964 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "4.0" +focal_length: "55.0 mm" +iso: "2000" +shutter_speed: "1/30" +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "Custom" +colour_temp: "2850" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "55-200mm f/4-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/table-tennis-berlin.md b/site/content/photos/table-tennis-berlin.md new file mode 100644 index 0000000..99f6939 --- /dev/null +++ b/site/content/photos/table-tennis-berlin.md @@ -0,0 +1,32 @@ +--- +title: "table-tennis-berlin" +type: "upload" +description: "TBC" +date: "2016-12-09 11:57:54+00:00" +album: "city" +filename: "table-tennis-berlin.md" +series: "" +cl_public_id: "city/table-tennis-berlin" +cl_version: 1497000446 +format: "tiff" +bytes: 7131500 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "200" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5500" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/tara-street-dart.md b/site/content/photos/tara-street-dart.md new file mode 100644 index 0000000..ef19c58 --- /dev/null +++ b/site/content/photos/tara-street-dart.md @@ -0,0 +1,32 @@ +--- +title: "tara-street-dart" +type: "upload" +description: "TBC" +date: "2011-04-16 20:15:12+00:00" +album: "city" +filename: "tara-street-dart.md" +series: "" +cl_public_id: "city/tara-street-dart" +cl_version: 1497000452 +format: "tiff" +bytes: 5944556 +width: 2151 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "2.8" +focal_length: "14.0 mm" +iso: "200" +shutter_speed: "1/160" +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "Custom" +colour_temp: "4250" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "11-16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/tempelhof-cyclist.md b/site/content/photos/tempelhof-cyclist.md new file mode 100644 index 0000000..d0979f9 --- /dev/null +++ b/site/content/photos/tempelhof-cyclist.md @@ -0,0 +1,32 @@ +--- +title: "tempelhof-cyclist" +type: "upload" +description: "TBC" +date: "2014-01-25 16:14:02+00:00" +album: "city" +filename: "tempelhof-cyclist.md" +series: "" +cl_public_id: "city/tempelhof-cyclist" +cl_version: 1497000441 +format: "tiff" +bytes: 5430856 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "10.0" +focal_length: "195.0 mm" +iso: "100" +shutter_speed: "1/400" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4400" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/tempelhof-floodlight.md b/site/content/photos/tempelhof-floodlight.md new file mode 100644 index 0000000..5818bf7 --- /dev/null +++ b/site/content/photos/tempelhof-floodlight.md @@ -0,0 +1,32 @@ +--- +title: "tempelhof-floodlight" +type: "upload" +description: "TBC" +date: "2013-02-15 15:42:17+00:00" +album: "experimental" +filename: "tempelhof-floodlight.md" +series: "" +cl_public_id: "experimental/tempelhof-floodlight" +cl_version: 1497004474 +format: "tiff" +bytes: 5233652 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "13.0" +focal_length: "35.0 mm" +iso: "200" +shutter_speed: "1/100" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5900" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "35mm f/1.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/the-glen-shop.md b/site/content/photos/the-glen-shop.md new file mode 100644 index 0000000..98a461e --- /dev/null +++ b/site/content/photos/the-glen-shop.md @@ -0,0 +1,32 @@ +--- +title: "the-glen-shop" +type: "upload" +description: "TBC" +date: "Date unknown" +album: "abandoned" +filename: "the-glen-shop.md" +series: "" +cl_public_id: "abandoned/the-glen-shop" +cl_version: 1497000075 +format: "jpg" +bytes: 2461626 +width: 3264 +height: 2448 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.2" +focal_length: "4.1 mm" +iso: "32" +shutter_speed: "1/2160" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "iPhone 5s" +lens_info: "4.12mm f/2.2" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/the-young-folk-lead.md b/site/content/photos/the-young-folk-lead.md new file mode 100644 index 0000000..4177c59 --- /dev/null +++ b/site/content/photos/the-young-folk-lead.md @@ -0,0 +1,32 @@ +--- +title: "the-young-folk-lead" +type: "upload" +description: "TBC" +date: "2011-04-30 19:33:35+00:00" +album: "music" +filename: "the-young-folk-lead.md" +series: "" +cl_public_id: "music/the-young-folk-lead" +cl_version: 1497004905 +format: "tiff" +bytes: 5238400 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "150.0 mm" +iso: "3200" +shutter_speed: "1/100" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4750" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/tim-hot-sprockets-under-mic.md b/site/content/photos/tim-hot-sprockets-under-mic.md new file mode 100644 index 0000000..8d60f0b --- /dev/null +++ b/site/content/photos/tim-hot-sprockets-under-mic.md @@ -0,0 +1,32 @@ +--- +title: "tim-hot-sprockets-under-mic" +type: "upload" +description: "TBC" +date: "2011-05-01 18:24:58+00:00" +album: "music" +filename: "tim-hot-sprockets-under-mic.md" +series: "" +cl_public_id: "music/tim-hot-sprockets-under-mic" +cl_version: 1497004892 +format: "tiff" +bytes: 2983632 +width: 954 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "6.3" +focal_length: "75.0 mm" +iso: "3200" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4950" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/tim-hot-sprockets.md b/site/content/photos/tim-hot-sprockets.md new file mode 100644 index 0000000..dc320c5 --- /dev/null +++ b/site/content/photos/tim-hot-sprockets.md @@ -0,0 +1,32 @@ +--- +title: "tim-hot-sprockets" +type: "upload" +description: "TBC" +date: "2011-05-01 18:24:45+00:00" +album: "music" +filename: "tim-hot-sprockets.md" +series: "" +cl_public_id: "music/tim-hot-sprockets" +cl_version: 1497004910 +format: "tiff" +bytes: 7885960 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "6.3" +focal_length: "95.0 mm" +iso: "3200" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "7700" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/tree-howth.md b/site/content/photos/tree-howth.md new file mode 100644 index 0000000..f024ede --- /dev/null +++ b/site/content/photos/tree-howth.md @@ -0,0 +1,32 @@ +--- +title: "tree-howth" +type: "upload" +description: "TBC" +date: "2010-06-27 06:06:50+00:00" +album: "people" +filename: "tree-howth.md" +series: "" +cl_public_id: "people/tree-howth" +cl_version: 1497005573 +format: "tiff" +bytes: 3108432 +width: 810 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "3.5" +focal_length: "18.0 mm" +iso: "500" +shutter_speed: "1/15" +metering: "Spot" +flash: "No Flash" +white_balance: "Custom" +colour_temp: "4900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "18-55mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/tree-killarney.md b/site/content/photos/tree-killarney.md new file mode 100644 index 0000000..e24ef75 --- /dev/null +++ b/site/content/photos/tree-killarney.md @@ -0,0 +1,32 @@ +--- +title: "tree-killarney" +type: "upload" +description: "TBC" +date: "2011-03-27 19:14:36+00:00" +album: "landscapes" +filename: "tree-killarney.md" +series: "" +cl_public_id: "landscapes/tree-killarney" +cl_version: 1497004743 +format: "tiff" +bytes: 3836764 +width: 2151 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "3.5" +focal_length: "18.0 mm" +iso: "400" +shutter_speed: "1/640" +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "Custom" +colour_temp: "4750" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/tree.md b/site/content/photos/tree.md new file mode 100644 index 0000000..3879a35 --- /dev/null +++ b/site/content/photos/tree.md @@ -0,0 +1,32 @@ +--- +title: "tree" +type: "upload" +description: "TBC" +date: "2013-01-26 13:12:45+00:00" +album: "experimental" +filename: "tree.md" +series: "" +cl_public_id: "experimental/tree" +cl_version: 1497004528 +format: "tiff" +bytes: 7875056 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "64.0" +focal_length: "50.0 mm" +iso: "200" +shutter_speed: "1/160" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "0mm f/0" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/treehouse-klunkerkranich.md b/site/content/photos/treehouse-klunkerkranich.md new file mode 100644 index 0000000..5a535e8 --- /dev/null +++ b/site/content/photos/treehouse-klunkerkranich.md @@ -0,0 +1,32 @@ +--- +title: "treehouse-klunkerkranich" +type: "upload" +description: "TBC" +date: "2016-08-25 19:57:10+00:00" +album: "city" +filename: "treehouse-klunkerkranich.md" +series: "" +cl_public_id: "city/treehouse-klunkerkranich" +cl_version: 1497000461 +format: "tiff" +bytes: 6063904 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "3.5" +focal_length: "44.0 mm" +iso: "50" +shutter_speed: "1/40" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/treptower-war-memorial.md b/site/content/photos/treptower-war-memorial.md new file mode 100644 index 0000000..a614dd6 --- /dev/null +++ b/site/content/photos/treptower-war-memorial.md @@ -0,0 +1,32 @@ +--- +title: "treptower-war-memorial" +type: "upload" +description: "TBC" +date: "2016-12-31 17:37:54+00:00" +album: "experimental" +filename: "treptower-war-memorial.md" +series: "" +cl_public_id: "experimental/treptower-war-memorial" +cl_version: 1497004512 +format: "tiff" +bytes: 6421748 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "8.0" +focal_length: "50.0 mm" +iso: "50" +shutter_speed: "30" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5450" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/ubahn-berlin.md b/site/content/photos/ubahn-berlin.md new file mode 100644 index 0000000..b56cb41 --- /dev/null +++ b/site/content/photos/ubahn-berlin.md @@ -0,0 +1,32 @@ +--- +title: "ubahn-berlin" +type: "upload" +description: "TBC" +date: "2016-12-18 15:48:44+00:00" +album: "city" +filename: "ubahn-berlin.md" +series: "" +cl_public_id: "city/ubahn-berlin" +cl_version: 1497000460 +format: "tiff" +bytes: 4087164 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.0" +focal_length: "24.0 mm" +iso: "200" +shutter_speed: "1/13" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2950" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/unicorns.md b/site/content/photos/unicorns.md new file mode 100644 index 0000000..55ccbce --- /dev/null +++ b/site/content/photos/unicorns.md @@ -0,0 +1,32 @@ +--- +title: "unicorns" +type: "upload" +description: "TBC" +date: "2014-04-19 18:57:58+00:00" +album: "people" +filename: "unicorns.md" +series: "" +cl_public_id: "people/unicorns" +cl_version: 1497005585 +format: "tiff" +bytes: 5224288 +width: 2158 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "112.0 mm" +iso: "640" +shutter_speed: "1/640" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "70-200mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-2011-daytime-gs.md b/site/content/photos/vantastival-2011-daytime-gs.md new file mode 100644 index 0000000..763adf0 --- /dev/null +++ b/site/content/photos/vantastival-2011-daytime-gs.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-2011-daytime-gs" +type: "upload" +description: "TBC" +date: "2011-05-01 13:17:24+00:00" +album: "events" +filename: "vantastival-2011-daytime-gs.md" +series: "" +cl_public_id: "events/vantastival-2011-daytime-gs" +cl_version: 1497002561 +format: "tiff" +bytes: 3978836 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "7.1" +focal_length: "18.0 mm" +iso: "200" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5350" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-2011-group.md b/site/content/photos/vantastival-2011-group.md new file mode 100644 index 0000000..a022a7b --- /dev/null +++ b/site/content/photos/vantastival-2011-group.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-2011-group" +type: "upload" +description: "TBC" +date: "2011-05-01 15:14:17+00:00" +album: "events" +filename: "vantastival-2011-group.md" +series: "" +cl_public_id: "events/vantastival-2011-group" +cl_version: 1497002567 +format: "tiff" +bytes: 6129716 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "10.0" +focal_length: "11.0 mm" +iso: "200" +shutter_speed: "1/640" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4600" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-2011.md b/site/content/photos/vantastival-2011.md new file mode 100644 index 0000000..d749abe --- /dev/null +++ b/site/content/photos/vantastival-2011.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-2011" +type: "upload" +description: "TBC" +date: "2011-04-30 22:51:17+00:00" +album: "events" +filename: "vantastival-2011.md" +series: "" +cl_public_id: "events/vantastival-2011" +cl_version: 1497002565 +format: "tiff" +bytes: 5022568 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "11.0" +focal_length: "18.0 mm" +iso: "6400" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "On, Return detected" +white_balance: "Custom" +colour_temp: "5300" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-guitarist.md b/site/content/photos/vantastival-guitarist.md new file mode 100644 index 0000000..84d9881 --- /dev/null +++ b/site/content/photos/vantastival-guitarist.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-guitarist" +type: "upload" +description: "TBC" +date: "2011-05-01 13:20:30+00:00" +album: "music" +filename: "vantastival-guitarist.md" +series: "" +cl_public_id: "music/vantastival-guitarist" +cl_version: 1497004902 +format: "tiff" +bytes: 2218508 +width: 810 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "7.1" +focal_length: "150.0 mm" +iso: "3200" +shutter_speed: "1/60" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-performer.md b/site/content/photos/vantastival-performer.md new file mode 100644 index 0000000..7ad3918 --- /dev/null +++ b/site/content/photos/vantastival-performer.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-performer" +type: "upload" +description: "TBC" +date: "2011-04-30 20:43:38+00:00" +album: "music" +filename: "vantastival-performer.md" +series: "" +cl_public_id: "music/vantastival-performer" +cl_version: 1497004908 +format: "tiff" +bytes: 7423872 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.3" +focal_length: "120.0 mm" +iso: "3200" +shutter_speed: "1/250" +metering: "Multi-segment" +flash: "On, Return detected" +white_balance: "As Shot" +colour_temp: "6250" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-rochelle.md b/site/content/photos/vantastival-rochelle.md new file mode 100644 index 0000000..34544ae --- /dev/null +++ b/site/content/photos/vantastival-rochelle.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-rochelle" +type: "upload" +description: "TBC" +date: "2011-04-30 19:51:04+00:00" +album: "people" +filename: "vantastival-rochelle.md" +series: "" +cl_public_id: "people/vantastival-rochelle" +cl_version: 1497005586 +format: "tiff" +bytes: 5121140 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "4.8" +focal_length: "62.0 mm" +iso: "200" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4750" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-ross.md b/site/content/photos/vantastival-ross.md new file mode 100644 index 0000000..d9b6a38 --- /dev/null +++ b/site/content/photos/vantastival-ross.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-ross" +type: "upload" +description: "TBC" +date: "2011-04-30 19:50:44+00:00" +album: "people" +filename: "vantastival-ross.md" +series: "" +cl_public_id: "people/vantastival-ross" +cl_version: 1497005607 +format: "tiff" +bytes: 6238272 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "4.8" +focal_length: "62.0 mm" +iso: "200" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-singer.md b/site/content/photos/vantastival-singer.md new file mode 100644 index 0000000..fc9f394 --- /dev/null +++ b/site/content/photos/vantastival-singer.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-singer" +type: "upload" +description: "TBC" +date: "2011-05-01 17:32:07+00:00" +album: "music" +filename: "vantastival-singer.md" +series: "" +cl_public_id: "music/vantastival-singer" +cl_version: 1497004909 +format: "tiff" +bytes: 2094628 +width: 810 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "5.6" +focal_length: "200.0 mm" +iso: "500" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "4350" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/vantastival-vin.md b/site/content/photos/vantastival-vin.md new file mode 100644 index 0000000..8ad4f94 --- /dev/null +++ b/site/content/photos/vantastival-vin.md @@ -0,0 +1,32 @@ +--- +title: "vantastival-vin" +type: "upload" +description: "TBC" +date: "2011-04-30 19:50:50+00:00" +album: "people" +filename: "vantastival-vin.md" +series: "" +cl_public_id: "people/vantastival-vin" +cl_version: 1497005601 +format: "tiff" +bytes: 5719808 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "4.8" +focal_length: "62.0 mm" +iso: "200" +shutter_speed: "1/200" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/viking-renactor.md b/site/content/photos/viking-renactor.md new file mode 100644 index 0000000..a7a6676 --- /dev/null +++ b/site/content/photos/viking-renactor.md @@ -0,0 +1,32 @@ +--- +title: "viking-renactor" +type: "upload" +description: "TBC" +date: "2011-09-24 17:19:06+00:00" +album: "people" +filename: "viking-renactor.md" +series: "" +cl_public_id: "people/viking-renactor" +cl_version: 1497005597 +format: "tiff" +bytes: 7160664 +width: 2174 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "9.0" +focal_length: "27.0 mm" +iso: "8000" +shutter_speed: "1/8000" +metering: "Center-weighted average" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5600" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "18-200mm f/3.5-5.6" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/violinist.md b/site/content/photos/violinist.md new file mode 100644 index 0000000..9527276 --- /dev/null +++ b/site/content/photos/violinist.md @@ -0,0 +1,32 @@ +--- +title: "violinist" +type: "upload" +description: "TBC" +date: "2011-01-10 21:33:35+00:00" +album: "music" +filename: "violinist.md" +series: "" +cl_public_id: "music/violinist" +cl_version: 1497004916 +format: "tiff" +bytes: 1577524 +width: 964 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "10.0" +focal_length: "150.0 mm" +iso: "320" +shutter_speed: "1/30" +metering: "Spot" +flash: "Fired, Return detected" +white_balance: "Custom" +colour_temp: "4400" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "55-200mm f/4-5.6" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/volkswagen-berlin.md b/site/content/photos/volkswagen-berlin.md new file mode 100644 index 0000000..b827ab3 --- /dev/null +++ b/site/content/photos/volkswagen-berlin.md @@ -0,0 +1,32 @@ +--- +title: "volkswagen-berlin" +type: "upload" +description: "TBC" +date: "2016-07-10 01:58:42+00:00" +album: "city" +filename: "volkswagen-berlin.md" +series: "" +cl_public_id: "city/volkswagen-berlin" +cl_version: 1497000475 +format: "tiff" +bytes: 8418160 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "16.0 mm" +iso: "2500" +shutter_speed: "1/8" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "2000" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/weinachts-markt-2016.md b/site/content/photos/weinachts-markt-2016.md new file mode 100644 index 0000000..ea777c0 --- /dev/null +++ b/site/content/photos/weinachts-markt-2016.md @@ -0,0 +1,32 @@ +--- +title: "weinachts-markt-2016" +type: "upload" +description: "TBC" +date: "2015-12-05 17:45:26+00:00" +album: "events" +filename: "weinachts-markt-2016.md" +series: "" +cl_public_id: "events/weinachts-markt-2016" +cl_version: 1497002573 +format: "tiff" +bytes: 2062100 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "24.0 mm" +iso: "2500" +shutter_speed: "1/125" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3200" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/west-berlin-apartment-door.md b/site/content/photos/west-berlin-apartment-door.md new file mode 100644 index 0000000..c090a26 --- /dev/null +++ b/site/content/photos/west-berlin-apartment-door.md @@ -0,0 +1,32 @@ +--- +title: "west-berlin-apartment-door" +type: "upload" +description: "TBC" +date: "2016-12-09 12:45:38+00:00" +album: "city" +filename: "west-berlin-apartment-door.md" +series: "" +cl_public_id: "city/west-berlin-apartment-door" +cl_version: 1497000470 +format: "tiff" +bytes: 2925404 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "4.5" +focal_length: "28.0 mm" +iso: "200" +shutter_speed: "1/80" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "5400" +has_crop: "true" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/whelans.md b/site/content/photos/whelans.md new file mode 100644 index 0000000..4fb4534 --- /dev/null +++ b/site/content/photos/whelans.md @@ -0,0 +1,32 @@ +--- +title: "whelans" +type: "upload" +description: "TBC" +date: "2010-07-10 01:10:09+00:00" +album: "music" +filename: "whelans.md" +series: "" +cl_public_id: "music/whelans" +cl_version: 1497004923 +format: "tiff" +bytes: 5186188 +width: 2560 +height: 1440 +exposure_mode: "Manual" +program: "Manual" +aperture: "2.0" +focal_length: "35.0 mm" +iso: "1600" +shutter_speed: "1/40" +metering: "Center-weighted average" +flash: "No Flash" +white_balance: "Custom" +colour_temp: "2500" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D200" +lens_info: "35mm f/1.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/wide-angle-kitchen.md b/site/content/photos/wide-angle-kitchen.md new file mode 100644 index 0000000..349e8b1 --- /dev/null +++ b/site/content/photos/wide-angle-kitchen.md @@ -0,0 +1,32 @@ +--- +title: "wide-angle-kitchen" +type: "upload" +description: "TBC" +date: "2016-07-17 20:16:15+00:00" +album: "experimental" +filename: "wide-angle-kitchen.md" +series: "" +cl_public_id: "experimental/wide-angle-kitchen" +cl_version: 1497004502 +format: "tiff" +bytes: 1578572 +width: 961 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "16.0 mm" +iso: "400" +shutter_speed: "1/20" +metering: "Spot" +flash: "Off, Did not fire" +white_balance: "Custom" +colour_temp: "3150" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "16mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/window-pattern.md b/site/content/photos/window-pattern.md new file mode 100644 index 0000000..638f933 --- /dev/null +++ b/site/content/photos/window-pattern.md @@ -0,0 +1,32 @@ +--- +title: "window-pattern" +type: "upload" +description: "TBC" +date: "2016-12-09 12:46:06+00:00" +album: "city" +filename: "window-pattern.md" +series: "" +cl_public_id: "city/window-pattern" +cl_version: 1497000466 +format: "tiff" +bytes: 1672128 +width: 810 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: "2.8" +focal_length: "42.0 mm" +iso: "200" +shutter_speed: "1/320" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "As Shot" +colour_temp: "5800" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "24-70mm f/2.8" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/wittenberg.md b/site/content/photos/wittenberg.md new file mode 100644 index 0000000..9d717de --- /dev/null +++ b/site/content/photos/wittenberg.md @@ -0,0 +1,32 @@ +--- +title: "wittenberg" +type: "upload" +description: "TBC" +date: "2017-04-14 16:50:51" +album: "experimental" +filename: "wittenberg.md" +series: "" +cl_public_id: "experimental/wittenberg" +cl_version: 1497004520 +format: "tiff" +bytes: 6378552 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Aperture-priority AE" +aperture: undefined +focal_length: "16.0 mm" +iso: "100" +shutter_speed: undefined +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "-0.5" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "NIKON D800" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file diff --git a/site/content/photos/workplace.md b/site/content/photos/workplace.md new file mode 100644 index 0000000..4d273ad --- /dev/null +++ b/site/content/photos/workplace.md @@ -0,0 +1,32 @@ +--- +title: "workplace" +type: "upload" +description: "TBC" +date: "2014-06-27 23-30-02.823 23:30:02+00:00" +album: "city" +filename: "workplace.md" +series: "" +cl_public_id: "city/workplace" +cl_version: 1497000467 +format: "jpg" +bytes: 2007286 +width: 2560 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.2" +focal_length: "4.1 mm" +iso: "100" +shutter_speed: "1/30" +metering: "Multi-segment" +flash: "No Flash" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "iPhone 5s" +lens_info: "4.12mm f/2.2" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/xha-xhu-zhi.md b/site/content/photos/xha-xhu-zhi.md new file mode 100644 index 0000000..6ad87d3 --- /dev/null +++ b/site/content/photos/xha-xhu-zhi.md @@ -0,0 +1,32 @@ +--- +title: "xha-xhu-zhi" +type: "upload" +description: "TBC" +date: "2006-07-24 08:43:08+00:00" +album: "people" +filename: "xha-xhu-zhi.md" +series: "" +cl_public_id: "people/xha-xhu-zhi" +cl_version: 1497005604 +format: "tiff" +bytes: 4898044 +width: 1920 +height: 1440 +exposure_mode: "Auto" +program: "Program AE" +aperture: "2.8" +focal_length: "46.8 mm" +iso: "200" +shutter_speed: "1/194" +metering: "Multi-segment" +flash: "Off, Did not fire" +white_balance: "Auto" +colour_temp: "No colour temperature" +has_crop: "No" +orientation: "Horizontal (normal)" +camera_model: "FinePix S602 ZOOM" +lens_info: "No lens info" +artist: "No artist info" +x_resolution: "72" +y_resolution: "72" +--- \ No newline at end of file diff --git a/site/content/photos/yves.md b/site/content/photos/yves.md new file mode 100644 index 0000000..fe8e2b6 --- /dev/null +++ b/site/content/photos/yves.md @@ -0,0 +1,32 @@ +--- +title: "yves" +type: "upload" +description: "TBC" +date: "2012-01-01 01:00:04+00:00" +album: "people" +filename: "yves.md" +series: "" +cl_public_id: "people/yves" +cl_version: 1497005608 +format: "tiff" +bytes: 6744820 +width: 2174 +height: 1440 +exposure_mode: "Auto" +program: "Not Defined" +aperture: "4.0" +focal_length: "11.0 mm" +iso: "800" +shutter_speed: "1/60" +metering: "Multi-segment" +flash: "On, Return detected" +white_balance: "Custom" +colour_temp: "5900" +has_crop: "false" +orientation: "Horizontal (normal)" +camera_model: "NIKON D7000" +lens_info: "11-16mm f/2.8" +artist: "Matt Finucane" +x_resolution: "300" +y_resolution: "300" +--- \ No newline at end of file From 9470b074ee3cfb9583c61c0527c69cd3fb1e5dc7 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sat, 10 Jun 2017 23:22:36 +0200 Subject: [PATCH 12/66] Correcting content .md files. --- .docker/site/Dockerfile | 2 +- build.yml | 2 +- docker-compose.yml | 2 +- site/archetypes/photo.md | 2 +- site/content/photos/adac-building.md | 2 +- site/content/photos/aideens-rock-anna.md | 2 +- site/content/photos/alabama-3-guitarist.md | 2 +- site/content/photos/alabama-3-lead.md | 2 +- site/content/photos/alabama-3-single.md | 2 +- site/content/photos/alabama-3-stage.md | 2 +- site/content/photos/alabama-3-vocals.md | 2 +- site/content/photos/alberto-blindfolded.md | 2 +- site/content/photos/alberto-david-unicorns.md | 2 +- site/content/photos/alberto-dschung.md | 2 +- site/content/photos/alt-neue-berlin.md | 2 +- site/content/photos/anna-candid.md | 2 +- site/content/photos/anna-cite-foche.md | 2 +- site/content/photos/anna-grogans-pint.md | 2 +- site/content/photos/anna-light-museum.md | 2 +- site/content/photos/anna-pearse-station.md | 2 +- site/content/photos/anna-portfolio-closeup.md | 2 +- site/content/photos/anna-portfolio-desk.md | 2 +- site/content/photos/anna-portrait.md | 2 +- site/content/photos/anna-shoot-facing-camera.md | 2 +- site/content/photos/anna-shoot-flowers.md | 2 +- site/content/photos/anna-shoot-hair-swirl.md | 2 +- site/content/photos/anna_markt.md | 2 +- site/content/photos/anna_pier.md | 2 +- site/content/photos/balcony-plants.md | 2 +- site/content/photos/ballinskelligs-cottage.md | 2 +- site/content/photos/bankomat-berlin.md | 2 +- site/content/photos/barcelona-ship.md | 2 +- site/content/photos/berlin-10k-group.md | 2 +- site/content/photos/berlin-5k-ruairi.md | 2 +- site/content/photos/berlin-christmas-market-bar.md | 2 +- .../content/photos/berlin-christmas-market-shed.md | 2 +- site/content/photos/berlin-christmas-market.md | 2 +- .../photos/berlin-demonstration-lying-down.md | 2 +- site/content/photos/berlin-expo-messe-nord.md | 2 +- site/content/photos/berlin-protest-banner.md | 2 +- site/content/photos/berlin-supermarkt.md | 2 +- site/content/photos/bird-closeup.md | 2 +- site/content/photos/bird-poised.md | 2 +- site/content/photos/blumen.md | 2 +- site/content/photos/border.md | 2 +- site/content/photos/brandenburger-tor.md | 2 +- site/content/photos/braurei.md | 2 +- site/content/photos/building-pattern.md | 2 +- site/content/photos/busker-street-berlin.md | 2 +- site/content/photos/canal.md | 2 +- site/content/photos/casino-berlin.md | 2 +- .../content/photos/channel-tunnel-self-portrait.md | 2 +- site/content/photos/channel-tunnel.md | 2 +- site/content/photos/charlottenburg-lake-fisheye.md | 2 +- site/content/photos/charlottenburg-statue.md | 2 +- site/content/photos/charlottenburg-tree.md | 2 +- site/content/photos/chloe.md | 2 +- site/content/photos/christina-berlin.md | 2 +- site/content/photos/christina-light-museum.md | 2 +- site/content/photos/christina-matt-berlin.md | 2 +- site/content/photos/church_interior.md | 2 +- site/content/photos/cite-foche-anna-illuminated.md | 2 +- site/content/photos/cite-foche-anna-rain.md | 2 +- site/content/photos/cite-foche-cinema.md | 2 +- site/content/photos/cite-foche-exterior.md | 2 +- site/content/photos/cite-foche-hole-wall.md | 2 +- site/content/photos/cite-foche-offices.md | 2 +- site/content/photos/cite-foche-reflections.md | 2 +- site/content/photos/city-lamp-posters.md | 2 +- site/content/photos/cliffs-2005-cans.md | 2 +- site/content/photos/cliffs-2005.md | 2 +- site/content/photos/cliffs-toadstool.md | 4 ++-- site/content/photos/colm.md | 2 +- site/content/photos/crew-camera-checking.md | 2 +- site/content/photos/dad-lauren.md | 2 +- site/content/photos/dan_and_luke_kitchen.md | 2 +- site/content/photos/dan_sophie.md | 2 +- site/content/photos/dark-grass.md | 4 ++-- site/content/photos/david-oliveira.md | 2 +- site/content/photos/deer-park-window.md | 2 +- site/content/photos/demonstration-crowd-berlin.md | 2 +- site/content/photos/dschung-hand.md | 2 +- site/content/photos/dschung-nori.md | 2 +- site/content/photos/dschung-standing.md | 2 +- site/content/photos/dublin-from-howth.md | 2 +- site/content/photos/dublin-street.md | 2 +- site/content/photos/dublin.md | 2 +- site/content/photos/eagle-tempelhof.md | 2 +- site/content/photos/easter-market-cakes.md | 2 +- site/content/photos/easter-prost.md | 2 +- site/content/photos/eavan.md | 2 +- site/content/photos/escalator.md | 2 +- site/content/photos/eternit.md | 2 +- site/content/photos/expo-center-veb-berlin.md | 2 +- site/content/photos/fence-poland.md | 2 +- site/content/photos/fence.md | 2 +- site/content/photos/fernsehturm.md | 2 +- site/content/photos/film-palast.md | 2 +- site/content/photos/finucane-family.md | 2 +- site/content/photos/flasche-tempelhof.md | 2 +- site/content/photos/fontane_trevi.md | 2 +- site/content/photos/forest.md | 2 +- site/content/photos/francis-wine-glass.md | 2 +- site/content/photos/frosted-leaves.md | 2 +- site/content/photos/german-actress-forest.md | 2 +- site/content/photos/glendalough-landscape.md | 2 +- site/content/photos/glendalough-path.md | 2 +- site/content/photos/glendalough-tower.md | 2 +- site/content/photos/gluwein-christmas-market.md | 2 +- site/content/photos/greifswalder-tunnel.md | 2 +- site/content/photos/greifswaler_apartments.md | 2 +- site/content/photos/grogans-finger-chomp.md | 2 +- site/content/photos/grogans-the-castle.md | 2 +- site/content/photos/haus-der-statistiche-2.md | 2 +- site/content/photos/haus-der-statistiche.md | 2 +- site/content/photos/hohenschenhausen-cell.md | 2 +- site/content/photos/hot-sprockets-leads.md | 2 +- .../photos/hot-sprockets-stage-vantastival.md | 2 +- site/content/photos/howth-fishing-boat.md | 2 +- site/content/photos/howth-harbour-lighthouse.md | 2 +- site/content/photos/howth-harbour.md | 2 +- site/content/photos/howth-horse.md | 2 +- site/content/photos/howth_pier.md | 2 +- site/content/photos/ice-lake-charlottenburg.md | 2 +- site/content/photos/jonathan-cliffs.md | 2 +- site/content/photos/jonathan-mum.md | 2 +- site/content/photos/jonathan.md | 2 +- site/content/photos/jumper.md | 2 +- site/content/photos/kaisers.md | 2 +- site/content/photos/karl-mark-allee-shops.md | 2 +- site/content/photos/karl-marx-alle-anna.md | 2 +- site/content/photos/karl-marx-allee.md | 2 +- site/content/photos/karneval-der-kulturen-dress.md | 2 +- site/content/photos/karneval-der-kulturen-group.md | 2 +- site/content/photos/karneval-der-kulturen-hat.md | 2 +- .../content/photos/karneval-der-kulturen-mojito.md | 2 +- .../content/photos/karneval-der-kulturen-people.md | 2 +- .../photos/karneval-der-kulturen-sandals.md | 2 +- site/content/photos/karneval-der-kulturen.md | 2 +- site/content/photos/kerry-cottage-long-exposure.md | 2 +- site/content/photos/kerry-road-horse.md | 2 +- site/content/photos/kerry-sheep.md | 2 +- site/content/photos/kino-international-berlin.md | 2 +- site/content/photos/kitesurfer-tempelhof.md | 2 +- site/content/photos/kluner-kranich-visitors.md | 2 +- site/content/photos/klunkerkranich-chairs.md | 2 +- site/content/photos/klunkerkranich-fernsehturm.md | 2 +- site/content/photos/klunkerkranich.md | 2 +- .../photos/knonigs-wusterhausen-ruairi-fionn.md | 2 +- site/content/photos/konigs-wusterhausen.md | 2 +- site/content/photos/kudamm-christmas.md | 2 +- site/content/photos/kudamm-kiosk.md | 2 +- site/content/photos/kunst-museum.md | 2 +- site/content/photos/lahu-village-cat.md | 2 +- site/content/photos/lake.md | 2 +- site/content/photos/lakes-killarney.md | 2 +- .../content/photos/lakeside-konigs-wusterhausen.md | 2 +- site/content/photos/leaves-water.md | 2 +- site/content/photos/li-behind-paper.md | 2 +- site/content/photos/li-tempelhof.md | 2 +- site/content/photos/li.md | 2 +- site/content/photos/look-beautiful-tempelhof.md | 2 +- site/content/photos/lunchtime.md | 2 +- site/content/photos/marienfeld-church.md | 2 +- site/content/photos/marienfield-church-ceiling.md | 2 +- site/content/photos/markt-spiegel-anna.md | 2 +- site/content/photos/messe-nord-race-terrace.md | 2 +- site/content/photos/meteor-meetup.md | 2 +- site/content/photos/mick-beach.md | 2 +- site/content/photos/mixing-desk.md | 2 +- site/content/photos/model-airplane.md | 2 +- site/content/photos/mossy-drums.md | 2 +- site/content/photos/mossy-laura.md | 2 +- site/content/photos/mossy-nolan.md | 2 +- site/content/photos/motel-avus.md | 2 +- site/content/photos/northwest-200.md | 2 +- .../photos/norwegian-actress-forest-shoot.md | 2 +- site/content/photos/norwegian-actress-profile.md | 2 +- site/content/photos/orb.md | 2 +- site/content/photos/overcooked_anna.md | 2 +- site/content/photos/pai-cat.md | 2 +- site/content/photos/pai-parrot.md | 2 +- site/content/photos/paul-and-luke.md | 2 +- site/content/photos/paul-james-beach.md | 2 +- site/content/photos/peter-coonan-redline.md | 2 +- site/content/photos/phi-phi-monkey.md | 2 +- site/content/photos/phil-bans-donegal.md | 2 +- site/content/photos/phoenix-park-deer.md | 2 +- site/content/photos/phoenix-park-model-plane.md | 2 +- site/content/photos/phoenix-park-training.md | 2 +- site/content/photos/photographer.md | 2 +- site/content/photos/plant-labels.md | 2 +- site/content/photos/poland-house.md | 2 +- site/content/photos/polizei.md | 2 +- site/content/photos/portugal-guitarist.md | 2 +- site/content/photos/portugal-street.md | 2 +- site/content/photos/pppb.md | 2 +- site/content/photos/praater.md | 2 +- site/content/photos/prairie-dawgs-connor.md | 2 +- site/content/photos/prairie-dawgs-karen.md | 2 +- site/content/photos/prairie-dawgs-ruairi.md | 2 +- site/content/photos/presse-tabak-berlin.md | 2 +- site/content/photos/redline-film-take-dublin.md | 2 +- site/content/photos/refeshments.md | 2 +- site/content/photos/rhob-cunningham.md | 2 +- site/content/photos/rian-ro-kerry-bar.md | 2 +- site/content/photos/rian-ro-kerry-lobby.md | 2 +- site/content/photos/rian-ro-kerry-windows.md | 2 +- site/content/photos/rian-ro-kerry.md | 2 +- site/content/photos/richie-cmc.md | 2 +- site/content/photos/rixdorf-christmas-market.md | 2 +- site/content/photos/ruairi-fionn.md | 2 +- site/content/photos/rupert-clarissa.md | 2 +- site/content/photos/russian-embassy-berlin.md | 2 +- site/content/photos/scaffold-tunnel.md | 2 +- site/content/photos/schneedrop.md | 2 +- site/content/photos/schnitzel_konig.md | 2 +- site/content/photos/seagull-poland.md | 2 +- site/content/photos/shopping-trolley.md | 2 +- site/content/photos/side-street-berlin.md | 2 +- site/content/photos/side_steps_wall.md | 2 +- site/content/photos/singer.md | 2 +- site/content/photos/skelligs-kerry.md | 2 +- site/content/photos/smartphones.md | 2 +- site/content/photos/spirit-of-folk-bird.md | 2 +- site/content/photos/spirit-of-folk-musician.md | 2 +- site/content/photos/spirit-of-folk-people.md | 2 +- site/content/photos/spirit-of-folk-shield.md | 2 +- site/content/photos/spirit-of-folk-tent.md | 2 +- site/content/photos/spree-statue.md | 2 +- site/content/photos/spreepark-ferris-wheel.md | 2 +- site/content/photos/spwc-dublin-waldos.md | 2 +- site/content/photos/spwc-performer.md | 2 +- site/content/photos/st-finans-bay-long-exposure.md | 2 +- site/content/photos/st-finians-beach.md | 2 +- site/content/photos/stadtbad-wedding-anna-dark.md | 2 +- site/content/photos/stadtbad-wedding-anna-pool.md | 2 +- site/content/photos/stadtbad-wedding-anna.md | 2 +- site/content/photos/stadtbad-wedding-blinds.md | 2 +- site/content/photos/stadtbad-wedding-door.md | 2 +- site/content/photos/stadtbad-wedding-stairs.md | 2 +- site/content/photos/stadtbadd-wedding.md | 2 +- site/content/photos/steps.md | 2 +- site/content/photos/stina.md | 2 +- site/content/photos/stoplerstein.md | 2 +- site/content/photos/street-performer.md | 2 +- site/content/photos/table-tennis-berlin.md | 2 +- site/content/photos/tara-street-dart.md | 2 +- site/content/photos/tempelhof-cyclist.md | 2 +- site/content/photos/tempelhof-floodlight.md | 2 +- site/content/photos/the-glen-shop.md | 4 ++-- site/content/photos/the-young-folk-lead.md | 2 +- site/content/photos/tim-hot-sprockets-under-mic.md | 2 +- site/content/photos/tim-hot-sprockets.md | 2 +- site/content/photos/tree-howth.md | 2 +- site/content/photos/tree-killarney.md | 2 +- site/content/photos/tree.md | 2 +- site/content/photos/treehouse-klunkerkranich.md | 2 +- site/content/photos/treptower-war-memorial.md | 2 +- site/content/photos/ubahn-berlin.md | 2 +- site/content/photos/unicorns.md | 2 +- site/content/photos/vantastival-2011-daytime-gs.md | 2 +- site/content/photos/vantastival-2011-group.md | 2 +- site/content/photos/vantastival-2011.md | 2 +- site/content/photos/vantastival-guitarist.md | 2 +- site/content/photos/vantastival-performer.md | 2 +- site/content/photos/vantastival-rochelle.md | 2 +- site/content/photos/vantastival-ross.md | 2 +- site/content/photos/vantastival-singer.md | 2 +- site/content/photos/vantastival-vin.md | 2 +- site/content/photos/viking-renactor.md | 2 +- site/content/photos/violinist.md | 2 +- site/content/photos/volkswagen-berlin.md | 2 +- site/content/photos/weinachts-markt-2016.md | 2 +- site/content/photos/west-berlin-apartment-door.md | 2 +- site/content/photos/whelans.md | 2 +- site/content/photos/wide-angle-kitchen.md | 2 +- site/content/photos/window-pattern.md | 2 +- site/content/photos/wittenberg.md | 2 +- site/content/photos/workplace.md | 4 ++-- site/content/photos/xha-xhu-zhi.md | 2 +- site/content/photos/yves.md | 2 +- site/layouts/index.html | 4 ++-- site/layouts/photos/card.html | 3 +++ site/layouts/photos/single.html | 14 ++++++++++++++ 285 files changed, 305 insertions(+), 288 deletions(-) diff --git a/.docker/site/Dockerfile b/.docker/site/Dockerfile index eb9d7dc..e0d7b5a 100644 --- a/.docker/site/Dockerfile +++ b/.docker/site/Dockerfile @@ -9,7 +9,7 @@ RUN apk add --update wget ca-certificates && \ wget https://github.com/spf13/hugo/releases/download/v${hugo_version}/hugo_${hugo_version}_Linux-64bit.tar.gz && \ tar xzf hugo_${hugo_version}_Linux-64bit.tar.gz && \ rm -r hugo_${hugo_version}_Linux-64bit.tar.gz && \ - mv hugo*/hugo* /usr/bin/hugo && \ + mv hugo /usr/bin/hugo && \ apk del wget ca-certificates && \ rm /var/cache/apk/* diff --git a/build.yml b/build.yml index 1760196..e28c1df 100644 --- a/build.yml +++ b/build.yml @@ -7,7 +7,7 @@ services: context: .docker/site dockerfile: Dockerfile args: - hugo_version: "0.20.2" + hugo_version: "0.21" volumes: - ./:/opt:rw command: hugo -s /opt/site -b http://cinematt.build --config=./site/build.yml -d ../public diff --git a/docker-compose.yml b/docker-compose.yml index d47c164..7287cc7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: context: .docker/site dockerfile: Dockerfile args: - hugo_version: "0.20.2" + hugo_version: "0.21" ports: - "1313:1313" volumes: diff --git a/site/archetypes/photo.md b/site/archetypes/photo.md index b48b3bd..9997227 100644 --- a/site/archetypes/photo.md +++ b/site/archetypes/photo.md @@ -1,6 +1,6 @@ --- title: "" -type: "" +mediatype: "" description: "" date: "" album: "" diff --git a/site/content/photos/adac-building.md b/site/content/photos/adac-building.md index 1f4429c..eb32890 100644 --- a/site/content/photos/adac-building.md +++ b/site/content/photos/adac-building.md @@ -1,6 +1,6 @@ --- title: "adac-building" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 10:49:50+00:00" album: "experimental" diff --git a/site/content/photos/aideens-rock-anna.md b/site/content/photos/aideens-rock-anna.md index 1b16e64..fe56e41 100644 --- a/site/content/photos/aideens-rock-anna.md +++ b/site/content/photos/aideens-rock-anna.md @@ -1,6 +1,6 @@ --- title: "aideens-rock-anna" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-06 20:22:54+00:00" album: "people" diff --git a/site/content/photos/alabama-3-guitarist.md b/site/content/photos/alabama-3-guitarist.md index 2d9beb8..7c7d669 100644 --- a/site/content/photos/alabama-3-guitarist.md +++ b/site/content/photos/alabama-3-guitarist.md @@ -1,6 +1,6 @@ --- title: "alabama-3-guitarist" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 23:41:18+00:00" album: "music" diff --git a/site/content/photos/alabama-3-lead.md b/site/content/photos/alabama-3-lead.md index b9e00b4..e9d3f76 100644 --- a/site/content/photos/alabama-3-lead.md +++ b/site/content/photos/alabama-3-lead.md @@ -1,6 +1,6 @@ --- title: "alabama-3-lead" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 23:31:50+00:00" album: "music" diff --git a/site/content/photos/alabama-3-single.md b/site/content/photos/alabama-3-single.md index e9720f3..5f35c90 100644 --- a/site/content/photos/alabama-3-single.md +++ b/site/content/photos/alabama-3-single.md @@ -1,6 +1,6 @@ --- title: "alabama-3-single" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 23:31:27+00:00" album: "music" diff --git a/site/content/photos/alabama-3-stage.md b/site/content/photos/alabama-3-stage.md index e20f3cd..37ff4b6 100644 --- a/site/content/photos/alabama-3-stage.md +++ b/site/content/photos/alabama-3-stage.md @@ -1,6 +1,6 @@ --- title: "alabama-3-stage" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 23:40:52+00:00" album: "music" diff --git a/site/content/photos/alabama-3-vocals.md b/site/content/photos/alabama-3-vocals.md index fe3ef49..f83699b 100644 --- a/site/content/photos/alabama-3-vocals.md +++ b/site/content/photos/alabama-3-vocals.md @@ -1,6 +1,6 @@ --- title: "alabama-3-vocals" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 23:41:23+00:00" album: "music" diff --git a/site/content/photos/alberto-blindfolded.md b/site/content/photos/alberto-blindfolded.md index 1728a61..5b9955a 100644 --- a/site/content/photos/alberto-blindfolded.md +++ b/site/content/photos/alberto-blindfolded.md @@ -1,6 +1,6 @@ --- title: "alberto-blindfolded" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 09:45:55+00:00" album: "people" diff --git a/site/content/photos/alberto-david-unicorns.md b/site/content/photos/alberto-david-unicorns.md index b801846..89864b5 100644 --- a/site/content/photos/alberto-david-unicorns.md +++ b/site/content/photos/alberto-david-unicorns.md @@ -1,6 +1,6 @@ --- title: "alberto-david-unicorns" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 19:44:29+00:00" album: "people" diff --git a/site/content/photos/alberto-dschung.md b/site/content/photos/alberto-dschung.md index d39229f..79a87ea 100644 --- a/site/content/photos/alberto-dschung.md +++ b/site/content/photos/alberto-dschung.md @@ -1,6 +1,6 @@ --- title: "alberto-dschung" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 09:33:21+00:00" album: "people" diff --git a/site/content/photos/alt-neue-berlin.md b/site/content/photos/alt-neue-berlin.md index a8e905a..2f6ba1c 100644 --- a/site/content/photos/alt-neue-berlin.md +++ b/site/content/photos/alt-neue-berlin.md @@ -1,6 +1,6 @@ --- title: "alt-neue-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 17:28:01+00:00" album: "city" diff --git a/site/content/photos/anna-candid.md b/site/content/photos/anna-candid.md index 0068b8a..5ca4594 100644 --- a/site/content/photos/anna-candid.md +++ b/site/content/photos/anna-candid.md @@ -1,6 +1,6 @@ --- title: "anna-candid" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-20 15:54:51+00:00" album: "people" diff --git a/site/content/photos/anna-cite-foche.md b/site/content/photos/anna-cite-foche.md index 1e6103a..ff6035f 100644 --- a/site/content/photos/anna-cite-foche.md +++ b/site/content/photos/anna-cite-foche.md @@ -1,6 +1,6 @@ --- title: "anna-cite-foche" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-21 18:56:23+00:00" album: "people" diff --git a/site/content/photos/anna-grogans-pint.md b/site/content/photos/anna-grogans-pint.md index d25b068..39eff5d 100644 --- a/site/content/photos/anna-grogans-pint.md +++ b/site/content/photos/anna-grogans-pint.md @@ -1,6 +1,6 @@ --- title: "anna-grogans-pint" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-07 18:29:47+00:00" album: "people" diff --git a/site/content/photos/anna-light-museum.md b/site/content/photos/anna-light-museum.md index 4bf6071..1385d73 100644 --- a/site/content/photos/anna-light-museum.md +++ b/site/content/photos/anna-light-museum.md @@ -1,6 +1,6 @@ --- title: "anna-light-museum" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 16:55:50+00:00" album: "people" diff --git a/site/content/photos/anna-pearse-station.md b/site/content/photos/anna-pearse-station.md index 64b7341..8e890fb 100644 --- a/site/content/photos/anna-pearse-station.md +++ b/site/content/photos/anna-pearse-station.md @@ -1,6 +1,6 @@ --- title: "anna-pearse-station" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-07 19:02:37+00:00" album: "city" diff --git a/site/content/photos/anna-portfolio-closeup.md b/site/content/photos/anna-portfolio-closeup.md index 0370cb6..fe9bb17 100644 --- a/site/content/photos/anna-portfolio-closeup.md +++ b/site/content/photos/anna-portfolio-closeup.md @@ -1,6 +1,6 @@ --- title: "anna-portfolio-closeup" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-05-26 20:25:56+00:00" album: "people" diff --git a/site/content/photos/anna-portfolio-desk.md b/site/content/photos/anna-portfolio-desk.md index 1729af4..cd9218e 100644 --- a/site/content/photos/anna-portfolio-desk.md +++ b/site/content/photos/anna-portfolio-desk.md @@ -1,6 +1,6 @@ --- title: "anna-portfolio-desk" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-05-26 18:04:33+00:00" album: "people" diff --git a/site/content/photos/anna-portrait.md b/site/content/photos/anna-portrait.md index 7e72ca1..c66efc7 100644 --- a/site/content/photos/anna-portrait.md +++ b/site/content/photos/anna-portrait.md @@ -1,6 +1,6 @@ --- title: "anna-portrait" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-05-21 19:28:23+00:00" album: "people" diff --git a/site/content/photos/anna-shoot-facing-camera.md b/site/content/photos/anna-shoot-facing-camera.md index 74ed048..631d23d 100644 --- a/site/content/photos/anna-shoot-facing-camera.md +++ b/site/content/photos/anna-shoot-facing-camera.md @@ -1,6 +1,6 @@ --- title: "anna-shoot-facing-camera" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-30 19:03:08+00:00" album: "people" diff --git a/site/content/photos/anna-shoot-flowers.md b/site/content/photos/anna-shoot-flowers.md index d26bdca..e07913d 100644 --- a/site/content/photos/anna-shoot-flowers.md +++ b/site/content/photos/anna-shoot-flowers.md @@ -1,6 +1,6 @@ --- title: "anna-shoot-flowers" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-30 15:42:00+00:00" album: "people" diff --git a/site/content/photos/anna-shoot-hair-swirl.md b/site/content/photos/anna-shoot-hair-swirl.md index d98f4e2..95a1911 100644 --- a/site/content/photos/anna-shoot-hair-swirl.md +++ b/site/content/photos/anna-shoot-hair-swirl.md @@ -1,6 +1,6 @@ --- title: "anna-shoot-hair-swirl" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-30 19:05:26+00:00" album: "people" diff --git a/site/content/photos/anna_markt.md b/site/content/photos/anna_markt.md index 55fa2e0..a032007 100644 --- a/site/content/photos/anna_markt.md +++ b/site/content/photos/anna_markt.md @@ -1,6 +1,6 @@ --- title: "anna_markt" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-01-10 18:42:41+00:00" album: "city" diff --git a/site/content/photos/anna_pier.md b/site/content/photos/anna_pier.md index c45b0e8..f2ffec9 100644 --- a/site/content/photos/anna_pier.md +++ b/site/content/photos/anna_pier.md @@ -1,6 +1,6 @@ --- title: "anna_pier" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-04-14 20:14:24" album: "people" diff --git a/site/content/photos/balcony-plants.md b/site/content/photos/balcony-plants.md index 156f4fb..a032d7e 100644 --- a/site/content/photos/balcony-plants.md +++ b/site/content/photos/balcony-plants.md @@ -1,6 +1,6 @@ --- title: "balcony-plants" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-05-29 20:59:38+00:00" album: "nature" diff --git a/site/content/photos/ballinskelligs-cottage.md b/site/content/photos/ballinskelligs-cottage.md index fc7e050..a774836 100644 --- a/site/content/photos/ballinskelligs-cottage.md +++ b/site/content/photos/ballinskelligs-cottage.md @@ -1,6 +1,6 @@ --- title: "ballinskelligs-cottage" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-04-01 16:51:48+00:00" album: "abandoned" diff --git a/site/content/photos/bankomat-berlin.md b/site/content/photos/bankomat-berlin.md index a515945..782b985 100644 --- a/site/content/photos/bankomat-berlin.md +++ b/site/content/photos/bankomat-berlin.md @@ -1,6 +1,6 @@ --- title: "bankomat-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-17 02:54:02+00:00" album: "city" diff --git a/site/content/photos/barcelona-ship.md b/site/content/photos/barcelona-ship.md index 08f6225..91fda41 100644 --- a/site/content/photos/barcelona-ship.md +++ b/site/content/photos/barcelona-ship.md @@ -1,6 +1,6 @@ --- title: "barcelona-ship" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-06-09 18:20:44+00:00" album: "city" diff --git a/site/content/photos/berlin-10k-group.md b/site/content/photos/berlin-10k-group.md index 92e36be..9f867be 100644 --- a/site/content/photos/berlin-10k-group.md +++ b/site/content/photos/berlin-10k-group.md @@ -1,6 +1,6 @@ --- title: "berlin-10k-group" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-05-14 12:12:56+00:00" album: "events" diff --git a/site/content/photos/berlin-5k-ruairi.md b/site/content/photos/berlin-5k-ruairi.md index e1896a7..4d6e247 100644 --- a/site/content/photos/berlin-5k-ruairi.md +++ b/site/content/photos/berlin-5k-ruairi.md @@ -1,6 +1,6 @@ --- title: "berlin-5k-ruairi" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-07-26 20:16:40+00:00" album: "events" diff --git a/site/content/photos/berlin-christmas-market-bar.md b/site/content/photos/berlin-christmas-market-bar.md index fcab4f3..df4deb3 100644 --- a/site/content/photos/berlin-christmas-market-bar.md +++ b/site/content/photos/berlin-christmas-market-bar.md @@ -1,6 +1,6 @@ --- title: "berlin-christmas-market-bar" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-05 18:25:10+00:00" album: "city" diff --git a/site/content/photos/berlin-christmas-market-shed.md b/site/content/photos/berlin-christmas-market-shed.md index 06ed9a4..0cc94b9 100644 --- a/site/content/photos/berlin-christmas-market-shed.md +++ b/site/content/photos/berlin-christmas-market-shed.md @@ -1,6 +1,6 @@ --- title: "berlin-christmas-market-shed" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-05 18:02:19+00:00" album: "city" diff --git a/site/content/photos/berlin-christmas-market.md b/site/content/photos/berlin-christmas-market.md index ae6c9bd..a03fe16 100644 --- a/site/content/photos/berlin-christmas-market.md +++ b/site/content/photos/berlin-christmas-market.md @@ -1,6 +1,6 @@ --- title: "berlin-christmas-market" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-05 17:59:44+00:00" album: "city" diff --git a/site/content/photos/berlin-demonstration-lying-down.md b/site/content/photos/berlin-demonstration-lying-down.md index 23b65db..ea228b3 100644 --- a/site/content/photos/berlin-demonstration-lying-down.md +++ b/site/content/photos/berlin-demonstration-lying-down.md @@ -1,6 +1,6 @@ --- title: "berlin-demonstration-lying-down" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-28 16:08:49+00:00" album: "city" diff --git a/site/content/photos/berlin-expo-messe-nord.md b/site/content/photos/berlin-expo-messe-nord.md index b980c65..f2e9220 100644 --- a/site/content/photos/berlin-expo-messe-nord.md +++ b/site/content/photos/berlin-expo-messe-nord.md @@ -1,6 +1,6 @@ --- title: "berlin-expo-messe-nord" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 13:01:11+00:00" album: "city" diff --git a/site/content/photos/berlin-protest-banner.md b/site/content/photos/berlin-protest-banner.md index c455f70..9cb083a 100644 --- a/site/content/photos/berlin-protest-banner.md +++ b/site/content/photos/berlin-protest-banner.md @@ -1,6 +1,6 @@ --- title: "berlin-protest-banner" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-28 16:06:45+00:00" album: "city" diff --git a/site/content/photos/berlin-supermarkt.md b/site/content/photos/berlin-supermarkt.md index d7a13de..a389067 100644 --- a/site/content/photos/berlin-supermarkt.md +++ b/site/content/photos/berlin-supermarkt.md @@ -1,6 +1,6 @@ --- title: "berlin-supermarkt" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-17 02:57:36+00:00" album: "city" diff --git a/site/content/photos/bird-closeup.md b/site/content/photos/bird-closeup.md index 32d547f..b4e71d2 100644 --- a/site/content/photos/bird-closeup.md +++ b/site/content/photos/bird-closeup.md @@ -1,6 +1,6 @@ --- title: "bird-closeup" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 16:07:03+00:00" album: "nature" diff --git a/site/content/photos/bird-poised.md b/site/content/photos/bird-poised.md index 3c0b7b5..d61e3a6 100644 --- a/site/content/photos/bird-poised.md +++ b/site/content/photos/bird-poised.md @@ -1,6 +1,6 @@ --- title: "bird-poised" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 16:01:53+00:00" album: "nature" diff --git a/site/content/photos/blumen.md b/site/content/photos/blumen.md index 9b3c7f3..a268f2b 100644 --- a/site/content/photos/blumen.md +++ b/site/content/photos/blumen.md @@ -1,6 +1,6 @@ --- title: "blumen" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-30 15:50:48+00:00" album: "nature" diff --git a/site/content/photos/border.md b/site/content/photos/border.md index 50bff38..d78b6bc 100644 --- a/site/content/photos/border.md +++ b/site/content/photos/border.md @@ -1,6 +1,6 @@ --- title: "border" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-08 17:37:55+00:00" album: "city" diff --git a/site/content/photos/brandenburger-tor.md b/site/content/photos/brandenburger-tor.md index e256233..76ae62f 100644 --- a/site/content/photos/brandenburger-tor.md +++ b/site/content/photos/brandenburger-tor.md @@ -1,6 +1,6 @@ --- title: "brandenburger-tor" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 11:30:25+00:00" album: "city" diff --git a/site/content/photos/braurei.md b/site/content/photos/braurei.md index b31acab..c2d9b02 100644 --- a/site/content/photos/braurei.md +++ b/site/content/photos/braurei.md @@ -1,6 +1,6 @@ --- title: "braurei" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-03-11 18:33:15+00:00" album: "experimental" diff --git a/site/content/photos/building-pattern.md b/site/content/photos/building-pattern.md index 4a17da3..92bdb6e 100644 --- a/site/content/photos/building-pattern.md +++ b/site/content/photos/building-pattern.md @@ -1,6 +1,6 @@ --- title: "building-pattern" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 10:47:01+00:00" album: "experimental" diff --git a/site/content/photos/busker-street-berlin.md b/site/content/photos/busker-street-berlin.md index f7bd3a3..6beb3f6 100644 --- a/site/content/photos/busker-street-berlin.md +++ b/site/content/photos/busker-street-berlin.md @@ -1,6 +1,6 @@ --- title: "busker-street-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-11 00:06:00+00:00" album: "city" diff --git a/site/content/photos/canal.md b/site/content/photos/canal.md index ae58404..ddf46cc 100644 --- a/site/content/photos/canal.md +++ b/site/content/photos/canal.md @@ -1,6 +1,6 @@ --- title: "canal" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-20 18:19:34+00:00" album: "people" diff --git a/site/content/photos/casino-berlin.md b/site/content/photos/casino-berlin.md index 964e89a..c2cc31f 100644 --- a/site/content/photos/casino-berlin.md +++ b/site/content/photos/casino-berlin.md @@ -1,6 +1,6 @@ --- title: "casino-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-10 01:45:48+00:00" album: "city" diff --git a/site/content/photos/channel-tunnel-self-portrait.md b/site/content/photos/channel-tunnel-self-portrait.md index e156f3b..1144874 100644 --- a/site/content/photos/channel-tunnel-self-portrait.md +++ b/site/content/photos/channel-tunnel-self-portrait.md @@ -1,6 +1,6 @@ --- title: "channel-tunnel-self-portrait" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-06-07 20:20:20+00:00" album: "experimental" diff --git a/site/content/photos/channel-tunnel.md b/site/content/photos/channel-tunnel.md index 14ecafe..abfd587 100644 --- a/site/content/photos/channel-tunnel.md +++ b/site/content/photos/channel-tunnel.md @@ -1,6 +1,6 @@ --- title: "channel-tunnel" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-06-07 20:06:24+00:00" album: "experimental" diff --git a/site/content/photos/charlottenburg-lake-fisheye.md b/site/content/photos/charlottenburg-lake-fisheye.md index 48e4af8..234bdb0 100644 --- a/site/content/photos/charlottenburg-lake-fisheye.md +++ b/site/content/photos/charlottenburg-lake-fisheye.md @@ -1,6 +1,6 @@ --- title: "charlottenburg-lake-fisheye" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-01-22 16:39:09+00:00" album: "city" diff --git a/site/content/photos/charlottenburg-statue.md b/site/content/photos/charlottenburg-statue.md index 133b2fe..169cfe3 100644 --- a/site/content/photos/charlottenburg-statue.md +++ b/site/content/photos/charlottenburg-statue.md @@ -1,6 +1,6 @@ --- title: "charlottenburg-statue" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-30 16:18:48+00:00" album: "city" diff --git a/site/content/photos/charlottenburg-tree.md b/site/content/photos/charlottenburg-tree.md index 5df7a13..688624b 100644 --- a/site/content/photos/charlottenburg-tree.md +++ b/site/content/photos/charlottenburg-tree.md @@ -1,6 +1,6 @@ --- title: "charlottenburg-tree" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-01-22 16:41:19+00:00" album: "experimental" diff --git a/site/content/photos/chloe.md b/site/content/photos/chloe.md index ca64637..65ab9a0 100644 --- a/site/content/photos/chloe.md +++ b/site/content/photos/chloe.md @@ -1,6 +1,6 @@ --- title: "chloe" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-25 15:02:26+00:00" album: "people" diff --git a/site/content/photos/christina-berlin.md b/site/content/photos/christina-berlin.md index d4466b5..361b609 100644 --- a/site/content/photos/christina-berlin.md +++ b/site/content/photos/christina-berlin.md @@ -1,6 +1,6 @@ --- title: "christina-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 15:29:32+00:00" album: "people" diff --git a/site/content/photos/christina-light-museum.md b/site/content/photos/christina-light-museum.md index 3e2da47..e0c4ce0 100644 --- a/site/content/photos/christina-light-museum.md +++ b/site/content/photos/christina-light-museum.md @@ -1,6 +1,6 @@ --- title: "christina-light-museum" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 17:00:35+00:00" album: "people" diff --git a/site/content/photos/christina-matt-berlin.md b/site/content/photos/christina-matt-berlin.md index e4a5c88..bd89a18 100644 --- a/site/content/photos/christina-matt-berlin.md +++ b/site/content/photos/christina-matt-berlin.md @@ -1,6 +1,6 @@ --- title: "christina-matt-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 15:31:31+00:00" album: "people" diff --git a/site/content/photos/church_interior.md b/site/content/photos/church_interior.md index c43f17b..89a47ad 100644 --- a/site/content/photos/church_interior.md +++ b/site/content/photos/church_interior.md @@ -1,6 +1,6 @@ --- title: "church_interior" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-01-08 16:10:34+00:00" album: "city" diff --git a/site/content/photos/cite-foche-anna-illuminated.md b/site/content/photos/cite-foche-anna-illuminated.md index 630d54f..ed57069 100644 --- a/site/content/photos/cite-foche-anna-illuminated.md +++ b/site/content/photos/cite-foche-anna-illuminated.md @@ -1,6 +1,6 @@ --- title: "cite-foche-anna-illuminated" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-21 19:07:18+00:00" album: "abandoned" diff --git a/site/content/photos/cite-foche-anna-rain.md b/site/content/photos/cite-foche-anna-rain.md index 3c06791..bd0bc0c 100644 --- a/site/content/photos/cite-foche-anna-rain.md +++ b/site/content/photos/cite-foche-anna-rain.md @@ -1,6 +1,6 @@ --- title: "cite-foche-anna-rain" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-21 19:02:32+00:00" album: "abandoned" diff --git a/site/content/photos/cite-foche-cinema.md b/site/content/photos/cite-foche-cinema.md index 4636d16..c49639c 100644 --- a/site/content/photos/cite-foche-cinema.md +++ b/site/content/photos/cite-foche-cinema.md @@ -1,6 +1,6 @@ --- title: "cite-foche-cinema" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-21 18:28:07+00:00" album: "abandoned" diff --git a/site/content/photos/cite-foche-exterior.md b/site/content/photos/cite-foche-exterior.md index 7dfeef5..06615e8 100644 --- a/site/content/photos/cite-foche-exterior.md +++ b/site/content/photos/cite-foche-exterior.md @@ -1,6 +1,6 @@ --- title: "cite-foche-exterior" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-21 18:13:05+00:00" album: "abandoned" diff --git a/site/content/photos/cite-foche-hole-wall.md b/site/content/photos/cite-foche-hole-wall.md index 9266c13..c71cae1 100644 --- a/site/content/photos/cite-foche-hole-wall.md +++ b/site/content/photos/cite-foche-hole-wall.md @@ -1,6 +1,6 @@ --- title: "cite-foche-hole-wall" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-21 18:31:57+00:00" album: "abandoned" diff --git a/site/content/photos/cite-foche-offices.md b/site/content/photos/cite-foche-offices.md index de0c7df..ee0be7d 100644 --- a/site/content/photos/cite-foche-offices.md +++ b/site/content/photos/cite-foche-offices.md @@ -1,6 +1,6 @@ --- title: "cite-foche-offices" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-21 18:43:21+00:00" album: "abandoned" diff --git a/site/content/photos/cite-foche-reflections.md b/site/content/photos/cite-foche-reflections.md index fe7dd62..6fbdfe8 100644 --- a/site/content/photos/cite-foche-reflections.md +++ b/site/content/photos/cite-foche-reflections.md @@ -1,6 +1,6 @@ --- title: "cite-foche-reflections" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-21 19:05:14+00:00" album: "abandoned" diff --git a/site/content/photos/city-lamp-posters.md b/site/content/photos/city-lamp-posters.md index 450ed9c..9f35e6d 100644 --- a/site/content/photos/city-lamp-posters.md +++ b/site/content/photos/city-lamp-posters.md @@ -1,6 +1,6 @@ --- title: "city-lamp-posters" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 15:22:21+00:00" album: "city" diff --git a/site/content/photos/cliffs-2005-cans.md b/site/content/photos/cliffs-2005-cans.md index 240e82d..3014ccc 100644 --- a/site/content/photos/cliffs-2005-cans.md +++ b/site/content/photos/cliffs-2005-cans.md @@ -1,6 +1,6 @@ --- title: "cliffs-2005-cans" -type: "upload" +mediatype: "upload" description: "TBC" date: "2005-02-01 18:17:16+00:00" album: "experimental" diff --git a/site/content/photos/cliffs-2005.md b/site/content/photos/cliffs-2005.md index 6436b45..03d5314 100644 --- a/site/content/photos/cliffs-2005.md +++ b/site/content/photos/cliffs-2005.md @@ -1,6 +1,6 @@ --- title: "cliffs-2005" -type: "upload" +mediatype: "upload" description: "TBC" date: "2005-02-01 18:08:42+00:00" album: "experimental" diff --git a/site/content/photos/cliffs-toadstool.md b/site/content/photos/cliffs-toadstool.md index d6b6484..16b23f7 100644 --- a/site/content/photos/cliffs-toadstool.md +++ b/site/content/photos/cliffs-toadstool.md @@ -1,8 +1,8 @@ --- title: "cliffs-toadstool" -type: "upload" +mediatype: "upload" description: "TBC" -date: "2003-11-28 17-31-28 17:31:28+00:00" +date: "2003-11-28 17:31:28+00:00" album: "nature" filename: "cliffs-toadstool.md" series: "" diff --git a/site/content/photos/colm.md b/site/content/photos/colm.md index 891e594..1075f7f 100644 --- a/site/content/photos/colm.md +++ b/site/content/photos/colm.md @@ -1,6 +1,6 @@ --- title: "colm" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-25 15:27:03+00:00" album: "music" diff --git a/site/content/photos/crew-camera-checking.md b/site/content/photos/crew-camera-checking.md index 4232b59..5271d84 100644 --- a/site/content/photos/crew-camera-checking.md +++ b/site/content/photos/crew-camera-checking.md @@ -1,6 +1,6 @@ --- title: "crew-camera-checking" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 18:08:23+00:00" album: "people" diff --git a/site/content/photos/dad-lauren.md b/site/content/photos/dad-lauren.md index d8cff36..082d5cf 100644 --- a/site/content/photos/dad-lauren.md +++ b/site/content/photos/dad-lauren.md @@ -1,6 +1,6 @@ --- title: "dad-lauren" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-02-19 14:04:33+00:00" album: "people" diff --git a/site/content/photos/dan_and_luke_kitchen.md b/site/content/photos/dan_and_luke_kitchen.md index dd2f0f7..4ff6277 100644 --- a/site/content/photos/dan_and_luke_kitchen.md +++ b/site/content/photos/dan_and_luke_kitchen.md @@ -1,6 +1,6 @@ --- title: "dan_and_luke_kitchen" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-25 15:07:07+00:00" album: "people" diff --git a/site/content/photos/dan_sophie.md b/site/content/photos/dan_sophie.md index de31e53..28c8223 100644 --- a/site/content/photos/dan_sophie.md +++ b/site/content/photos/dan_sophie.md @@ -1,6 +1,6 @@ --- title: "dan_sophie" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-01 14:07:46+00:00" album: "people" diff --git a/site/content/photos/dark-grass.md b/site/content/photos/dark-grass.md index 6eeb90b..9dc2461 100644 --- a/site/content/photos/dark-grass.md +++ b/site/content/photos/dark-grass.md @@ -1,8 +1,8 @@ --- title: "dark-grass" -type: "upload" +mediatype: "upload" description: "TBC" -date: "2003-11-28 17-35-53 17:35:53+00:00" +date: "2003-11-28 17:35:53+00:00" album: "nature" filename: "dark-grass.md" series: "" diff --git a/site/content/photos/david-oliveira.md b/site/content/photos/david-oliveira.md index b140a45..c5170fa 100644 --- a/site/content/photos/david-oliveira.md +++ b/site/content/photos/david-oliveira.md @@ -1,6 +1,6 @@ --- title: "david-oliveira" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 18:45:21+00:00" album: "people" diff --git a/site/content/photos/deer-park-window.md b/site/content/photos/deer-park-window.md index 9e0aa57..04206dd 100644 --- a/site/content/photos/deer-park-window.md +++ b/site/content/photos/deer-park-window.md @@ -1,6 +1,6 @@ --- title: "deer-park-window" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-06 20:03:06+00:00" album: "experimental" diff --git a/site/content/photos/demonstration-crowd-berlin.md b/site/content/photos/demonstration-crowd-berlin.md index b101e5e..121816d 100644 --- a/site/content/photos/demonstration-crowd-berlin.md +++ b/site/content/photos/demonstration-crowd-berlin.md @@ -1,6 +1,6 @@ --- title: "demonstration-crowd-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-28 16:02:55+00:00" album: "city" diff --git a/site/content/photos/dschung-hand.md b/site/content/photos/dschung-hand.md index bb3daf1..ae5f3a6 100644 --- a/site/content/photos/dschung-hand.md +++ b/site/content/photos/dschung-hand.md @@ -1,6 +1,6 @@ --- title: "dschung-hand" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 09:45:27+00:00" album: "people" diff --git a/site/content/photos/dschung-nori.md b/site/content/photos/dschung-nori.md index bd859f2..2ff5ebd 100644 --- a/site/content/photos/dschung-nori.md +++ b/site/content/photos/dschung-nori.md @@ -1,6 +1,6 @@ --- title: "dschung-nori" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 19:17:39+00:00" album: "people" diff --git a/site/content/photos/dschung-standing.md b/site/content/photos/dschung-standing.md index 10f21f3..0376bcc 100644 --- a/site/content/photos/dschung-standing.md +++ b/site/content/photos/dschung-standing.md @@ -1,6 +1,6 @@ --- title: "dschung-standing" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 09:41:01+00:00" album: "people" diff --git a/site/content/photos/dublin-from-howth.md b/site/content/photos/dublin-from-howth.md index 3e27b3e..c81794d 100644 --- a/site/content/photos/dublin-from-howth.md +++ b/site/content/photos/dublin-from-howth.md @@ -1,6 +1,6 @@ --- title: "dublin-from-howth" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-06 18:52:27+00:00" album: "landscapes" diff --git a/site/content/photos/dublin-street.md b/site/content/photos/dublin-street.md index febdf1b..406e144 100644 --- a/site/content/photos/dublin-street.md +++ b/site/content/photos/dublin-street.md @@ -1,6 +1,6 @@ --- title: "dublin-street" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-16 20:09:10+00:00" album: "city" diff --git a/site/content/photos/dublin.md b/site/content/photos/dublin.md index fea9ac9..76106ee 100644 --- a/site/content/photos/dublin.md +++ b/site/content/photos/dublin.md @@ -1,6 +1,6 @@ --- title: "dublin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-16 20:10:51+00:00" album: "experimental" diff --git a/site/content/photos/eagle-tempelhof.md b/site/content/photos/eagle-tempelhof.md index 82b9921..c19fea5 100644 --- a/site/content/photos/eagle-tempelhof.md +++ b/site/content/photos/eagle-tempelhof.md @@ -1,6 +1,6 @@ --- title: "eagle-tempelhof" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-15 15:34:29+00:00" album: "city" diff --git a/site/content/photos/easter-market-cakes.md b/site/content/photos/easter-market-cakes.md index 9d4125a..477f447 100644 --- a/site/content/photos/easter-market-cakes.md +++ b/site/content/photos/easter-market-cakes.md @@ -1,6 +1,6 @@ --- title: "easter-market-cakes" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-20 17:39:05+00:00" album: "events" diff --git a/site/content/photos/easter-prost.md b/site/content/photos/easter-prost.md index 1b8f71d..11a5d6b 100644 --- a/site/content/photos/easter-prost.md +++ b/site/content/photos/easter-prost.md @@ -1,6 +1,6 @@ --- title: "easter-prost" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-03-27 21:06:23+00:00" album: "experimental" diff --git a/site/content/photos/eavan.md b/site/content/photos/eavan.md index 37d44e1..23fbd20 100644 --- a/site/content/photos/eavan.md +++ b/site/content/photos/eavan.md @@ -1,6 +1,6 @@ --- title: "eavan" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 15:33:16+00:00" album: "people" diff --git a/site/content/photos/escalator.md b/site/content/photos/escalator.md index 57809cb..f217fbd 100644 --- a/site/content/photos/escalator.md +++ b/site/content/photos/escalator.md @@ -1,6 +1,6 @@ --- title: "escalator" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-18 16:49:56+00:00" album: "experimental" diff --git a/site/content/photos/eternit.md b/site/content/photos/eternit.md index 14e7df2..aeacf15 100644 --- a/site/content/photos/eternit.md +++ b/site/content/photos/eternit.md @@ -1,6 +1,6 @@ --- title: "eternit" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 16:04:51+00:00" album: "experimental" diff --git a/site/content/photos/expo-center-veb-berlin.md b/site/content/photos/expo-center-veb-berlin.md index 6b318aa..dba457d 100644 --- a/site/content/photos/expo-center-veb-berlin.md +++ b/site/content/photos/expo-center-veb-berlin.md @@ -1,6 +1,6 @@ --- title: "expo-center-veb-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 12:10:58+00:00" album: "city" diff --git a/site/content/photos/fence-poland.md b/site/content/photos/fence-poland.md index 6bfde71..1442d60 100644 --- a/site/content/photos/fence-poland.md +++ b/site/content/photos/fence-poland.md @@ -1,6 +1,6 @@ --- title: "fence-poland" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-09 16:24:51+00:00" album: "experimental" diff --git a/site/content/photos/fence.md b/site/content/photos/fence.md index 4448305..1beb78a 100644 --- a/site/content/photos/fence.md +++ b/site/content/photos/fence.md @@ -1,6 +1,6 @@ --- title: "fence" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-31 13:41:36+00:00" album: "experimental" diff --git a/site/content/photos/fernsehturm.md b/site/content/photos/fernsehturm.md index 1cd0e57..d57006d 100644 --- a/site/content/photos/fernsehturm.md +++ b/site/content/photos/fernsehturm.md @@ -1,6 +1,6 @@ --- title: "fernsehturm" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 17:33:12+00:00" album: "city" diff --git a/site/content/photos/film-palast.md b/site/content/photos/film-palast.md index 90f8b2b..437992c 100644 --- a/site/content/photos/film-palast.md +++ b/site/content/photos/film-palast.md @@ -1,6 +1,6 @@ --- title: "film-palast" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 16:25:44+00:00" album: "city" diff --git a/site/content/photos/finucane-family.md b/site/content/photos/finucane-family.md index fc18bf6..32fd0aa 100644 --- a/site/content/photos/finucane-family.md +++ b/site/content/photos/finucane-family.md @@ -1,6 +1,6 @@ --- title: "finucane-family" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-02-19 14:25:31+00:00" album: "people" diff --git a/site/content/photos/flasche-tempelhof.md b/site/content/photos/flasche-tempelhof.md index 5625aea..9d735f1 100644 --- a/site/content/photos/flasche-tempelhof.md +++ b/site/content/photos/flasche-tempelhof.md @@ -1,6 +1,6 @@ --- title: "flasche-tempelhof" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-15 15:02:35+00:00" album: "city" diff --git a/site/content/photos/fontane_trevi.md b/site/content/photos/fontane_trevi.md index 7c4dad6..beda4d5 100644 --- a/site/content/photos/fontane_trevi.md +++ b/site/content/photos/fontane_trevi.md @@ -1,6 +1,6 @@ --- title: "fontane_trevi" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-01-08 16:34:29+00:00" album: "city" diff --git a/site/content/photos/forest.md b/site/content/photos/forest.md index c4f0ca7..936d920 100644 --- a/site/content/photos/forest.md +++ b/site/content/photos/forest.md @@ -1,6 +1,6 @@ --- title: "forest" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 18:28:31+00:00" album: "landscapes" diff --git a/site/content/photos/francis-wine-glass.md b/site/content/photos/francis-wine-glass.md index acf3762..58cacf3 100644 --- a/site/content/photos/francis-wine-glass.md +++ b/site/content/photos/francis-wine-glass.md @@ -1,6 +1,6 @@ --- title: "francis-wine-glass" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-20 01:34:34+00:00" album: "people" diff --git a/site/content/photos/frosted-leaves.md b/site/content/photos/frosted-leaves.md index de96685..a7eba3b 100644 --- a/site/content/photos/frosted-leaves.md +++ b/site/content/photos/frosted-leaves.md @@ -1,6 +1,6 @@ --- title: "frosted-leaves" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-30 15:36:32+00:00" album: "nature" diff --git a/site/content/photos/german-actress-forest.md b/site/content/photos/german-actress-forest.md index 7d8b9f9..12a1b67 100644 --- a/site/content/photos/german-actress-forest.md +++ b/site/content/photos/german-actress-forest.md @@ -1,6 +1,6 @@ --- title: "german-actress-forest" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 18:37:23+00:00" album: "people" diff --git a/site/content/photos/glendalough-landscape.md b/site/content/photos/glendalough-landscape.md index 90d76e4..4444764 100644 --- a/site/content/photos/glendalough-landscape.md +++ b/site/content/photos/glendalough-landscape.md @@ -1,6 +1,6 @@ --- title: "glendalough-landscape" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-08 15:05:46+00:00" album: "landscapes" diff --git a/site/content/photos/glendalough-path.md b/site/content/photos/glendalough-path.md index e5ca209..0515254 100644 --- a/site/content/photos/glendalough-path.md +++ b/site/content/photos/glendalough-path.md @@ -1,6 +1,6 @@ --- title: "glendalough-path" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-08 14:40:28+00:00" album: "landscapes" diff --git a/site/content/photos/glendalough-tower.md b/site/content/photos/glendalough-tower.md index 23652e0..81d1af4 100644 --- a/site/content/photos/glendalough-tower.md +++ b/site/content/photos/glendalough-tower.md @@ -1,6 +1,6 @@ --- title: "glendalough-tower" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-08 17:19:36+00:00" album: "landscapes" diff --git a/site/content/photos/gluwein-christmas-market.md b/site/content/photos/gluwein-christmas-market.md index 4d0e0c5..1d54e34 100644 --- a/site/content/photos/gluwein-christmas-market.md +++ b/site/content/photos/gluwein-christmas-market.md @@ -1,6 +1,6 @@ --- title: "gluwein-christmas-market" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-05 18:08:13+00:00" album: "city" diff --git a/site/content/photos/greifswalder-tunnel.md b/site/content/photos/greifswalder-tunnel.md index bfbc336..5dca79b 100644 --- a/site/content/photos/greifswalder-tunnel.md +++ b/site/content/photos/greifswalder-tunnel.md @@ -1,6 +1,6 @@ --- title: "greifswalder-tunnel" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-09 00:15:08+00:00" album: "city" diff --git a/site/content/photos/greifswaler_apartments.md b/site/content/photos/greifswaler_apartments.md index 7368725..b4b324f 100644 --- a/site/content/photos/greifswaler_apartments.md +++ b/site/content/photos/greifswaler_apartments.md @@ -1,6 +1,6 @@ --- title: "greifswaler_apartments" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-01-21 21:08:51+00:00" album: "city" diff --git a/site/content/photos/grogans-finger-chomp.md b/site/content/photos/grogans-finger-chomp.md index 8d02abb..08bed82 100644 --- a/site/content/photos/grogans-finger-chomp.md +++ b/site/content/photos/grogans-finger-chomp.md @@ -1,6 +1,6 @@ --- title: "grogans-finger-chomp" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-16 17:35:41+00:00" album: "people" diff --git a/site/content/photos/grogans-the-castle.md b/site/content/photos/grogans-the-castle.md index aaaa6cb..08798e7 100644 --- a/site/content/photos/grogans-the-castle.md +++ b/site/content/photos/grogans-the-castle.md @@ -1,6 +1,6 @@ --- title: "grogans-the-castle" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-16 18:50:29+00:00" album: "city" diff --git a/site/content/photos/haus-der-statistiche-2.md b/site/content/photos/haus-der-statistiche-2.md index 479955d..3183f42 100644 --- a/site/content/photos/haus-der-statistiche-2.md +++ b/site/content/photos/haus-der-statistiche-2.md @@ -1,6 +1,6 @@ --- title: "haus-der-statistiche-2" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 15:38:19+00:00" album: "abandoned" diff --git a/site/content/photos/haus-der-statistiche.md b/site/content/photos/haus-der-statistiche.md index a5961e7..65be86a 100644 --- a/site/content/photos/haus-der-statistiche.md +++ b/site/content/photos/haus-der-statistiche.md @@ -1,6 +1,6 @@ --- title: "haus-der-statistiche" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 15:27:28+00:00" album: "abandoned" diff --git a/site/content/photos/hohenschenhausen-cell.md b/site/content/photos/hohenschenhausen-cell.md index 0c02cf2..0a9a146 100644 --- a/site/content/photos/hohenschenhausen-cell.md +++ b/site/content/photos/hohenschenhausen-cell.md @@ -1,6 +1,6 @@ --- title: "hohenschenhausen-cell" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-16 16:01:38+00:00" album: "abandoned" diff --git a/site/content/photos/hot-sprockets-leads.md b/site/content/photos/hot-sprockets-leads.md index 6b44320..c91374f 100644 --- a/site/content/photos/hot-sprockets-leads.md +++ b/site/content/photos/hot-sprockets-leads.md @@ -1,6 +1,6 @@ --- title: "hot-sprockets-leads" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-25 00:30:56+00:00" album: "music" diff --git a/site/content/photos/hot-sprockets-stage-vantastival.md b/site/content/photos/hot-sprockets-stage-vantastival.md index 6a35472..bccb130 100644 --- a/site/content/photos/hot-sprockets-stage-vantastival.md +++ b/site/content/photos/hot-sprockets-stage-vantastival.md @@ -1,6 +1,6 @@ --- title: "hot-sprockets-stage-vantastival" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 18:31:13+00:00" album: "music" diff --git a/site/content/photos/howth-fishing-boat.md b/site/content/photos/howth-fishing-boat.md index 82efd67..34ec40f 100644 --- a/site/content/photos/howth-fishing-boat.md +++ b/site/content/photos/howth-fishing-boat.md @@ -1,6 +1,6 @@ --- title: "howth-fishing-boat" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-10-21 22:30:20+00:00" album: "landscapes" diff --git a/site/content/photos/howth-harbour-lighthouse.md b/site/content/photos/howth-harbour-lighthouse.md index b795a8a..d0e3376 100644 --- a/site/content/photos/howth-harbour-lighthouse.md +++ b/site/content/photos/howth-harbour-lighthouse.md @@ -1,6 +1,6 @@ --- title: "howth-harbour-lighthouse" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-10-21 23:10:23+00:00" album: "landscapes" diff --git a/site/content/photos/howth-harbour.md b/site/content/photos/howth-harbour.md index 79bcfb3..de3a989 100644 --- a/site/content/photos/howth-harbour.md +++ b/site/content/photos/howth-harbour.md @@ -1,6 +1,6 @@ --- title: "howth-harbour" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-10-21 22:36:21+00:00" album: "landscapes" diff --git a/site/content/photos/howth-horse.md b/site/content/photos/howth-horse.md index 0db6233..0be96fa 100644 --- a/site/content/photos/howth-horse.md +++ b/site/content/photos/howth-horse.md @@ -1,6 +1,6 @@ --- title: "howth-horse" -type: "upload" +mediatype: "upload" description: "TBC" date: "2004-01-28 14:31:38+00:00" album: "nature" diff --git a/site/content/photos/howth_pier.md b/site/content/photos/howth_pier.md index 4a30e4f..ce48069 100644 --- a/site/content/photos/howth_pier.md +++ b/site/content/photos/howth_pier.md @@ -1,6 +1,6 @@ --- title: "howth_pier" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-27 16:12:23" album: "landscapes" diff --git a/site/content/photos/ice-lake-charlottenburg.md b/site/content/photos/ice-lake-charlottenburg.md index b63100e..88a6e82 100644 --- a/site/content/photos/ice-lake-charlottenburg.md +++ b/site/content/photos/ice-lake-charlottenburg.md @@ -1,6 +1,6 @@ --- title: "ice-lake-charlottenburg" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-01-22 16:37:11+00:00" album: "city" diff --git a/site/content/photos/jonathan-cliffs.md b/site/content/photos/jonathan-cliffs.md index 76a783a..61014e4 100644 --- a/site/content/photos/jonathan-cliffs.md +++ b/site/content/photos/jonathan-cliffs.md @@ -1,6 +1,6 @@ --- title: "jonathan-cliffs" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-01 18:25:05+00:00" album: "people" diff --git a/site/content/photos/jonathan-mum.md b/site/content/photos/jonathan-mum.md index 8c0b67e..bc3dfa3 100644 --- a/site/content/photos/jonathan-mum.md +++ b/site/content/photos/jonathan-mum.md @@ -1,6 +1,6 @@ --- title: "jonathan-mum" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-01 18:47:48+00:00" album: "people" diff --git a/site/content/photos/jonathan.md b/site/content/photos/jonathan.md index 49329e1..20eacd3 100644 --- a/site/content/photos/jonathan.md +++ b/site/content/photos/jonathan.md @@ -1,6 +1,6 @@ --- title: "jonathan" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-01 18:03:00+00:00" album: "people" diff --git a/site/content/photos/jumper.md b/site/content/photos/jumper.md index 500e74a..dc3c108 100644 --- a/site/content/photos/jumper.md +++ b/site/content/photos/jumper.md @@ -1,6 +1,6 @@ --- title: "jumper" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-27 19:48:57+00:00" album: "people" diff --git a/site/content/photos/kaisers.md b/site/content/photos/kaisers.md index 6b03447..7ec4752 100644 --- a/site/content/photos/kaisers.md +++ b/site/content/photos/kaisers.md @@ -1,6 +1,6 @@ --- title: "kaisers" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-19 22:17:57+00:00" album: "experimental" diff --git a/site/content/photos/karl-mark-allee-shops.md b/site/content/photos/karl-mark-allee-shops.md index 2452f3d..0dd1aad 100644 --- a/site/content/photos/karl-mark-allee-shops.md +++ b/site/content/photos/karl-mark-allee-shops.md @@ -1,6 +1,6 @@ --- title: "karl-mark-allee-shops" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-29 16:18:06+00:00" album: "city" diff --git a/site/content/photos/karl-marx-alle-anna.md b/site/content/photos/karl-marx-alle-anna.md index b13d7c4..3fc5258 100644 --- a/site/content/photos/karl-marx-alle-anna.md +++ b/site/content/photos/karl-marx-alle-anna.md @@ -1,6 +1,6 @@ --- title: "karl-marx-alle-anna" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-29 16:22:42+00:00" album: "city" diff --git a/site/content/photos/karl-marx-allee.md b/site/content/photos/karl-marx-allee.md index 6d9d0b6..6a4da8d 100644 --- a/site/content/photos/karl-marx-allee.md +++ b/site/content/photos/karl-marx-allee.md @@ -1,6 +1,6 @@ --- title: "karl-marx-allee" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-29 16:29:53" album: "experimental" diff --git a/site/content/photos/karneval-der-kulturen-dress.md b/site/content/photos/karneval-der-kulturen-dress.md index 5585f40..95c492c 100644 --- a/site/content/photos/karneval-der-kulturen-dress.md +++ b/site/content/photos/karneval-der-kulturen-dress.md @@ -1,6 +1,6 @@ --- title: "karneval-der-kulturen-dress" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-07 17:29:11+00:00" album: "events" diff --git a/site/content/photos/karneval-der-kulturen-group.md b/site/content/photos/karneval-der-kulturen-group.md index cb74f91..fd56e76 100644 --- a/site/content/photos/karneval-der-kulturen-group.md +++ b/site/content/photos/karneval-der-kulturen-group.md @@ -1,6 +1,6 @@ --- title: "karneval-der-kulturen-group" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-07 17:27:55+00:00" album: "people" diff --git a/site/content/photos/karneval-der-kulturen-hat.md b/site/content/photos/karneval-der-kulturen-hat.md index 1179842..a546f95 100644 --- a/site/content/photos/karneval-der-kulturen-hat.md +++ b/site/content/photos/karneval-der-kulturen-hat.md @@ -1,6 +1,6 @@ --- title: "karneval-der-kulturen-hat" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-07 19:33:50+00:00" album: "events" diff --git a/site/content/photos/karneval-der-kulturen-mojito.md b/site/content/photos/karneval-der-kulturen-mojito.md index dd365c7..ffd48bd 100644 --- a/site/content/photos/karneval-der-kulturen-mojito.md +++ b/site/content/photos/karneval-der-kulturen-mojito.md @@ -1,6 +1,6 @@ --- title: "karneval-der-kulturen-mojito" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-07 16:56:16+00:00" album: "events" diff --git a/site/content/photos/karneval-der-kulturen-people.md b/site/content/photos/karneval-der-kulturen-people.md index 5b7b740..38414fd 100644 --- a/site/content/photos/karneval-der-kulturen-people.md +++ b/site/content/photos/karneval-der-kulturen-people.md @@ -1,6 +1,6 @@ --- title: "karneval-der-kulturen-people" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-07 19:27:02+00:00" album: "events" diff --git a/site/content/photos/karneval-der-kulturen-sandals.md b/site/content/photos/karneval-der-kulturen-sandals.md index 36689e9..455d190 100644 --- a/site/content/photos/karneval-der-kulturen-sandals.md +++ b/site/content/photos/karneval-der-kulturen-sandals.md @@ -1,6 +1,6 @@ --- title: "karneval-der-kulturen-sandals" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-07 19:29:26+00:00" album: "events" diff --git a/site/content/photos/karneval-der-kulturen.md b/site/content/photos/karneval-der-kulturen.md index ebf52b7..c74db8f 100644 --- a/site/content/photos/karneval-der-kulturen.md +++ b/site/content/photos/karneval-der-kulturen.md @@ -1,6 +1,6 @@ --- title: "karneval-der-kulturen" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-07 17:27:33+00:00" album: "people" diff --git a/site/content/photos/kerry-cottage-long-exposure.md b/site/content/photos/kerry-cottage-long-exposure.md index 8c66ae2..2c46fd6 100644 --- a/site/content/photos/kerry-cottage-long-exposure.md +++ b/site/content/photos/kerry-cottage-long-exposure.md @@ -1,6 +1,6 @@ --- title: "kerry-cottage-long-exposure" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-12-10 00:53:56+00:00" album: "landscapes" diff --git a/site/content/photos/kerry-road-horse.md b/site/content/photos/kerry-road-horse.md index 3c58b6c..4e3b296 100644 --- a/site/content/photos/kerry-road-horse.md +++ b/site/content/photos/kerry-road-horse.md @@ -1,6 +1,6 @@ --- title: "kerry-road-horse" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-12-10 17:06:47+00:00" album: "nature" diff --git a/site/content/photos/kerry-sheep.md b/site/content/photos/kerry-sheep.md index 88a1345..c5345f3 100644 --- a/site/content/photos/kerry-sheep.md +++ b/site/content/photos/kerry-sheep.md @@ -1,6 +1,6 @@ --- title: "kerry-sheep" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-03-28 15:34:54+00:00" album: "landscapes" diff --git a/site/content/photos/kino-international-berlin.md b/site/content/photos/kino-international-berlin.md index b9be619..521c8d0 100644 --- a/site/content/photos/kino-international-berlin.md +++ b/site/content/photos/kino-international-berlin.md @@ -1,6 +1,6 @@ --- title: "kino-international-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-29 16:28:05+00:00" album: "city" diff --git a/site/content/photos/kitesurfer-tempelhof.md b/site/content/photos/kitesurfer-tempelhof.md index 93d0df7..2585230 100644 --- a/site/content/photos/kitesurfer-tempelhof.md +++ b/site/content/photos/kitesurfer-tempelhof.md @@ -1,6 +1,6 @@ --- title: "kitesurfer-tempelhof" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-01-25 16:29:28+00:00" album: "experimental" diff --git a/site/content/photos/kluner-kranich-visitors.md b/site/content/photos/kluner-kranich-visitors.md index b743bf9..e9b73f5 100644 --- a/site/content/photos/kluner-kranich-visitors.md +++ b/site/content/photos/kluner-kranich-visitors.md @@ -1,6 +1,6 @@ --- title: "kluner-kranich-visitors" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-25 20:24:08+00:00" album: "people" diff --git a/site/content/photos/klunkerkranich-chairs.md b/site/content/photos/klunkerkranich-chairs.md index 29a535b..512c87d 100644 --- a/site/content/photos/klunkerkranich-chairs.md +++ b/site/content/photos/klunkerkranich-chairs.md @@ -1,6 +1,6 @@ --- title: "klunkerkranich-chairs" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-25 20:03:18+00:00" album: "city" diff --git a/site/content/photos/klunkerkranich-fernsehturm.md b/site/content/photos/klunkerkranich-fernsehturm.md index 566b16f..39cc85d 100644 --- a/site/content/photos/klunkerkranich-fernsehturm.md +++ b/site/content/photos/klunkerkranich-fernsehturm.md @@ -1,6 +1,6 @@ --- title: "klunkerkranich-fernsehturm" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-25 20:07:36+00:00" album: "city" diff --git a/site/content/photos/klunkerkranich.md b/site/content/photos/klunkerkranich.md index 3a52129..c171230 100644 --- a/site/content/photos/klunkerkranich.md +++ b/site/content/photos/klunkerkranich.md @@ -1,6 +1,6 @@ --- title: "klunkerkranich" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-25 19:56:49+00:00" album: "experimental" diff --git a/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md b/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md index 9dafeb8..dbf65e3 100644 --- a/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md +++ b/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md @@ -1,6 +1,6 @@ --- title: "knonigs-wusterhausen-ruairi-fionn" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-27 19:33:21+00:00" album: "people" diff --git a/site/content/photos/konigs-wusterhausen.md b/site/content/photos/konigs-wusterhausen.md index 12abedf..732cba6 100644 --- a/site/content/photos/konigs-wusterhausen.md +++ b/site/content/photos/konigs-wusterhausen.md @@ -1,6 +1,6 @@ --- title: "konigs-wusterhausen" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-27 21:38:33+00:00" album: "experimental" diff --git a/site/content/photos/kudamm-christmas.md b/site/content/photos/kudamm-christmas.md index 1073c3c..05092f1 100644 --- a/site/content/photos/kudamm-christmas.md +++ b/site/content/photos/kudamm-christmas.md @@ -1,6 +1,6 @@ --- title: "kudamm-christmas" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-18 18:23:54+00:00" album: "city" diff --git a/site/content/photos/kudamm-kiosk.md b/site/content/photos/kudamm-kiosk.md index fba9968..577443c 100644 --- a/site/content/photos/kudamm-kiosk.md +++ b/site/content/photos/kudamm-kiosk.md @@ -1,6 +1,6 @@ --- title: "kudamm-kiosk" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-18 18:31:44+00:00" album: "city" diff --git a/site/content/photos/kunst-museum.md b/site/content/photos/kunst-museum.md index 5988a57..10da2a8 100644 --- a/site/content/photos/kunst-museum.md +++ b/site/content/photos/kunst-museum.md @@ -1,6 +1,6 @@ --- title: "kunst-museum" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-17 16:36:32+00:00" album: "experimental" diff --git a/site/content/photos/lahu-village-cat.md b/site/content/photos/lahu-village-cat.md index b5575ae..75d1389 100644 --- a/site/content/photos/lahu-village-cat.md +++ b/site/content/photos/lahu-village-cat.md @@ -1,6 +1,6 @@ --- title: "lahu-village-cat" -type: "upload" +mediatype: "upload" description: "TBC" date: "2006-07-24 07:48:46+00:00" album: "nature" diff --git a/site/content/photos/lake.md b/site/content/photos/lake.md index 658c103..321a7e2 100644 --- a/site/content/photos/lake.md +++ b/site/content/photos/lake.md @@ -1,6 +1,6 @@ --- title: "lake" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-04-14 19:48:07" album: "landscapes" diff --git a/site/content/photos/lakes-killarney.md b/site/content/photos/lakes-killarney.md index e5875af..1b52202 100644 --- a/site/content/photos/lakes-killarney.md +++ b/site/content/photos/lakes-killarney.md @@ -1,6 +1,6 @@ --- title: "lakes-killarney" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-04-01 19:23:21" album: "landscapes" diff --git a/site/content/photos/lakeside-konigs-wusterhausen.md b/site/content/photos/lakeside-konigs-wusterhausen.md index 220464e..9779617 100644 --- a/site/content/photos/lakeside-konigs-wusterhausen.md +++ b/site/content/photos/lakeside-konigs-wusterhausen.md @@ -1,6 +1,6 @@ --- title: "lakeside-konigs-wusterhausen" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-27 20:13:48+00:00" album: "people" diff --git a/site/content/photos/leaves-water.md b/site/content/photos/leaves-water.md index 95f255b..f865ff8 100644 --- a/site/content/photos/leaves-water.md +++ b/site/content/photos/leaves-water.md @@ -1,6 +1,6 @@ --- title: "leaves-water" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-04-01 15:23:22+00:00" album: "nature" diff --git a/site/content/photos/li-behind-paper.md b/site/content/photos/li-behind-paper.md index 164fc94..20bf2c9 100644 --- a/site/content/photos/li-behind-paper.md +++ b/site/content/photos/li-behind-paper.md @@ -1,6 +1,6 @@ --- title: "li-behind-paper" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-15 14:05:50+00:00" album: "people" diff --git a/site/content/photos/li-tempelhof.md b/site/content/photos/li-tempelhof.md index f42a108..7b85c12 100644 --- a/site/content/photos/li-tempelhof.md +++ b/site/content/photos/li-tempelhof.md @@ -1,6 +1,6 @@ --- title: "li-tempelhof" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-15 14:51:17+00:00" album: "people" diff --git a/site/content/photos/li.md b/site/content/photos/li.md index 91d7e5c..03c91d1 100644 --- a/site/content/photos/li.md +++ b/site/content/photos/li.md @@ -1,6 +1,6 @@ --- title: "li" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-28 18:21:16+00:00" album: "people" diff --git a/site/content/photos/look-beautiful-tempelhof.md b/site/content/photos/look-beautiful-tempelhof.md index c9dca24..954070b 100644 --- a/site/content/photos/look-beautiful-tempelhof.md +++ b/site/content/photos/look-beautiful-tempelhof.md @@ -1,6 +1,6 @@ --- title: "look-beautiful-tempelhof" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-15 15:08:56+00:00" album: "city" diff --git a/site/content/photos/lunchtime.md b/site/content/photos/lunchtime.md index 6efd7ac..3d45c2e 100644 --- a/site/content/photos/lunchtime.md +++ b/site/content/photos/lunchtime.md @@ -1,6 +1,6 @@ --- title: "lunchtime" -type: "upload" +mediatype: "upload" description: "TBC" date: "2004-01-28 13:54:22+00:00" album: "people" diff --git a/site/content/photos/marienfeld-church.md b/site/content/photos/marienfeld-church.md index 3376ce4..e0d5fe8 100644 --- a/site/content/photos/marienfeld-church.md +++ b/site/content/photos/marienfeld-church.md @@ -1,6 +1,6 @@ --- title: "marienfeld-church" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-03-27 13:42:25+00:00" album: "city" diff --git a/site/content/photos/marienfield-church-ceiling.md b/site/content/photos/marienfield-church-ceiling.md index 270a571..39b0265 100644 --- a/site/content/photos/marienfield-church-ceiling.md +++ b/site/content/photos/marienfield-church-ceiling.md @@ -1,6 +1,6 @@ --- title: "marienfield-church-ceiling" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-03-27 13:43:10+00:00" album: "city" diff --git a/site/content/photos/markt-spiegel-anna.md b/site/content/photos/markt-spiegel-anna.md index 1258318..2bce38c 100644 --- a/site/content/photos/markt-spiegel-anna.md +++ b/site/content/photos/markt-spiegel-anna.md @@ -1,6 +1,6 @@ --- title: "markt-spiegel-anna" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-20 15:54:33+00:00" album: "experimental" diff --git a/site/content/photos/messe-nord-race-terrace.md b/site/content/photos/messe-nord-race-terrace.md index 1d46791..975fae6 100644 --- a/site/content/photos/messe-nord-race-terrace.md +++ b/site/content/photos/messe-nord-race-terrace.md @@ -1,6 +1,6 @@ --- title: "messe-nord-race-terrace" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 13:15:08+00:00" album: "city" diff --git a/site/content/photos/meteor-meetup.md b/site/content/photos/meteor-meetup.md index 9594e42..8b83418 100644 --- a/site/content/photos/meteor-meetup.md +++ b/site/content/photos/meteor-meetup.md @@ -1,6 +1,6 @@ --- title: "meteor-meetup" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-11-27 22:21:41+00:00" album: "events" diff --git a/site/content/photos/mick-beach.md b/site/content/photos/mick-beach.md index b625c92..120b24f 100644 --- a/site/content/photos/mick-beach.md +++ b/site/content/photos/mick-beach.md @@ -1,6 +1,6 @@ --- title: "mick-beach" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-31 13:47:33+00:00" album: "people" diff --git a/site/content/photos/mixing-desk.md b/site/content/photos/mixing-desk.md index 0ed65d0..8dfa4dc 100644 --- a/site/content/photos/mixing-desk.md +++ b/site/content/photos/mixing-desk.md @@ -1,6 +1,6 @@ --- title: "mixing-desk" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-01-26 18:49:27+00:00" album: "music" diff --git a/site/content/photos/model-airplane.md b/site/content/photos/model-airplane.md index a531bad..2482410 100644 --- a/site/content/photos/model-airplane.md +++ b/site/content/photos/model-airplane.md @@ -1,6 +1,6 @@ --- title: "model-airplane" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-01-26 12:33:28+00:00" album: "people" diff --git a/site/content/photos/mossy-drums.md b/site/content/photos/mossy-drums.md index d01768d..5da2ee6 100644 --- a/site/content/photos/mossy-drums.md +++ b/site/content/photos/mossy-drums.md @@ -1,6 +1,6 @@ --- title: "mossy-drums" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-03-02 15:22:06+00:00" album: "experimental" diff --git a/site/content/photos/mossy-laura.md b/site/content/photos/mossy-laura.md index c723002..291090a 100644 --- a/site/content/photos/mossy-laura.md +++ b/site/content/photos/mossy-laura.md @@ -1,6 +1,6 @@ --- title: "mossy-laura" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 15:39:11+00:00" album: "people" diff --git a/site/content/photos/mossy-nolan.md b/site/content/photos/mossy-nolan.md index acc24fa..d86bc40 100644 --- a/site/content/photos/mossy-nolan.md +++ b/site/content/photos/mossy-nolan.md @@ -1,6 +1,6 @@ --- title: "mossy-nolan" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-25 15:26:48+00:00" album: "music" diff --git a/site/content/photos/motel-avus.md b/site/content/photos/motel-avus.md index a122875..51f96f7 100644 --- a/site/content/photos/motel-avus.md +++ b/site/content/photos/motel-avus.md @@ -1,6 +1,6 @@ --- title: "motel-avus" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 13:11:57+00:00" album: "city" diff --git a/site/content/photos/northwest-200.md b/site/content/photos/northwest-200.md index 915a71a..100635a 100644 --- a/site/content/photos/northwest-200.md +++ b/site/content/photos/northwest-200.md @@ -1,6 +1,6 @@ --- title: "northwest-200" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-05-19 16:50:39+00:00" album: "events" diff --git a/site/content/photos/norwegian-actress-forest-shoot.md b/site/content/photos/norwegian-actress-forest-shoot.md index ade1548..9e32272 100644 --- a/site/content/photos/norwegian-actress-forest-shoot.md +++ b/site/content/photos/norwegian-actress-forest-shoot.md @@ -1,6 +1,6 @@ --- title: "norwegian-actress-forest-shoot" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 18:18:09+00:00" album: "people" diff --git a/site/content/photos/norwegian-actress-profile.md b/site/content/photos/norwegian-actress-profile.md index 1aac096..75e3d3d 100644 --- a/site/content/photos/norwegian-actress-profile.md +++ b/site/content/photos/norwegian-actress-profile.md @@ -1,6 +1,6 @@ --- title: "norwegian-actress-profile" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 18:52:22+00:00" album: "people" diff --git a/site/content/photos/orb.md b/site/content/photos/orb.md index 98bf829..f0dd600 100644 --- a/site/content/photos/orb.md +++ b/site/content/photos/orb.md @@ -1,6 +1,6 @@ --- title: "orb" -type: "upload" +mediatype: "upload" description: "TBC" date: "2004-01-29 15:53:40+00:00" album: "experimental" diff --git a/site/content/photos/overcooked_anna.md b/site/content/photos/overcooked_anna.md index 2769c51..8b83811 100644 --- a/site/content/photos/overcooked_anna.md +++ b/site/content/photos/overcooked_anna.md @@ -1,6 +1,6 @@ --- title: "overcooked_anna" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-19 22:06:51+00:00" album: "people" diff --git a/site/content/photos/pai-cat.md b/site/content/photos/pai-cat.md index c6948be..a8dfc2e 100644 --- a/site/content/photos/pai-cat.md +++ b/site/content/photos/pai-cat.md @@ -1,6 +1,6 @@ --- title: "pai-cat" -type: "upload" +mediatype: "upload" description: "TBC" date: "2006-08-09 01:30:52+00:00" album: "nature" diff --git a/site/content/photos/pai-parrot.md b/site/content/photos/pai-parrot.md index aa4da49..2f6c0b4 100644 --- a/site/content/photos/pai-parrot.md +++ b/site/content/photos/pai-parrot.md @@ -1,6 +1,6 @@ --- title: "pai-parrot" -type: "upload" +mediatype: "upload" description: "TBC" date: "2006-07-29 00:26:23+00:00" album: "nature" diff --git a/site/content/photos/paul-and-luke.md b/site/content/photos/paul-and-luke.md index 93c51ec..6677e91 100644 --- a/site/content/photos/paul-and-luke.md +++ b/site/content/photos/paul-and-luke.md @@ -1,6 +1,6 @@ --- title: "paul-and-luke" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-25 15:04:08+00:00" album: "people" diff --git a/site/content/photos/paul-james-beach.md b/site/content/photos/paul-james-beach.md index 4dc9bf3..cea2753 100644 --- a/site/content/photos/paul-james-beach.md +++ b/site/content/photos/paul-james-beach.md @@ -1,6 +1,6 @@ --- title: "paul-james-beach" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-31 13:45:33+00:00" album: "people" diff --git a/site/content/photos/peter-coonan-redline.md b/site/content/photos/peter-coonan-redline.md index f94d30f..e1fdc98 100644 --- a/site/content/photos/peter-coonan-redline.md +++ b/site/content/photos/peter-coonan-redline.md @@ -1,6 +1,6 @@ --- title: "peter-coonan-redline" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-01-13 15:33:03+00:00" album: "people" diff --git a/site/content/photos/phi-phi-monkey.md b/site/content/photos/phi-phi-monkey.md index 7485707..6c28c94 100644 --- a/site/content/photos/phi-phi-monkey.md +++ b/site/content/photos/phi-phi-monkey.md @@ -1,6 +1,6 @@ --- title: "phi-phi-monkey" -type: "upload" +mediatype: "upload" description: "TBC" date: "2006-08-02 23:52:10+00:00" album: "nature" diff --git a/site/content/photos/phil-bans-donegal.md b/site/content/photos/phil-bans-donegal.md index b4491f1..d89b4bd 100644 --- a/site/content/photos/phil-bans-donegal.md +++ b/site/content/photos/phil-bans-donegal.md @@ -1,6 +1,6 @@ --- title: "phil-bans-donegal" -type: "upload" +mediatype: "upload" description: "TBC" date: "2010-06-06 23:56:24+00:00" album: "people" diff --git a/site/content/photos/phoenix-park-deer.md b/site/content/photos/phoenix-park-deer.md index 55f257f..36466d7 100644 --- a/site/content/photos/phoenix-park-deer.md +++ b/site/content/photos/phoenix-park-deer.md @@ -1,6 +1,6 @@ --- title: "phoenix-park-deer" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-01-26 12:08:33+00:00" album: "nature" diff --git a/site/content/photos/phoenix-park-model-plane.md b/site/content/photos/phoenix-park-model-plane.md index 543541f..fbc90a4 100644 --- a/site/content/photos/phoenix-park-model-plane.md +++ b/site/content/photos/phoenix-park-model-plane.md @@ -1,6 +1,6 @@ --- title: "phoenix-park-model-plane" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-01-26 12:33:45+00:00" album: "city" diff --git a/site/content/photos/phoenix-park-training.md b/site/content/photos/phoenix-park-training.md index 03ce6d8..452ebc8 100644 --- a/site/content/photos/phoenix-park-training.md +++ b/site/content/photos/phoenix-park-training.md @@ -1,6 +1,6 @@ --- title: "phoenix-park-training" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-01-26 11:34:55+00:00" album: "people" diff --git a/site/content/photos/photographer.md b/site/content/photos/photographer.md index b337f05..7eb3c2b 100644 --- a/site/content/photos/photographer.md +++ b/site/content/photos/photographer.md @@ -1,6 +1,6 @@ --- title: "photographer" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-01-26 12:59:49+00:00" album: "people" diff --git a/site/content/photos/plant-labels.md b/site/content/photos/plant-labels.md index 3d691f7..b414516 100644 --- a/site/content/photos/plant-labels.md +++ b/site/content/photos/plant-labels.md @@ -1,6 +1,6 @@ --- title: "plant-labels" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-04-01 15:33:03+00:00" album: "nature" diff --git a/site/content/photos/poland-house.md b/site/content/photos/poland-house.md index aae1d5c..1cd172c 100644 --- a/site/content/photos/poland-house.md +++ b/site/content/photos/poland-house.md @@ -1,6 +1,6 @@ --- title: "poland-house" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-09 16:30:31+00:00" album: "city" diff --git a/site/content/photos/polizei.md b/site/content/photos/polizei.md index 21882c1..2cb0357 100644 --- a/site/content/photos/polizei.md +++ b/site/content/photos/polizei.md @@ -1,6 +1,6 @@ --- title: "polizei" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-28 21:55:54+00:00" album: "city" diff --git a/site/content/photos/portugal-guitarist.md b/site/content/photos/portugal-guitarist.md index aedf789..c14f50d 100644 --- a/site/content/photos/portugal-guitarist.md +++ b/site/content/photos/portugal-guitarist.md @@ -1,6 +1,6 @@ --- title: "portugal-guitarist" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-05-15 19:30:52+00:00" album: "people" diff --git a/site/content/photos/portugal-street.md b/site/content/photos/portugal-street.md index c339a05..1a56826 100644 --- a/site/content/photos/portugal-street.md +++ b/site/content/photos/portugal-street.md @@ -1,6 +1,6 @@ --- title: "portugal-street" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-05-12 14:53:31+00:00" album: "city" diff --git a/site/content/photos/pppb.md b/site/content/photos/pppb.md index f751282..a8a0ba0 100644 --- a/site/content/photos/pppb.md +++ b/site/content/photos/pppb.md @@ -1,6 +1,6 @@ --- title: "pppb" -type: "upload" +mediatype: "upload" description: "TBC" date: "2005-08-13 20:08:07+00:00" album: "people" diff --git a/site/content/photos/praater.md b/site/content/photos/praater.md index 664195c..14ad94e 100644 --- a/site/content/photos/praater.md +++ b/site/content/photos/praater.md @@ -1,6 +1,6 @@ --- title: "praater" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-11 00:03:34+00:00" album: "events" diff --git a/site/content/photos/prairie-dawgs-connor.md b/site/content/photos/prairie-dawgs-connor.md index 336c2c2..e0eda3d 100644 --- a/site/content/photos/prairie-dawgs-connor.md +++ b/site/content/photos/prairie-dawgs-connor.md @@ -1,6 +1,6 @@ --- title: "prairie-dawgs-connor" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-05 23:08:11+00:00" album: "music" diff --git a/site/content/photos/prairie-dawgs-karen.md b/site/content/photos/prairie-dawgs-karen.md index 60dbf9e..b45f115 100644 --- a/site/content/photos/prairie-dawgs-karen.md +++ b/site/content/photos/prairie-dawgs-karen.md @@ -1,6 +1,6 @@ --- title: "prairie-dawgs-karen" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-05 23:41:22+00:00" album: "music" diff --git a/site/content/photos/prairie-dawgs-ruairi.md b/site/content/photos/prairie-dawgs-ruairi.md index baa168c..5c39de8 100644 --- a/site/content/photos/prairie-dawgs-ruairi.md +++ b/site/content/photos/prairie-dawgs-ruairi.md @@ -1,6 +1,6 @@ --- title: "prairie-dawgs-ruairi" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-05 23:01:14+00:00" album: "music" diff --git a/site/content/photos/presse-tabak-berlin.md b/site/content/photos/presse-tabak-berlin.md index ac400ef..97e7d46 100644 --- a/site/content/photos/presse-tabak-berlin.md +++ b/site/content/photos/presse-tabak-berlin.md @@ -1,6 +1,6 @@ --- title: "presse-tabak-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-09 23:39:37+00:00" album: "city" diff --git a/site/content/photos/redline-film-take-dublin.md b/site/content/photos/redline-film-take-dublin.md index 81b7c1d..b65e31e 100644 --- a/site/content/photos/redline-film-take-dublin.md +++ b/site/content/photos/redline-film-take-dublin.md @@ -1,6 +1,6 @@ --- title: "redline-film-take-dublin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-01-13 15:26:38+00:00" album: "city" diff --git a/site/content/photos/refeshments.md b/site/content/photos/refeshments.md index 2d07776..9fc3026 100644 --- a/site/content/photos/refeshments.md +++ b/site/content/photos/refeshments.md @@ -1,6 +1,6 @@ --- title: "refeshments" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-11-27 21:25:45+00:00" album: "events" diff --git a/site/content/photos/rhob-cunningham.md b/site/content/photos/rhob-cunningham.md index 2274a52..3a8c403 100644 --- a/site/content/photos/rhob-cunningham.md +++ b/site/content/photos/rhob-cunningham.md @@ -1,6 +1,6 @@ --- title: "rhob-cunningham" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-06-28 19:06:45+00:00" album: "music" diff --git a/site/content/photos/rian-ro-kerry-bar.md b/site/content/photos/rian-ro-kerry-bar.md index a4592e0..f1af1bd 100644 --- a/site/content/photos/rian-ro-kerry-bar.md +++ b/site/content/photos/rian-ro-kerry-bar.md @@ -1,6 +1,6 @@ --- title: "rian-ro-kerry-bar" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-04-01 17:08:38+00:00" album: "abandoned" diff --git a/site/content/photos/rian-ro-kerry-lobby.md b/site/content/photos/rian-ro-kerry-lobby.md index 410a9e3..d5c50fc 100644 --- a/site/content/photos/rian-ro-kerry-lobby.md +++ b/site/content/photos/rian-ro-kerry-lobby.md @@ -1,6 +1,6 @@ --- title: "rian-ro-kerry-lobby" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-04-01 16:53:10+00:00" album: "abandoned" diff --git a/site/content/photos/rian-ro-kerry-windows.md b/site/content/photos/rian-ro-kerry-windows.md index b5668b3..524cc0a 100644 --- a/site/content/photos/rian-ro-kerry-windows.md +++ b/site/content/photos/rian-ro-kerry-windows.md @@ -1,6 +1,6 @@ --- title: "rian-ro-kerry-windows" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-04-01 17:01:30+00:00" album: "abandoned" diff --git a/site/content/photos/rian-ro-kerry.md b/site/content/photos/rian-ro-kerry.md index 770d10d..769abe3 100644 --- a/site/content/photos/rian-ro-kerry.md +++ b/site/content/photos/rian-ro-kerry.md @@ -1,6 +1,6 @@ --- title: "rian-ro-kerry" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-04-01 16:50:51+00:00" album: "abandoned" diff --git a/site/content/photos/richie-cmc.md b/site/content/photos/richie-cmc.md index e93ea74..d7127f2 100644 --- a/site/content/photos/richie-cmc.md +++ b/site/content/photos/richie-cmc.md @@ -1,6 +1,6 @@ --- title: "richie-cmc" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-05-25 22:01:11+00:00" album: "music" diff --git a/site/content/photos/rixdorf-christmas-market.md b/site/content/photos/rixdorf-christmas-market.md index 0ef8af5..c59f99a 100644 --- a/site/content/photos/rixdorf-christmas-market.md +++ b/site/content/photos/rixdorf-christmas-market.md @@ -1,6 +1,6 @@ --- title: "rixdorf-christmas-market" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-05 18:07:03+00:00" album: "city" diff --git a/site/content/photos/ruairi-fionn.md b/site/content/photos/ruairi-fionn.md index 5de86b3..280b60d 100644 --- a/site/content/photos/ruairi-fionn.md +++ b/site/content/photos/ruairi-fionn.md @@ -1,6 +1,6 @@ --- title: "ruairi-fionn" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-27 19:34:22+00:00" album: "people" diff --git a/site/content/photos/rupert-clarissa.md b/site/content/photos/rupert-clarissa.md index eaf713a..b32bd4e 100644 --- a/site/content/photos/rupert-clarissa.md +++ b/site/content/photos/rupert-clarissa.md @@ -1,6 +1,6 @@ --- title: "rupert-clarissa" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-07 14:05:12+00:00" album: "nature" diff --git a/site/content/photos/russian-embassy-berlin.md b/site/content/photos/russian-embassy-berlin.md index 5005f99..aeb93bc 100644 --- a/site/content/photos/russian-embassy-berlin.md +++ b/site/content/photos/russian-embassy-berlin.md @@ -1,6 +1,6 @@ --- title: "russian-embassy-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 11:24:15+00:00" album: "city" diff --git a/site/content/photos/scaffold-tunnel.md b/site/content/photos/scaffold-tunnel.md index 6e5449b..26d53b7 100644 --- a/site/content/photos/scaffold-tunnel.md +++ b/site/content/photos/scaffold-tunnel.md @@ -1,6 +1,6 @@ --- title: "scaffold-tunnel" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-09 23:41:37+00:00" album: "experimental" diff --git a/site/content/photos/schneedrop.md b/site/content/photos/schneedrop.md index 9a36fc9..99396ea 100644 --- a/site/content/photos/schneedrop.md +++ b/site/content/photos/schneedrop.md @@ -1,6 +1,6 @@ --- title: "schneedrop" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-01-18 17:18:04+00:00" album: "nature" diff --git a/site/content/photos/schnitzel_konig.md b/site/content/photos/schnitzel_konig.md index 1ce3c5a..4721e9d 100644 --- a/site/content/photos/schnitzel_konig.md +++ b/site/content/photos/schnitzel_konig.md @@ -1,6 +1,6 @@ --- title: "schnitzel_konig" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-08 23:40:29+00:00" album: "experimental" diff --git a/site/content/photos/seagull-poland.md b/site/content/photos/seagull-poland.md index 961e1a1..22f6d9a 100644 --- a/site/content/photos/seagull-poland.md +++ b/site/content/photos/seagull-poland.md @@ -1,6 +1,6 @@ --- title: "seagull-poland" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-03-09 14:50:47+00:00" album: "landscapes" diff --git a/site/content/photos/shopping-trolley.md b/site/content/photos/shopping-trolley.md index 144242d..5eacfe6 100644 --- a/site/content/photos/shopping-trolley.md +++ b/site/content/photos/shopping-trolley.md @@ -1,6 +1,6 @@ --- title: "shopping-trolley" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 15:33:25+00:00" album: "city" diff --git a/site/content/photos/side-street-berlin.md b/site/content/photos/side-street-berlin.md index 58ef184..6a8be9b 100644 --- a/site/content/photos/side-street-berlin.md +++ b/site/content/photos/side-street-berlin.md @@ -1,6 +1,6 @@ --- title: "side-street-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-17 02:48:12+00:00" album: "experimental" diff --git a/site/content/photos/side_steps_wall.md b/site/content/photos/side_steps_wall.md index 78957ab..4032796 100644 --- a/site/content/photos/side_steps_wall.md +++ b/site/content/photos/side_steps_wall.md @@ -1,6 +1,6 @@ --- title: "side_steps_wall" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-01-08 15:19:51+00:00" album: "experimental" diff --git a/site/content/photos/singer.md b/site/content/photos/singer.md index 0fdb868..68dc1eb 100644 --- a/site/content/photos/singer.md +++ b/site/content/photos/singer.md @@ -1,6 +1,6 @@ --- title: "singer" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-05-05 21:36:13+00:00" album: "people" diff --git a/site/content/photos/skelligs-kerry.md b/site/content/photos/skelligs-kerry.md index ed34e5e..ca4ddba 100644 --- a/site/content/photos/skelligs-kerry.md +++ b/site/content/photos/skelligs-kerry.md @@ -1,6 +1,6 @@ --- title: "skelligs-kerry" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-12-11 16:05:55+00:00" album: "landscapes" diff --git a/site/content/photos/smartphones.md b/site/content/photos/smartphones.md index 4b633fe..b1873ac 100644 --- a/site/content/photos/smartphones.md +++ b/site/content/photos/smartphones.md @@ -1,6 +1,6 @@ --- title: "smartphones" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-02-09 15:17:37+00:00" album: "people" diff --git a/site/content/photos/spirit-of-folk-bird.md b/site/content/photos/spirit-of-folk-bird.md index e9b0da8..0a1207c 100644 --- a/site/content/photos/spirit-of-folk-bird.md +++ b/site/content/photos/spirit-of-folk-bird.md @@ -1,6 +1,6 @@ --- title: "spirit-of-folk-bird" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 16:00:49+00:00" album: "nature" diff --git a/site/content/photos/spirit-of-folk-musician.md b/site/content/photos/spirit-of-folk-musician.md index 1a884b3..bfed24c 100644 --- a/site/content/photos/spirit-of-folk-musician.md +++ b/site/content/photos/spirit-of-folk-musician.md @@ -1,6 +1,6 @@ --- title: "spirit-of-folk-musician" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 17:29:26+00:00" album: "events" diff --git a/site/content/photos/spirit-of-folk-people.md b/site/content/photos/spirit-of-folk-people.md index d6ac680..8763d0e 100644 --- a/site/content/photos/spirit-of-folk-people.md +++ b/site/content/photos/spirit-of-folk-people.md @@ -1,6 +1,6 @@ --- title: "spirit-of-folk-people" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-25 00:36:51+00:00" album: "events" diff --git a/site/content/photos/spirit-of-folk-shield.md b/site/content/photos/spirit-of-folk-shield.md index b41542d..548464b 100644 --- a/site/content/photos/spirit-of-folk-shield.md +++ b/site/content/photos/spirit-of-folk-shield.md @@ -1,6 +1,6 @@ --- title: "spirit-of-folk-shield" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 16:42:14+00:00" album: "events" diff --git a/site/content/photos/spirit-of-folk-tent.md b/site/content/photos/spirit-of-folk-tent.md index 56fba12..783bbb6 100644 --- a/site/content/photos/spirit-of-folk-tent.md +++ b/site/content/photos/spirit-of-folk-tent.md @@ -1,6 +1,6 @@ --- title: "spirit-of-folk-tent" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 21:17:10+00:00" album: "events" diff --git a/site/content/photos/spree-statue.md b/site/content/photos/spree-statue.md index 0f909fb..7f4219c 100644 --- a/site/content/photos/spree-statue.md +++ b/site/content/photos/spree-statue.md @@ -1,6 +1,6 @@ --- title: "spree-statue" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-01-18 16:52:40+00:00" album: "city" diff --git a/site/content/photos/spreepark-ferris-wheel.md b/site/content/photos/spreepark-ferris-wheel.md index 83a9263..f50730b 100644 --- a/site/content/photos/spreepark-ferris-wheel.md +++ b/site/content/photos/spreepark-ferris-wheel.md @@ -1,6 +1,6 @@ --- title: "spreepark-ferris-wheel" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-01-18 17:33:47+00:00" album: "experimental" diff --git a/site/content/photos/spwc-dublin-waldos.md b/site/content/photos/spwc-dublin-waldos.md index b0c4351..c434af3 100644 --- a/site/content/photos/spwc-dublin-waldos.md +++ b/site/content/photos/spwc-dublin-waldos.md @@ -1,6 +1,6 @@ --- title: "spwc-dublin-waldos" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-06-18 13:02:38+00:00" album: "events" diff --git a/site/content/photos/spwc-performer.md b/site/content/photos/spwc-performer.md index 1ed8409..27f8a02 100644 --- a/site/content/photos/spwc-performer.md +++ b/site/content/photos/spwc-performer.md @@ -1,6 +1,6 @@ --- title: "spwc-performer" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-06-18 14:04:44+00:00" album: "people" diff --git a/site/content/photos/st-finans-bay-long-exposure.md b/site/content/photos/st-finans-bay-long-exposure.md index f59d699..c88466c 100644 --- a/site/content/photos/st-finans-bay-long-exposure.md +++ b/site/content/photos/st-finans-bay-long-exposure.md @@ -1,6 +1,6 @@ --- title: "st-finans-bay-long-exposure" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-12-10 01:16:36+00:00" album: "landscapes" diff --git a/site/content/photos/st-finians-beach.md b/site/content/photos/st-finians-beach.md index 05df057..e57703e 100644 --- a/site/content/photos/st-finians-beach.md +++ b/site/content/photos/st-finians-beach.md @@ -1,6 +1,6 @@ --- title: "st-finians-beach" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-31 13:50:29+00:00" album: "landscapes" diff --git a/site/content/photos/stadtbad-wedding-anna-dark.md b/site/content/photos/stadtbad-wedding-anna-dark.md index e7e407c..58cd535 100644 --- a/site/content/photos/stadtbad-wedding-anna-dark.md +++ b/site/content/photos/stadtbad-wedding-anna-dark.md @@ -1,6 +1,6 @@ --- title: "stadtbad-wedding-anna-dark" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-05-29 14:34:35+00:00" album: "abandoned" diff --git a/site/content/photos/stadtbad-wedding-anna-pool.md b/site/content/photos/stadtbad-wedding-anna-pool.md index 32be02e..498d47f 100644 --- a/site/content/photos/stadtbad-wedding-anna-pool.md +++ b/site/content/photos/stadtbad-wedding-anna-pool.md @@ -1,6 +1,6 @@ --- title: "stadtbad-wedding-anna-pool" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-05-29 14:26:52+00:00" album: "abandoned" diff --git a/site/content/photos/stadtbad-wedding-anna.md b/site/content/photos/stadtbad-wedding-anna.md index 8700faf..1d33926 100644 --- a/site/content/photos/stadtbad-wedding-anna.md +++ b/site/content/photos/stadtbad-wedding-anna.md @@ -1,6 +1,6 @@ --- title: "stadtbad-wedding-anna" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-05-29 13:57:52+00:00" album: "abandoned" diff --git a/site/content/photos/stadtbad-wedding-blinds.md b/site/content/photos/stadtbad-wedding-blinds.md index 4d7e309..2ad487f 100644 --- a/site/content/photos/stadtbad-wedding-blinds.md +++ b/site/content/photos/stadtbad-wedding-blinds.md @@ -1,6 +1,6 @@ --- title: "stadtbad-wedding-blinds" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-05-29 14:38:28+00:00" album: "abandoned" diff --git a/site/content/photos/stadtbad-wedding-door.md b/site/content/photos/stadtbad-wedding-door.md index ffc012a..14feba6 100644 --- a/site/content/photos/stadtbad-wedding-door.md +++ b/site/content/photos/stadtbad-wedding-door.md @@ -1,6 +1,6 @@ --- title: "stadtbad-wedding-door" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-05-29 14:32:47+00:00" album: "abandoned" diff --git a/site/content/photos/stadtbad-wedding-stairs.md b/site/content/photos/stadtbad-wedding-stairs.md index b575456..b02679f 100644 --- a/site/content/photos/stadtbad-wedding-stairs.md +++ b/site/content/photos/stadtbad-wedding-stairs.md @@ -1,6 +1,6 @@ --- title: "stadtbad-wedding-stairs" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-05-29 14:37:22+00:00" album: "abandoned" diff --git a/site/content/photos/stadtbadd-wedding.md b/site/content/photos/stadtbadd-wedding.md index 84c50bf..99c9811 100644 --- a/site/content/photos/stadtbadd-wedding.md +++ b/site/content/photos/stadtbadd-wedding.md @@ -1,6 +1,6 @@ --- title: "stadtbadd-wedding" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-05-29 14:21:05+00:00" album: "experimental" diff --git a/site/content/photos/steps.md b/site/content/photos/steps.md index e93edd8..454b441 100644 --- a/site/content/photos/steps.md +++ b/site/content/photos/steps.md @@ -1,6 +1,6 @@ --- title: "steps" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-01-08 15:18:27+00:00" album: "city" diff --git a/site/content/photos/stina.md b/site/content/photos/stina.md index 054ae3d..c2cf56c 100644 --- a/site/content/photos/stina.md +++ b/site/content/photos/stina.md @@ -1,6 +1,6 @@ --- title: "stina" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 20:57:02+00:00" album: "music" diff --git a/site/content/photos/stoplerstein.md b/site/content/photos/stoplerstein.md index cad63ae..e1ae83f 100644 --- a/site/content/photos/stoplerstein.md +++ b/site/content/photos/stoplerstein.md @@ -1,6 +1,6 @@ --- title: "stoplerstein" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-14 15:08:23+00:00" album: "city" diff --git a/site/content/photos/street-performer.md b/site/content/photos/street-performer.md index 1c8f76e..874d308 100644 --- a/site/content/photos/street-performer.md +++ b/site/content/photos/street-performer.md @@ -1,6 +1,6 @@ --- title: "street-performer" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-03-20 22:23:11+00:00" album: "people" diff --git a/site/content/photos/table-tennis-berlin.md b/site/content/photos/table-tennis-berlin.md index 99f6939..3a99e72 100644 --- a/site/content/photos/table-tennis-berlin.md +++ b/site/content/photos/table-tennis-berlin.md @@ -1,6 +1,6 @@ --- title: "table-tennis-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 11:57:54+00:00" album: "city" diff --git a/site/content/photos/tara-street-dart.md b/site/content/photos/tara-street-dart.md index ef19c58..be00298 100644 --- a/site/content/photos/tara-street-dart.md +++ b/site/content/photos/tara-street-dart.md @@ -1,6 +1,6 @@ --- title: "tara-street-dart" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-16 20:15:12+00:00" album: "city" diff --git a/site/content/photos/tempelhof-cyclist.md b/site/content/photos/tempelhof-cyclist.md index d0979f9..76d6e66 100644 --- a/site/content/photos/tempelhof-cyclist.md +++ b/site/content/photos/tempelhof-cyclist.md @@ -1,6 +1,6 @@ --- title: "tempelhof-cyclist" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-01-25 16:14:02+00:00" album: "city" diff --git a/site/content/photos/tempelhof-floodlight.md b/site/content/photos/tempelhof-floodlight.md index 5818bf7..8572ca7 100644 --- a/site/content/photos/tempelhof-floodlight.md +++ b/site/content/photos/tempelhof-floodlight.md @@ -1,6 +1,6 @@ --- title: "tempelhof-floodlight" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-02-15 15:42:17+00:00" album: "experimental" diff --git a/site/content/photos/the-glen-shop.md b/site/content/photos/the-glen-shop.md index 98a461e..726b8ab 100644 --- a/site/content/photos/the-glen-shop.md +++ b/site/content/photos/the-glen-shop.md @@ -1,8 +1,8 @@ --- title: "the-glen-shop" -type: "upload" +mediatype: "upload" description: "TBC" -date: "Date unknown" +date: "2016-08-05" album: "abandoned" filename: "the-glen-shop.md" series: "" diff --git a/site/content/photos/the-young-folk-lead.md b/site/content/photos/the-young-folk-lead.md index 4177c59..161a96f 100644 --- a/site/content/photos/the-young-folk-lead.md +++ b/site/content/photos/the-young-folk-lead.md @@ -1,6 +1,6 @@ --- title: "the-young-folk-lead" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-30 19:33:35+00:00" album: "music" diff --git a/site/content/photos/tim-hot-sprockets-under-mic.md b/site/content/photos/tim-hot-sprockets-under-mic.md index 8d60f0b..5d1da3c 100644 --- a/site/content/photos/tim-hot-sprockets-under-mic.md +++ b/site/content/photos/tim-hot-sprockets-under-mic.md @@ -1,6 +1,6 @@ --- title: "tim-hot-sprockets-under-mic" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 18:24:58+00:00" album: "music" diff --git a/site/content/photos/tim-hot-sprockets.md b/site/content/photos/tim-hot-sprockets.md index dc320c5..d42ae38 100644 --- a/site/content/photos/tim-hot-sprockets.md +++ b/site/content/photos/tim-hot-sprockets.md @@ -1,6 +1,6 @@ --- title: "tim-hot-sprockets" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 18:24:45+00:00" album: "music" diff --git a/site/content/photos/tree-howth.md b/site/content/photos/tree-howth.md index f024ede..927c816 100644 --- a/site/content/photos/tree-howth.md +++ b/site/content/photos/tree-howth.md @@ -1,6 +1,6 @@ --- title: "tree-howth" -type: "upload" +mediatype: "upload" description: "TBC" date: "2010-06-27 06:06:50+00:00" album: "people" diff --git a/site/content/photos/tree-killarney.md b/site/content/photos/tree-killarney.md index e24ef75..0bf3c4d 100644 --- a/site/content/photos/tree-killarney.md +++ b/site/content/photos/tree-killarney.md @@ -1,6 +1,6 @@ --- title: "tree-killarney" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-03-27 19:14:36+00:00" album: "landscapes" diff --git a/site/content/photos/tree.md b/site/content/photos/tree.md index 3879a35..3a6367a 100644 --- a/site/content/photos/tree.md +++ b/site/content/photos/tree.md @@ -1,6 +1,6 @@ --- title: "tree" -type: "upload" +mediatype: "upload" description: "TBC" date: "2013-01-26 13:12:45+00:00" album: "experimental" diff --git a/site/content/photos/treehouse-klunkerkranich.md b/site/content/photos/treehouse-klunkerkranich.md index 5a535e8..94c5846 100644 --- a/site/content/photos/treehouse-klunkerkranich.md +++ b/site/content/photos/treehouse-klunkerkranich.md @@ -1,6 +1,6 @@ --- title: "treehouse-klunkerkranich" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-08-25 19:57:10+00:00" album: "city" diff --git a/site/content/photos/treptower-war-memorial.md b/site/content/photos/treptower-war-memorial.md index a614dd6..0ac687a 100644 --- a/site/content/photos/treptower-war-memorial.md +++ b/site/content/photos/treptower-war-memorial.md @@ -1,6 +1,6 @@ --- title: "treptower-war-memorial" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-31 17:37:54+00:00" album: "experimental" diff --git a/site/content/photos/ubahn-berlin.md b/site/content/photos/ubahn-berlin.md index b56cb41..655e7be 100644 --- a/site/content/photos/ubahn-berlin.md +++ b/site/content/photos/ubahn-berlin.md @@ -1,6 +1,6 @@ --- title: "ubahn-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-18 15:48:44+00:00" album: "city" diff --git a/site/content/photos/unicorns.md b/site/content/photos/unicorns.md index 55ccbce..0ff8e79 100644 --- a/site/content/photos/unicorns.md +++ b/site/content/photos/unicorns.md @@ -1,6 +1,6 @@ --- title: "unicorns" -type: "upload" +mediatype: "upload" description: "TBC" date: "2014-04-19 18:57:58+00:00" album: "people" diff --git a/site/content/photos/vantastival-2011-daytime-gs.md b/site/content/photos/vantastival-2011-daytime-gs.md index 763adf0..b8a2b4f 100644 --- a/site/content/photos/vantastival-2011-daytime-gs.md +++ b/site/content/photos/vantastival-2011-daytime-gs.md @@ -1,6 +1,6 @@ --- title: "vantastival-2011-daytime-gs" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 13:17:24+00:00" album: "events" diff --git a/site/content/photos/vantastival-2011-group.md b/site/content/photos/vantastival-2011-group.md index a022a7b..faf76a9 100644 --- a/site/content/photos/vantastival-2011-group.md +++ b/site/content/photos/vantastival-2011-group.md @@ -1,6 +1,6 @@ --- title: "vantastival-2011-group" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 15:14:17+00:00" album: "events" diff --git a/site/content/photos/vantastival-2011.md b/site/content/photos/vantastival-2011.md index d749abe..69eb8d5 100644 --- a/site/content/photos/vantastival-2011.md +++ b/site/content/photos/vantastival-2011.md @@ -1,6 +1,6 @@ --- title: "vantastival-2011" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-30 22:51:17+00:00" album: "events" diff --git a/site/content/photos/vantastival-guitarist.md b/site/content/photos/vantastival-guitarist.md index 84d9881..057232a 100644 --- a/site/content/photos/vantastival-guitarist.md +++ b/site/content/photos/vantastival-guitarist.md @@ -1,6 +1,6 @@ --- title: "vantastival-guitarist" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 13:20:30+00:00" album: "music" diff --git a/site/content/photos/vantastival-performer.md b/site/content/photos/vantastival-performer.md index 7ad3918..dfb05e8 100644 --- a/site/content/photos/vantastival-performer.md +++ b/site/content/photos/vantastival-performer.md @@ -1,6 +1,6 @@ --- title: "vantastival-performer" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-30 20:43:38+00:00" album: "music" diff --git a/site/content/photos/vantastival-rochelle.md b/site/content/photos/vantastival-rochelle.md index 34544ae..d1df3ab 100644 --- a/site/content/photos/vantastival-rochelle.md +++ b/site/content/photos/vantastival-rochelle.md @@ -1,6 +1,6 @@ --- title: "vantastival-rochelle" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-30 19:51:04+00:00" album: "people" diff --git a/site/content/photos/vantastival-ross.md b/site/content/photos/vantastival-ross.md index d9b6a38..29bc58e 100644 --- a/site/content/photos/vantastival-ross.md +++ b/site/content/photos/vantastival-ross.md @@ -1,6 +1,6 @@ --- title: "vantastival-ross" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-30 19:50:44+00:00" album: "people" diff --git a/site/content/photos/vantastival-singer.md b/site/content/photos/vantastival-singer.md index fc9f394..658ab04 100644 --- a/site/content/photos/vantastival-singer.md +++ b/site/content/photos/vantastival-singer.md @@ -1,6 +1,6 @@ --- title: "vantastival-singer" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-05-01 17:32:07+00:00" album: "music" diff --git a/site/content/photos/vantastival-vin.md b/site/content/photos/vantastival-vin.md index 8ad4f94..4f70a6a 100644 --- a/site/content/photos/vantastival-vin.md +++ b/site/content/photos/vantastival-vin.md @@ -1,6 +1,6 @@ --- title: "vantastival-vin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-04-30 19:50:50+00:00" album: "people" diff --git a/site/content/photos/viking-renactor.md b/site/content/photos/viking-renactor.md index a7a6676..54d4888 100644 --- a/site/content/photos/viking-renactor.md +++ b/site/content/photos/viking-renactor.md @@ -1,6 +1,6 @@ --- title: "viking-renactor" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-09-24 17:19:06+00:00" album: "people" diff --git a/site/content/photos/violinist.md b/site/content/photos/violinist.md index 9527276..3ec81dd 100644 --- a/site/content/photos/violinist.md +++ b/site/content/photos/violinist.md @@ -1,6 +1,6 @@ --- title: "violinist" -type: "upload" +mediatype: "upload" description: "TBC" date: "2011-01-10 21:33:35+00:00" album: "music" diff --git a/site/content/photos/volkswagen-berlin.md b/site/content/photos/volkswagen-berlin.md index b827ab3..7ee882a 100644 --- a/site/content/photos/volkswagen-berlin.md +++ b/site/content/photos/volkswagen-berlin.md @@ -1,6 +1,6 @@ --- title: "volkswagen-berlin" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-10 01:58:42+00:00" album: "city" diff --git a/site/content/photos/weinachts-markt-2016.md b/site/content/photos/weinachts-markt-2016.md index ea777c0..858d301 100644 --- a/site/content/photos/weinachts-markt-2016.md +++ b/site/content/photos/weinachts-markt-2016.md @@ -1,6 +1,6 @@ --- title: "weinachts-markt-2016" -type: "upload" +mediatype: "upload" description: "TBC" date: "2015-12-05 17:45:26+00:00" album: "events" diff --git a/site/content/photos/west-berlin-apartment-door.md b/site/content/photos/west-berlin-apartment-door.md index c090a26..cb912ff 100644 --- a/site/content/photos/west-berlin-apartment-door.md +++ b/site/content/photos/west-berlin-apartment-door.md @@ -1,6 +1,6 @@ --- title: "west-berlin-apartment-door" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 12:45:38+00:00" album: "city" diff --git a/site/content/photos/whelans.md b/site/content/photos/whelans.md index 4fb4534..aa2520f 100644 --- a/site/content/photos/whelans.md +++ b/site/content/photos/whelans.md @@ -1,6 +1,6 @@ --- title: "whelans" -type: "upload" +mediatype: "upload" description: "TBC" date: "2010-07-10 01:10:09+00:00" album: "music" diff --git a/site/content/photos/wide-angle-kitchen.md b/site/content/photos/wide-angle-kitchen.md index 349e8b1..3d358ba 100644 --- a/site/content/photos/wide-angle-kitchen.md +++ b/site/content/photos/wide-angle-kitchen.md @@ -1,6 +1,6 @@ --- title: "wide-angle-kitchen" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-07-17 20:16:15+00:00" album: "experimental" diff --git a/site/content/photos/window-pattern.md b/site/content/photos/window-pattern.md index 638f933..88330bc 100644 --- a/site/content/photos/window-pattern.md +++ b/site/content/photos/window-pattern.md @@ -1,6 +1,6 @@ --- title: "window-pattern" -type: "upload" +mediatype: "upload" description: "TBC" date: "2016-12-09 12:46:06+00:00" album: "city" diff --git a/site/content/photos/wittenberg.md b/site/content/photos/wittenberg.md index 9d717de..22b26c3 100644 --- a/site/content/photos/wittenberg.md +++ b/site/content/photos/wittenberg.md @@ -1,6 +1,6 @@ --- title: "wittenberg" -type: "upload" +mediatype: "upload" description: "TBC" date: "2017-04-14 16:50:51" album: "experimental" diff --git a/site/content/photos/workplace.md b/site/content/photos/workplace.md index 4d273ad..61ca93f 100644 --- a/site/content/photos/workplace.md +++ b/site/content/photos/workplace.md @@ -1,8 +1,8 @@ --- title: "workplace" -type: "upload" +mediatype: "upload" description: "TBC" -date: "2014-06-27 23-30-02.823 23:30:02+00:00" +date: "2014-06-27 23:30:02+00:00" album: "city" filename: "workplace.md" series: "" diff --git a/site/content/photos/xha-xhu-zhi.md b/site/content/photos/xha-xhu-zhi.md index 6ad87d3..1e44290 100644 --- a/site/content/photos/xha-xhu-zhi.md +++ b/site/content/photos/xha-xhu-zhi.md @@ -1,6 +1,6 @@ --- title: "xha-xhu-zhi" -type: "upload" +mediatype: "upload" description: "TBC" date: "2006-07-24 08:43:08+00:00" album: "people" diff --git a/site/content/photos/yves.md b/site/content/photos/yves.md index fe8e2b6..23c4298 100644 --- a/site/content/photos/yves.md +++ b/site/content/photos/yves.md @@ -1,6 +1,6 @@ --- title: "yves" -type: "upload" +mediatype: "upload" description: "TBC" date: "2012-01-01 01:00:04+00:00" album: "people" diff --git a/site/layouts/index.html b/site/layouts/index.html index 7b812d2..3149d6a 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -6,8 +6,8 @@ {{ partial "header" . }}
- {{ $albums := where .Data.Pages "Section" "albums" }} - {{ range sort $albums ".Params.weight" "desc" }} + {{ $photos := where .Data.Pages "Section" "photos" }} + {{ range $photos }} {{ .Render "card" }} {{ end }}
diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index e69de29..0d76f9d 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -0,0 +1,3 @@ +
+ This is a photo {{ .Title }} +
\ No newline at end of file diff --git a/site/layouts/photos/single.html b/site/layouts/photos/single.html index e69de29..9599949 100644 --- a/site/layouts/photos/single.html +++ b/site/layouts/photos/single.html @@ -0,0 +1,14 @@ + + + + {{ partial "head" . }} + + + {{ partial "header" . }} +
+ {{ .Content }} +
+ {{ partial "footer" . }} + {{ partial "scripts" }} + + \ No newline at end of file From c6f3b7e9307145ead2bc36d24a944914f8118bf5 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sun, 11 Jun 2017 15:07:55 +0200 Subject: [PATCH 13/66] Creating partials for picture card. --- assets/sass/layouts/landing.sass | 12 ++++++------ assets/scripts/main.js | 3 +-- assets/scripts/utils.js | 5 ----- site/config.yml | 1 + site/layouts/partials/picture.html | 30 ++++++++++++++++++++++++++++++ site/layouts/photos/card.html | 14 +++++++++++--- 6 files changed, 49 insertions(+), 16 deletions(-) create mode 100644 site/layouts/partials/picture.html diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index 0e33509..8fc2171 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -1,6 +1,6 @@ -// main.albums -// display: grid -// grid-template-columns: 1fr 1fr 1fr -// grid-template-rows: 1fr 1fr 1fr -// grid-column-gap: $units -// grid-row-gap: $units \ No newline at end of file +main.albums + display: grid + grid-template-columns: 1fr 1fr 1fr + grid-template-rows: 1fr 1fr 1fr + grid-column-gap: $units + grid-row-gap: $units \ No newline at end of file diff --git a/assets/scripts/main.js b/assets/scripts/main.js index 0f48af6..14a9548 100644 --- a/assets/scripts/main.js +++ b/assets/scripts/main.js @@ -5,6 +5,5 @@ if(window.cinematt == null) { } onload = () => { - const utils = cinematt.utils; - utils.dummy(); + let imgs = document.querySelectorAll('img'); }; \ No newline at end of file diff --git a/assets/scripts/utils.js b/assets/scripts/utils.js index 9f6c0c7..ed4faa6 100644 --- a/assets/scripts/utils.js +++ b/assets/scripts/utils.js @@ -5,9 +5,4 @@ if(window.cinematt == null) { } window.cinematt.utils = { - - dummy: () => { - console.log('Dummy function call successful!'); - } - }; \ No newline at end of file diff --git a/site/config.yml b/site/config.yml index 502756b..1036d44 100644 --- a/site/config.yml +++ b/site/config.yml @@ -9,6 +9,7 @@ preservetaxonomynames: true params: description: "Photography website" author: "Matt Finucane" + cl_media_base: "https://res.cloudinary.com/matt-finucane-portfolio/" noindex: true ... diff --git a/site/layouts/partials/picture.html b/site/layouts/partials/picture.html new file mode 100644 index 0000000..302aecc --- /dev/null +++ b/site/layouts/partials/picture.html @@ -0,0 +1,30 @@ + + + + + + + + + \ No newline at end of file diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index 0d76f9d..c384ea7 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -1,3 +1,11 @@ -
- This is a photo {{ .Title }} -
\ No newline at end of file +{{ $base := .Site.Params.cl_media_base }} +
+ {{ .Title }} + + {{ .Date.Format "January 2006" }} + +
\ No newline at end of file From d06a4e9337330de932895fc117acd245f284abc7 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sun, 11 Jun 2017 17:27:14 +0200 Subject: [PATCH 14/66] Regenerated photos content and added dominant colour data. --- assets/sass/cards.sass | 25 +++++++++++ assets/scripts/main.js | 17 +++++++- .../{ => abandoned}/ballinskelligs-cottage.md | 14 +++++++ .../cite-foche-anna-illuminated.md | 14 +++++++ .../{ => abandoned}/cite-foche-anna-rain.md | 13 ++++++ .../{ => abandoned}/cite-foche-cinema.md | 6 +++ .../{ => abandoned}/cite-foche-exterior.md | 15 +++++++ .../{ => abandoned}/cite-foche-hole-wall.md | 4 ++ .../{ => abandoned}/cite-foche-offices.md | 20 +++++++++ .../{ => abandoned}/cite-foche-reflections.md | 17 ++++++++ .../{ => abandoned}/haus-der-statistiche-2.md | 11 +++++ .../{ => abandoned}/haus-der-statistiche.md | 16 +++++++ .../{ => abandoned}/hohenschenhausen-cell.md | 14 +++++++ .../{ => abandoned}/rian-ro-kerry-bar.md | 6 +++ .../{ => abandoned}/rian-ro-kerry-lobby.md | 22 ++++++++++ .../{ => abandoned}/rian-ro-kerry-windows.md | 20 +++++++++ .../photos/{ => abandoned}/rian-ro-kerry.md | 15 +++++++ .../stadtbad-wedding-anna-dark.md | 26 ++++++++++++ .../stadtbad-wedding-anna-pool.md | 17 ++++++++ .../{ => abandoned}/stadtbad-wedding-anna.md | 29 +++++++++++++ .../stadtbad-wedding-blinds.md | 17 ++++++++ .../{ => abandoned}/stadtbad-wedding-door.md | 8 ++++ .../stadtbad-wedding-stairs.md | 6 +++ .../photos/{ => abandoned}/the-glen-shop.md | 19 ++++++++- .../photos/{ => city}/alt-neue-berlin.md | 17 ++++++++ .../photos/{ => city}/anna-pearse-station.md | 26 ++++++++++++ site/content/photos/{ => city}/anna_markt.md | 21 ++++++++++ .../photos/{ => city}/bankomat-berlin.md | 10 +++++ .../photos/{ => city}/barcelona-ship.md | 16 +++++++ .../{ => city}/berlin-christmas-market-bar.md | 29 +++++++++++++ .../berlin-christmas-market-shed.md | 22 ++++++++++ .../{ => city}/berlin-christmas-market.md | 20 +++++++++ .../berlin-demonstration-lying-down.md | 30 +++++++++++++ .../{ => city}/berlin-expo-messe-nord.md | 6 +++ .../{ => city}/berlin-protest-banner.md | 14 +++++++ .../photos/{ => city}/berlin-supermarkt.md | 28 +++++++++++++ site/content/photos/{ => city}/border.md | 11 +++++ .../photos/{ => city}/brandenburger-tor.md | 15 +++++++ .../photos/{ => city}/busker-street-berlin.md | 27 ++++++++++++ .../photos/{ => city}/casino-berlin.md | 28 +++++++++++++ .../{ => city}/charlottenburg-lake-fisheye.md | 21 ++++++++++ .../{ => city}/charlottenburg-statue.md | 16 +++++++ .../photos/{ => city}/church_interior.md | 22 ++++++++++ .../photos/{ => city}/city-lamp-posters.md | 34 +++++++++++++++ .../{ => city}/demonstration-crowd-berlin.md | 33 +++++++++++++++ .../photos/{ => city}/dublin-street.md | 23 ++++++++++ .../photos/{ => city}/eagle-tempelhof.md | 17 ++++++++ .../{ => city}/expo-center-veb-berlin.md | 14 +++++++ site/content/photos/{ => city}/fernsehturm.md | 9 ++++ site/content/photos/{ => city}/film-palast.md | 14 +++++++ .../photos/{ => city}/flasche-tempelhof.md | 11 +++++ .../photos/{ => city}/fontane_trevi.md | 10 +++++ .../{ => city}/gluwein-christmas-market.md | 25 +++++++++++ .../photos/{ => city}/greifswalder-tunnel.md | 6 +++ .../{ => city}/greifswaler_apartments.md | 14 +++++++ .../photos/{ => city}/grogans-the-castle.md | 19 +++++++++ .../{ => city}/ice-lake-charlottenburg.md | 6 +++ .../{ => city}/karl-mark-allee-shops.md | 6 +++ .../photos/{ => city}/karl-marx-alle-anna.md | 6 +++ .../{ => city}/kino-international-berlin.md | 19 +++++++++ .../{ => city}/klunkerkranich-chairs.md | 28 +++++++++++++ .../{ => city}/klunkerkranich-fernsehturm.md | 22 ++++++++++ .../photos/{ => city}/kudamm-christmas.md | 28 +++++++++++++ .../content/photos/{ => city}/kudamm-kiosk.md | 22 ++++++++++ .../{ => city}/look-beautiful-tempelhof.md | 24 +++++++++++ .../photos/{ => city}/marienfeld-church.md | 18 ++++++++ .../{ => city}/marienfield-church-ceiling.md | 9 ++++ .../{ => city}/messe-nord-race-terrace.md | 6 +++ site/content/photos/{ => city}/motel-avus.md | 26 ++++++++++++ .../{ => city}/phoenix-park-model-plane.md | 4 ++ .../content/photos/{ => city}/poland-house.md | 20 +++++++++ site/content/photos/{ => city}/polizei.md | 29 +++++++++++++ .../photos/{ => city}/portugal-street.md | 13 ++++++ .../photos/{ => city}/presse-tabak-berlin.md | 20 +++++++++ .../{ => city}/redline-film-take-dublin.md | 19 +++++++++ .../{ => city}/rixdorf-christmas-market.md | 21 ++++++++++ .../{ => city}/russian-embassy-berlin.md | 21 ++++++++++ .../photos/{ => city}/shopping-trolley.md | 23 ++++++++++ .../content/photos/{ => city}/spree-statue.md | 23 ++++++++++ site/content/photos/{ => city}/steps.md | 6 +++ .../content/photos/{ => city}/stoplerstein.md | 15 +++++++ .../photos/{ => city}/table-tennis-berlin.md | 15 +++++++ .../photos/{ => city}/tara-street-dart.md | 25 +++++++++++ .../photos/{ => city}/tempelhof-cyclist.md | 19 +++++++++ .../{ => city}/treehouse-klunkerkranich.md | 23 ++++++++++ .../content/photos/{ => city}/ubahn-berlin.md | 12 ++++++ .../photos/{ => city}/volkswagen-berlin.md | 21 ++++++++++ .../{ => city}/west-berlin-apartment-door.md | 17 ++++++++ .../photos/{ => city}/window-pattern.md | 11 +++++ site/content/photos/{ => city}/workplace.md | 13 ++++++ .../photos/{ => events}/berlin-10k-group.md | 6 +++ .../photos/{ => events}/berlin-5k-ruairi.md | 32 ++++++++++++++ .../{ => events}/easter-market-cakes.md | 22 ++++++++++ .../karneval-der-kulturen-dress.md | 28 +++++++++++++ .../{ => events}/karneval-der-kulturen-hat.md | 26 ++++++++++++ .../karneval-der-kulturen-mojito.md | 38 +++++++++++++++++ .../karneval-der-kulturen-people.md | 35 ++++++++++++++++ .../karneval-der-kulturen-sandals.md | 17 ++++++++ .../photos/{ => events}/meteor-meetup.md | 28 +++++++++++++ .../photos/{ => events}/northwest-200.md | 20 +++++++++ site/content/photos/{ => events}/praater.md | 33 +++++++++++++++ .../photos/{ => events}/refeshments.md | 34 +++++++++++++++ .../{ => events}/spirit-of-folk-musician.md | 36 ++++++++++++++++ .../{ => events}/spirit-of-folk-people.md | 5 +++ .../{ => events}/spirit-of-folk-shield.md | 29 +++++++++++++ .../{ => events}/spirit-of-folk-tent.md | 5 +++ .../photos/{ => events}/spwc-dublin-waldos.md | 23 ++++++++++ .../vantastival-2011-daytime-gs.md | 6 +++ .../{ => events}/vantastival-2011-group.md | 28 +++++++++++++ .../photos/{ => events}/vantastival-2011.md | 5 +++ .../{ => events}/weinachts-markt-2016.md | 16 +++++++ .../{ => experimental}/adac-building.md | 13 ++++++ .../photos/{ => experimental}/braurei.md | 34 +++++++++++++++ .../{ => experimental}/building-pattern.md | 5 +++ .../channel-tunnel-self-portrait.md | 14 +++++++ .../{ => experimental}/channel-tunnel.md | 15 +++++++ .../{ => experimental}/charlottenburg-tree.md | 20 +++++++++ .../{ => experimental}/cliffs-2005-cans.md | 7 ++++ .../photos/{ => experimental}/cliffs-2005.md | 6 +++ .../{ => experimental}/deer-park-window.md | 14 +++++++ .../photos/{ => experimental}/dublin.md | 10 +++++ .../photos/{ => experimental}/easter-prost.md | 29 +++++++++++++ .../photos/{ => experimental}/escalator.md | 7 ++++ .../photos/{ => experimental}/eternit.md | 5 +++ .../photos/{ => experimental}/fence-poland.md | 17 ++++++++ .../photos/{ => experimental}/fence.md | 22 ++++++++++ .../photos/{ => experimental}/kaisers.md | 26 ++++++++++++ .../{ => experimental}/karl-marx-allee.md | 21 ++++++++++ .../kitesurfer-tempelhof.md | 15 +++++++ .../{ => experimental}/klunkerkranich.md | 11 +++++ .../{ => experimental}/konigs-wusterhausen.md | 5 +++ .../photos/{ => experimental}/kunst-museum.md | 15 +++++++ .../{ => experimental}/markt-spiegel-anna.md | 34 +++++++++++++++ .../photos/{ => experimental}/mossy-drums.md | 5 +++ site/content/photos/{ => experimental}/orb.md | 5 +++ .../{ => experimental}/scaffold-tunnel.md | 33 +++++++++++++++ .../{ => experimental}/schnitzel_konig.md | 13 ++++++ .../{ => experimental}/side-street-berlin.md | 23 ++++++++++ .../{ => experimental}/side_steps_wall.md | 9 ++++ .../spreepark-ferris-wheel.md | 19 +++++++++ .../{ => experimental}/stadtbadd-wedding.md | 19 +++++++++ .../tempelhof-floodlight.md | 7 ++++ .../content/photos/{ => experimental}/tree.md | 16 +++++++ .../treptower-war-memorial.md | 11 +++++ .../{ => experimental}/wide-angle-kitchen.md | 6 +++ .../photos/{ => experimental}/wittenberg.md | 16 +++++++ .../{ => landscapes}/dublin-from-howth.md | 17 ++++++++ .../content/photos/{ => landscapes}/forest.md | 23 ++++++++++ .../{ => landscapes}/glendalough-landscape.md | 25 +++++++++++ .../{ => landscapes}/glendalough-path.md | 19 +++++++++ .../{ => landscapes}/glendalough-tower.md | 18 ++++++++ .../{ => landscapes}/howth-fishing-boat.md | 6 +++ .../howth-harbour-lighthouse.md | 4 ++ .../photos/{ => landscapes}/howth-harbour.md | 14 +++++++ .../photos/{ => landscapes}/howth_pier.md | 6 +++ .../kerry-cottage-long-exposure.md | 22 ++++++++++ .../photos/{ => landscapes}/kerry-sheep.md | 20 +++++++++ site/content/photos/{ => landscapes}/lake.md | 7 ++++ .../{ => landscapes}/lakes-killarney.md | 17 ++++++++ .../photos/{ => landscapes}/seagull-poland.md | 18 ++++++++ .../photos/{ => landscapes}/skelligs-kerry.md | 6 +++ .../st-finans-bay-long-exposure.md | 14 +++++++ .../{ => landscapes}/st-finians-beach.md | 12 ++++++ .../photos/{ => landscapes}/tree-killarney.md | 6 +++ .../photos/{ => music}/alabama-3-guitarist.md | 6 +++ .../photos/{ => music}/alabama-3-lead.md | 4 ++ .../photos/{ => music}/alabama-3-single.md | 4 ++ .../photos/{ => music}/alabama-3-stage.md | 6 +++ .../photos/{ => music}/alabama-3-vocals.md | 6 +++ site/content/photos/{ => music}/colm.md | 5 +++ .../photos/{ => music}/hot-sprockets-leads.md | 19 +++++++++ .../hot-sprockets-stage-vantastival.md | 6 +++ .../content/photos/{ => music}/mixing-desk.md | 14 +++++++ .../content/photos/{ => music}/mossy-nolan.md | 20 +++++++++ .../{ => music}/prairie-dawgs-connor.md | 4 ++ .../photos/{ => music}/prairie-dawgs-karen.md | 14 +++++++ .../{ => music}/prairie-dawgs-ruairi.md | 4 ++ .../photos/{ => music}/rhob-cunningham.md | 19 +++++++++ site/content/photos/{ => music}/richie-cmc.md | 5 +++ site/content/photos/{ => music}/stina.md | 20 +++++++++ .../photos/{ => music}/the-young-folk-lead.md | 5 +++ .../tim-hot-sprockets-under-mic.md | 23 ++++++++++ .../photos/{ => music}/tim-hot-sprockets.md | 15 +++++++ .../{ => music}/vantastival-guitarist.md | 25 +++++++++++ .../{ => music}/vantastival-performer.md | 21 ++++++++++ .../photos/{ => music}/vantastival-singer.md | 27 ++++++++++++ site/content/photos/{ => music}/violinist.md | 4 ++ site/content/photos/{ => music}/whelans.md | 5 +++ .../photos/{ => nature}/balcony-plants.md | 19 +++++++++ .../photos/{ => nature}/bird-closeup.md | 15 +++++++ .../photos/{ => nature}/bird-poised.md | 28 +++++++++++++ site/content/photos/{ => nature}/blumen.md | 24 +++++++++++ .../photos/{ => nature}/cliffs-toadstool.md | 23 ++++++++++ .../content/photos/{ => nature}/dark-grass.md | 31 ++++++++++++++ .../photos/{ => nature}/frosted-leaves.md | 37 ++++++++++++++++ .../photos/{ => nature}/howth-horse.md | 6 +++ .../photos/{ => nature}/kerry-road-horse.md | 23 ++++++++++ .../photos/{ => nature}/lahu-village-cat.md | 17 ++++++++ .../photos/{ => nature}/leaves-water.md | 16 +++++++ site/content/photos/{ => nature}/pai-cat.md | 19 +++++++++ .../content/photos/{ => nature}/pai-parrot.md | 28 +++++++++++++ .../photos/{ => nature}/phi-phi-monkey.md | 22 ++++++++++ .../photos/{ => nature}/phoenix-park-deer.md | 19 +++++++++ .../photos/{ => nature}/plant-labels.md | 31 ++++++++++++++ .../photos/{ => nature}/rupert-clarissa.md | 15 +++++++ .../content/photos/{ => nature}/schneedrop.md | 6 +++ .../{ => nature}/spirit-of-folk-bird.md | 12 ++++++ .../photos/{ => people}/aideens-rock-anna.md | 21 ++++++++++ .../{ => people}/alberto-blindfolded.md | 25 +++++++++++ .../{ => people}/alberto-david-unicorns.md | 16 +++++++ .../photos/{ => people}/alberto-dschung.md | 29 +++++++++++++ .../photos/{ => people}/anna-candid.md | 17 ++++++++ .../photos/{ => people}/anna-cite-foche.md | 12 ++++++ .../photos/{ => people}/anna-grogans-pint.md | 6 +++ .../photos/{ => people}/anna-light-museum.md | 22 ++++++++++ .../{ => people}/anna-portfolio-closeup.md | 18 ++++++++ .../{ => people}/anna-portfolio-desk.md | 19 +++++++++ .../photos/{ => people}/anna-portrait.md | 24 +++++++++++ .../{ => people}/anna-shoot-facing-camera.md | 29 +++++++++++++ .../photos/{ => people}/anna-shoot-flowers.md | 20 +++++++++ .../{ => people}/anna-shoot-hair-swirl.md | 21 ++++++++++ site/content/photos/{ => people}/anna_pier.md | 21 ++++++++++ site/content/photos/{ => people}/canal.md | 29 +++++++++++++ site/content/photos/{ => people}/chloe.md | 11 +++++ .../photos/{ => people}/christina-berlin.md | 21 ++++++++++ .../{ => people}/christina-light-museum.md | 18 ++++++++ .../{ => people}/christina-matt-berlin.md | 22 ++++++++++ .../{ => people}/crew-camera-checking.md | 25 +++++++++++ .../content/photos/{ => people}/dad-lauren.md | 6 +++ .../{ => people}/dan_and_luke_kitchen.md | 28 +++++++++++++ .../content/photos/{ => people}/dan_sophie.md | 28 +++++++++++++ .../photos/{ => people}/david-oliveira.md | 25 +++++++++++ .../photos/{ => people}/dschung-hand.md | 19 +++++++++ .../photos/{ => people}/dschung-nori.md | 23 ++++++++++ .../photos/{ => people}/dschung-standing.md | 23 ++++++++++ site/content/photos/{ => people}/eavan.md | 29 +++++++++++++ .../photos/{ => people}/finucane-family.md | 6 +++ .../photos/{ => people}/francis-wine-glass.md | 5 +++ .../{ => people}/german-actress-forest.md | 17 ++++++++ .../{ => people}/grogans-finger-chomp.md | 25 +++++++++++ .../photos/{ => people}/jonathan-cliffs.md | 27 ++++++++++++ .../photos/{ => people}/jonathan-mum.md | 27 ++++++++++++ site/content/photos/{ => people}/jonathan.md | 24 +++++++++++ site/content/photos/{ => people}/jumper.md | 19 +++++++++ .../karneval-der-kulturen-group.md | 42 +++++++++++++++++++ .../{ => people}/karneval-der-kulturen.md | 27 ++++++++++++ .../{ => people}/kluner-kranich-visitors.md | 25 +++++++++++ .../knonigs-wusterhausen-ruairi-fionn.md | 32 ++++++++++++++ .../lakeside-konigs-wusterhausen.md | 23 ++++++++++ .../photos/{ => people}/li-behind-paper.md | 20 +++++++++ .../photos/{ => people}/li-tempelhof.md | 17 ++++++++ site/content/photos/{ => people}/li.md | 27 ++++++++++++ site/content/photos/{ => people}/lunchtime.md | 7 ++++ .../content/photos/{ => people}/mick-beach.md | 14 +++++++ .../photos/{ => people}/model-airplane.md | 16 +++++++ .../photos/{ => people}/mossy-laura.md | 23 ++++++++++ .../norwegian-actress-forest-shoot.md | 17 ++++++++ .../{ => people}/norwegian-actress-profile.md | 16 +++++++ .../photos/{ => people}/overcooked_anna.md | 6 +++ .../photos/{ => people}/paul-and-luke.md | 6 +++ .../photos/{ => people}/paul-james-beach.md | 15 +++++++ .../{ => people}/peter-coonan-redline.md | 6 +++ .../photos/{ => people}/phil-bans-donegal.md | 6 +++ .../{ => people}/phoenix-park-training.md | 15 +++++++ .../photos/{ => people}/photographer.md | 19 +++++++++ .../photos/{ => people}/portugal-guitarist.md | 32 ++++++++++++++ site/content/photos/{ => people}/pppb.md | 7 ++++ .../photos/{ => people}/ruairi-fionn.md | 38 +++++++++++++++++ site/content/photos/{ => people}/singer.md | 5 +++ .../photos/{ => people}/smartphones.md | 18 ++++++++ .../photos/{ => people}/spwc-performer.md | 35 ++++++++++++++++ .../photos/{ => people}/street-performer.md | 15 +++++++ .../content/photos/{ => people}/tree-howth.md | 36 ++++++++++++++++ site/content/photos/{ => people}/unicorns.md | 22 ++++++++++ .../{ => people}/vantastival-rochelle.md | 18 ++++++++ .../photos/{ => people}/vantastival-ross.md | 31 ++++++++++++++ .../photos/{ => people}/vantastival-vin.md | 27 ++++++++++++ .../photos/{ => people}/viking-renactor.md | 18 ++++++++ .../photos/{ => people}/xha-xhu-zhi.md | 28 +++++++++++++ site/content/photos/{ => people}/yves.md | 29 +++++++++++++ site/layouts/photos/card.html | 29 +++++++++++-- 281 files changed, 5012 insertions(+), 6 deletions(-) rename site/content/photos/{ => abandoned}/ballinskelligs-cottage.md (81%) rename site/content/photos/{ => abandoned}/cite-foche-anna-illuminated.md (81%) rename site/content/photos/{ => abandoned}/cite-foche-anna-rain.md (82%) rename site/content/photos/{ => abandoned}/cite-foche-cinema.md (90%) rename site/content/photos/{ => abandoned}/cite-foche-exterior.md (79%) rename site/content/photos/{ => abandoned}/cite-foche-hole-wall.md (93%) rename site/content/photos/{ => abandoned}/cite-foche-offices.md (75%) rename site/content/photos/{ => abandoned}/cite-foche-reflections.md (77%) rename site/content/photos/{ => abandoned}/haus-der-statistiche-2.md (84%) rename site/content/photos/{ => abandoned}/haus-der-statistiche.md (78%) rename site/content/photos/{ => abandoned}/hohenschenhausen-cell.md (80%) rename site/content/photos/{ => abandoned}/rian-ro-kerry-bar.md (90%) rename site/content/photos/{ => abandoned}/rian-ro-kerry-lobby.md (73%) rename site/content/photos/{ => abandoned}/rian-ro-kerry-windows.md (75%) rename site/content/photos/{ => abandoned}/rian-ro-kerry.md (79%) rename site/content/photos/{ => abandoned}/stadtbad-wedding-anna-dark.md (70%) rename site/content/photos/{ => abandoned}/stadtbad-wedding-anna-pool.md (78%) rename site/content/photos/{ => abandoned}/stadtbad-wedding-anna.md (67%) rename site/content/photos/{ => abandoned}/stadtbad-wedding-blinds.md (78%) rename site/content/photos/{ => abandoned}/stadtbad-wedding-door.md (88%) rename site/content/photos/{ => abandoned}/stadtbad-wedding-stairs.md (91%) rename site/content/photos/{ => abandoned}/the-glen-shop.md (74%) rename site/content/photos/{ => city}/alt-neue-berlin.md (76%) rename site/content/photos/{ => city}/anna-pearse-station.md (69%) rename site/content/photos/{ => city}/anna_markt.md (73%) rename site/content/photos/{ => city}/bankomat-berlin.md (85%) rename site/content/photos/{ => city}/barcelona-ship.md (78%) rename site/content/photos/{ => city}/berlin-christmas-market-bar.md (67%) rename site/content/photos/{ => city}/berlin-christmas-market-shed.md (73%) rename site/content/photos/{ => city}/berlin-christmas-market.md (75%) rename site/content/photos/{ => city}/berlin-demonstration-lying-down.md (67%) rename site/content/photos/{ => city}/berlin-expo-messe-nord.md (90%) rename site/content/photos/{ => city}/berlin-protest-banner.md (80%) rename site/content/photos/{ => city}/berlin-supermarkt.md (68%) rename site/content/photos/{ => city}/border.md (83%) rename site/content/photos/{ => city}/brandenburger-tor.md (79%) rename site/content/photos/{ => city}/busker-street-berlin.md (68%) rename site/content/photos/{ => city}/casino-berlin.md (67%) rename site/content/photos/{ => city}/charlottenburg-lake-fisheye.md (74%) rename site/content/photos/{ => city}/charlottenburg-statue.md (78%) rename site/content/photos/{ => city}/church_interior.md (72%) rename site/content/photos/{ => city}/city-lamp-posters.md (63%) rename site/content/photos/{ => city}/demonstration-crowd-berlin.md (64%) rename site/content/photos/{ => city}/dublin-street.md (71%) rename site/content/photos/{ => city}/eagle-tempelhof.md (77%) rename site/content/photos/{ => city}/expo-center-veb-berlin.md (81%) rename site/content/photos/{ => city}/fernsehturm.md (86%) rename site/content/photos/{ => city}/film-palast.md (80%) rename site/content/photos/{ => city}/flasche-tempelhof.md (84%) rename site/content/photos/{ => city}/fontane_trevi.md (85%) rename site/content/photos/{ => city}/gluwein-christmas-market.md (70%) rename site/content/photos/{ => city}/greifswalder-tunnel.md (90%) rename site/content/photos/{ => city}/greifswaler_apartments.md (80%) rename site/content/photos/{ => city}/grogans-the-castle.md (75%) rename site/content/photos/{ => city}/ice-lake-charlottenburg.md (90%) rename site/content/photos/{ => city}/karl-mark-allee-shops.md (90%) rename site/content/photos/{ => city}/karl-marx-alle-anna.md (90%) rename site/content/photos/{ => city}/kino-international-berlin.md (76%) rename site/content/photos/{ => city}/klunkerkranich-chairs.md (67%) rename site/content/photos/{ => city}/klunkerkranich-fernsehturm.md (73%) rename site/content/photos/{ => city}/kudamm-christmas.md (67%) rename site/content/photos/{ => city}/kudamm-kiosk.md (72%) rename site/content/photos/{ => city}/look-beautiful-tempelhof.md (71%) rename site/content/photos/{ => city}/marienfeld-church.md (76%) rename site/content/photos/{ => city}/marienfield-church-ceiling.md (86%) rename site/content/photos/{ => city}/messe-nord-race-terrace.md (90%) rename site/content/photos/{ => city}/motel-avus.md (68%) rename site/content/photos/{ => city}/phoenix-park-model-plane.md (93%) rename site/content/photos/{ => city}/poland-house.md (74%) rename site/content/photos/{ => city}/polizei.md (65%) rename site/content/photos/{ => city}/portugal-street.md (81%) rename site/content/photos/{ => city}/presse-tabak-berlin.md (74%) rename site/content/photos/{ => city}/redline-film-take-dublin.md (76%) rename site/content/photos/{ => city}/rixdorf-christmas-market.md (74%) rename site/content/photos/{ => city}/russian-embassy-berlin.md (74%) rename site/content/photos/{ => city}/shopping-trolley.md (71%) rename site/content/photos/{ => city}/spree-statue.md (71%) rename site/content/photos/{ => city}/steps.md (90%) rename site/content/photos/{ => city}/stoplerstein.md (79%) rename site/content/photos/{ => city}/table-tennis-berlin.md (79%) rename site/content/photos/{ => city}/tara-street-dart.md (69%) rename site/content/photos/{ => city}/tempelhof-cyclist.md (75%) rename site/content/photos/{ => city}/treehouse-klunkerkranich.md (72%) rename site/content/photos/{ => city}/ubahn-berlin.md (82%) rename site/content/photos/{ => city}/volkswagen-berlin.md (73%) rename site/content/photos/{ => city}/west-berlin-apartment-door.md (78%) rename site/content/photos/{ => city}/window-pattern.md (84%) rename site/content/photos/{ => city}/workplace.md (81%) rename site/content/photos/{ => events}/berlin-10k-group.md (90%) rename site/content/photos/{ => events}/berlin-5k-ruairi.md (64%) rename site/content/photos/{ => events}/easter-market-cakes.md (72%) rename site/content/photos/{ => events}/karneval-der-kulturen-dress.md (68%) rename site/content/photos/{ => events}/karneval-der-kulturen-hat.md (70%) rename site/content/photos/{ => events}/karneval-der-kulturen-mojito.md (61%) rename site/content/photos/{ => events}/karneval-der-kulturen-people.md (63%) rename site/content/photos/{ => events}/karneval-der-kulturen-sandals.md (78%) rename site/content/photos/{ => events}/meteor-meetup.md (67%) rename site/content/photos/{ => events}/northwest-200.md (75%) rename site/content/photos/{ => events}/praater.md (63%) rename site/content/photos/{ => events}/refeshments.md (63%) rename site/content/photos/{ => events}/spirit-of-folk-musician.md (63%) rename site/content/photos/{ => events}/spirit-of-folk-people.md (92%) rename site/content/photos/{ => events}/spirit-of-folk-shield.md (67%) rename site/content/photos/{ => events}/spirit-of-folk-tent.md (92%) rename site/content/photos/{ => events}/spwc-dublin-waldos.md (72%) rename site/content/photos/{ => events}/vantastival-2011-daytime-gs.md (90%) rename site/content/photos/{ => events}/vantastival-2011-group.md (68%) rename site/content/photos/{ => events}/vantastival-2011.md (92%) rename site/content/photos/{ => events}/weinachts-markt-2016.md (78%) rename site/content/photos/{ => experimental}/adac-building.md (81%) rename site/content/photos/{ => experimental}/braurei.md (62%) rename site/content/photos/{ => experimental}/building-pattern.md (92%) rename site/content/photos/{ => experimental}/channel-tunnel-self-portrait.md (81%) rename site/content/photos/{ => experimental}/channel-tunnel.md (79%) rename site/content/photos/{ => experimental}/charlottenburg-tree.md (75%) rename site/content/photos/{ => experimental}/cliffs-2005-cans.md (89%) rename site/content/photos/{ => experimental}/cliffs-2005.md (90%) rename site/content/photos/{ => experimental}/deer-park-window.md (80%) rename site/content/photos/{ => experimental}/dublin.md (84%) rename site/content/photos/{ => experimental}/easter-prost.md (67%) rename site/content/photos/{ => experimental}/escalator.md (89%) rename site/content/photos/{ => experimental}/eternit.md (91%) rename site/content/photos/{ => experimental}/fence-poland.md (77%) rename site/content/photos/{ => experimental}/fence.md (72%) rename site/content/photos/{ => experimental}/kaisers.md (68%) rename site/content/photos/{ => experimental}/karl-marx-allee.md (73%) rename site/content/photos/{ => experimental}/kitesurfer-tempelhof.md (80%) rename site/content/photos/{ => experimental}/klunkerkranich.md (84%) rename site/content/photos/{ => experimental}/konigs-wusterhausen.md (92%) rename site/content/photos/{ => experimental}/kunst-museum.md (79%) rename site/content/photos/{ => experimental}/markt-spiegel-anna.md (64%) rename site/content/photos/{ => experimental}/mossy-drums.md (92%) rename site/content/photos/{ => experimental}/orb.md (91%) rename site/content/photos/{ => experimental}/scaffold-tunnel.md (64%) rename site/content/photos/{ => experimental}/schnitzel_konig.md (81%) rename site/content/photos/{ => experimental}/side-street-berlin.md (72%) rename site/content/photos/{ => experimental}/side_steps_wall.md (86%) rename site/content/photos/{ => experimental}/spreepark-ferris-wheel.md (76%) rename site/content/photos/{ => experimental}/stadtbadd-wedding.md (75%) rename site/content/photos/{ => experimental}/tempelhof-floodlight.md (89%) rename site/content/photos/{ => experimental}/tree.md (77%) rename site/content/photos/{ => experimental}/treptower-war-memorial.md (84%) rename site/content/photos/{ => experimental}/wide-angle-kitchen.md (90%) rename site/content/photos/{ => experimental}/wittenberg.md (78%) rename site/content/photos/{ => landscapes}/dublin-from-howth.md (77%) rename site/content/photos/{ => landscapes}/forest.md (71%) rename site/content/photos/{ => landscapes}/glendalough-landscape.md (70%) rename site/content/photos/{ => landscapes}/glendalough-path.md (75%) rename site/content/photos/{ => landscapes}/glendalough-tower.md (76%) rename site/content/photos/{ => landscapes}/howth-fishing-boat.md (90%) rename site/content/photos/{ => landscapes}/howth-harbour-lighthouse.md (93%) rename site/content/photos/{ => landscapes}/howth-harbour.md (80%) rename site/content/photos/{ => landscapes}/howth_pier.md (90%) rename site/content/photos/{ => landscapes}/kerry-cottage-long-exposure.md (73%) rename site/content/photos/{ => landscapes}/kerry-sheep.md (74%) rename site/content/photos/{ => landscapes}/lake.md (88%) rename site/content/photos/{ => landscapes}/lakes-killarney.md (77%) rename site/content/photos/{ => landscapes}/seagull-poland.md (76%) rename site/content/photos/{ => landscapes}/skelligs-kerry.md (90%) rename site/content/photos/{ => landscapes}/st-finans-bay-long-exposure.md (81%) rename site/content/photos/{ => landscapes}/st-finians-beach.md (83%) rename site/content/photos/{ => landscapes}/tree-killarney.md (90%) rename site/content/photos/{ => music}/alabama-3-guitarist.md (90%) rename site/content/photos/{ => music}/alabama-3-lead.md (93%) rename site/content/photos/{ => music}/alabama-3-single.md (93%) rename site/content/photos/{ => music}/alabama-3-stage.md (90%) rename site/content/photos/{ => music}/alabama-3-vocals.md (90%) rename site/content/photos/{ => music}/colm.md (91%) rename site/content/photos/{ => music}/hot-sprockets-leads.md (75%) rename site/content/photos/{ => music}/hot-sprockets-stage-vantastival.md (91%) rename site/content/photos/{ => music}/mixing-desk.md (79%) rename site/content/photos/{ => music}/mossy-nolan.md (74%) rename site/content/photos/{ => music}/prairie-dawgs-connor.md (93%) rename site/content/photos/{ => music}/prairie-dawgs-karen.md (81%) rename site/content/photos/{ => music}/prairie-dawgs-ruairi.md (93%) rename site/content/photos/{ => music}/rhob-cunningham.md (75%) rename site/content/photos/{ => music}/richie-cmc.md (92%) rename site/content/photos/{ => music}/stina.md (73%) rename site/content/photos/{ => music}/the-young-folk-lead.md (92%) rename site/content/photos/{ => music}/tim-hot-sprockets-under-mic.md (72%) rename site/content/photos/{ => music}/tim-hot-sprockets.md (79%) rename site/content/photos/{ => music}/vantastival-guitarist.md (70%) rename site/content/photos/{ => music}/vantastival-performer.md (74%) rename site/content/photos/{ => music}/vantastival-singer.md (68%) rename site/content/photos/{ => music}/violinist.md (93%) rename site/content/photos/{ => music}/whelans.md (91%) rename site/content/photos/{ => nature}/balcony-plants.md (75%) rename site/content/photos/{ => nature}/bird-closeup.md (79%) rename site/content/photos/{ => nature}/bird-poised.md (67%) rename site/content/photos/{ => nature}/blumen.md (70%) rename site/content/photos/{ => nature}/cliffs-toadstool.md (72%) rename site/content/photos/{ => nature}/dark-grass.md (65%) rename site/content/photos/{ => nature}/frosted-leaves.md (61%) rename site/content/photos/{ => nature}/howth-horse.md (90%) rename site/content/photos/{ => nature}/kerry-road-horse.md (71%) rename site/content/photos/{ => nature}/lahu-village-cat.md (77%) rename site/content/photos/{ => nature}/leaves-water.md (78%) rename site/content/photos/{ => nature}/pai-cat.md (75%) rename site/content/photos/{ => nature}/pai-parrot.md (67%) rename site/content/photos/{ => nature}/phi-phi-monkey.md (72%) rename site/content/photos/{ => nature}/phoenix-park-deer.md (75%) rename site/content/photos/{ => nature}/plant-labels.md (65%) rename site/content/photos/{ => nature}/rupert-clarissa.md (79%) rename site/content/photos/{ => nature}/schneedrop.md (90%) rename site/content/photos/{ => nature}/spirit-of-folk-bird.md (83%) rename site/content/photos/{ => people}/aideens-rock-anna.md (73%) rename site/content/photos/{ => people}/alberto-blindfolded.md (70%) rename site/content/photos/{ => people}/alberto-david-unicorns.md (78%) rename site/content/photos/{ => people}/alberto-dschung.md (66%) rename site/content/photos/{ => people}/anna-candid.md (77%) rename site/content/photos/{ => people}/anna-cite-foche.md (83%) rename site/content/photos/{ => people}/anna-grogans-pint.md (90%) rename site/content/photos/{ => people}/anna-light-museum.md (72%) rename site/content/photos/{ => people}/anna-portfolio-closeup.md (77%) rename site/content/photos/{ => people}/anna-portfolio-desk.md (75%) rename site/content/photos/{ => people}/anna-portrait.md (70%) rename site/content/photos/{ => people}/anna-shoot-facing-camera.md (67%) rename site/content/photos/{ => people}/anna-shoot-flowers.md (74%) rename site/content/photos/{ => people}/anna-shoot-hair-swirl.md (74%) rename site/content/photos/{ => people}/anna_pier.md (72%) rename site/content/photos/{ => people}/canal.md (65%) rename site/content/photos/{ => people}/chloe.md (83%) rename site/content/photos/{ => people}/christina-berlin.md (73%) rename site/content/photos/{ => people}/christina-light-museum.md (76%) rename site/content/photos/{ => people}/christina-matt-berlin.md (73%) rename site/content/photos/{ => people}/crew-camera-checking.md (70%) rename site/content/photos/{ => people}/dad-lauren.md (90%) rename site/content/photos/{ => people}/dan_and_luke_kitchen.md (68%) rename site/content/photos/{ => people}/dan_sophie.md (67%) rename site/content/photos/{ => people}/david-oliveira.md (69%) rename site/content/photos/{ => people}/dschung-hand.md (75%) rename site/content/photos/{ => people}/dschung-nori.md (71%) rename site/content/photos/{ => people}/dschung-standing.md (71%) rename site/content/photos/{ => people}/eavan.md (65%) rename site/content/photos/{ => people}/finucane-family.md (90%) rename site/content/photos/{ => people}/francis-wine-glass.md (92%) rename site/content/photos/{ => people}/german-actress-forest.md (77%) rename site/content/photos/{ => people}/grogans-finger-chomp.md (70%) rename site/content/photos/{ => people}/jonathan-cliffs.md (68%) rename site/content/photos/{ => people}/jonathan-mum.md (68%) rename site/content/photos/{ => people}/jonathan.md (70%) rename site/content/photos/{ => people}/jumper.md (75%) rename site/content/photos/{ => people}/karneval-der-kulturen-group.md (59%) rename site/content/photos/{ => people}/karneval-der-kulturen.md (68%) rename site/content/photos/{ => people}/kluner-kranich-visitors.md (70%) rename site/content/photos/{ => people}/knonigs-wusterhausen-ruairi-fionn.md (66%) rename site/content/photos/{ => people}/lakeside-konigs-wusterhausen.md (72%) rename site/content/photos/{ => people}/li-behind-paper.md (74%) rename site/content/photos/{ => people}/li-tempelhof.md (77%) rename site/content/photos/{ => people}/li.md (67%) rename site/content/photos/{ => people}/lunchtime.md (89%) rename site/content/photos/{ => people}/mick-beach.md (80%) rename site/content/photos/{ => people}/model-airplane.md (78%) rename site/content/photos/{ => people}/mossy-laura.md (71%) rename site/content/photos/{ => people}/norwegian-actress-forest-shoot.md (78%) rename site/content/photos/{ => people}/norwegian-actress-profile.md (78%) rename site/content/photos/{ => people}/overcooked_anna.md (90%) rename site/content/photos/{ => people}/paul-and-luke.md (90%) rename site/content/photos/{ => people}/paul-james-beach.md (79%) rename site/content/photos/{ => people}/peter-coonan-redline.md (90%) rename site/content/photos/{ => people}/phil-bans-donegal.md (90%) rename site/content/photos/{ => people}/phoenix-park-training.md (80%) rename site/content/photos/{ => people}/photographer.md (75%) rename site/content/photos/{ => people}/portugal-guitarist.md (64%) rename site/content/photos/{ => people}/pppb.md (88%) rename site/content/photos/{ => people}/ruairi-fionn.md (60%) rename site/content/photos/{ => people}/singer.md (91%) rename site/content/photos/{ => people}/smartphones.md (76%) rename site/content/photos/{ => people}/spwc-performer.md (62%) rename site/content/photos/{ => people}/street-performer.md (79%) rename site/content/photos/{ => people}/tree-howth.md (60%) rename site/content/photos/{ => people}/unicorns.md (71%) rename site/content/photos/{ => people}/vantastival-rochelle.md (76%) rename site/content/photos/{ => people}/vantastival-ross.md (65%) rename site/content/photos/{ => people}/vantastival-vin.md (68%) rename site/content/photos/{ => people}/viking-renactor.md (76%) rename site/content/photos/{ => people}/xha-xhu-zhi.md (67%) rename site/content/photos/{ => people}/yves.md (65%) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index e69de29..fb05520 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -0,0 +1,25 @@ +/** + * Photo card + */ +figure.photo-card + z-index: $z-middle + display: grid + width: 40vw + height: 180px + overflow: hidden + grid-template-columns: 1fr + + .bar + opacity: 1 + +transitionWithProperties((transform, opacity), 500ms) + transform: translate3d(0, 0, 0) + + + &.loaded + .bar + opacity: 0 + &:nth-child(even) + transform: translate3d(100%, 0, 0) + &:nth-child(odd) + transform: translate3d(-100%, 0, 0) + \ No newline at end of file diff --git a/assets/scripts/main.js b/assets/scripts/main.js index 14a9548..40979ee 100644 --- a/assets/scripts/main.js +++ b/assets/scripts/main.js @@ -5,5 +5,20 @@ if(window.cinematt == null) { } onload = () => { - let imgs = document.querySelectorAll('img'); + makeBars(); +}; + +const addBars = (photo_card) => { + let colours = photo_card.getAttribute('data-colours').split(','); + colours.map(colour => { + let node = document.createElement('div'); + node.classList.add('bar'); + node.style.background = `${colour}`; + return node; + }).forEach(node => photo_card.appendChild(node)); +}; + +const makeBars = () => { + let cards = [...document.querySelectorAll('figure.photo-card')]; + cards.forEach(card => addBars(card)); }; \ No newline at end of file diff --git a/site/content/photos/ballinskelligs-cottage.md b/site/content/photos/abandoned/ballinskelligs-cottage.md similarity index 81% rename from site/content/photos/ballinskelligs-cottage.md rename to site/content/photos/abandoned/ballinskelligs-cottage.md index a774836..aed0bdf 100644 --- a/site/content/photos/ballinskelligs-cottage.md +++ b/site/content/photos/abandoned/ballinskelligs-cottage.md @@ -1,5 +1,6 @@ --- title: "ballinskelligs-cottage" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-04-01 16:51:48+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 5241268 width: 2560 height: 1440 +colours: +- "#CED0D2" +- "#EFEDEB" +- "#E7E7E4" +- "#707166" +- "#3B3A31" +- "#DFE1DF" +- "#353123" +- "#CBCDD0" +- "#383E26" +- "#5A673D" +- "#737A74" +- "#6D767A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "13.0" diff --git a/site/content/photos/cite-foche-anna-illuminated.md b/site/content/photos/abandoned/cite-foche-anna-illuminated.md similarity index 81% rename from site/content/photos/cite-foche-anna-illuminated.md rename to site/content/photos/abandoned/cite-foche-anna-illuminated.md index ed57069..f73d709 100644 --- a/site/content/photos/cite-foche-anna-illuminated.md +++ b/site/content/photos/abandoned/cite-foche-anna-illuminated.md @@ -1,5 +1,6 @@ --- title: "cite-foche-anna-illuminated" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-21 19:07:18+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 1596336 width: 810 height: 1440 +colours: +- "#1B160E" +- "#050504" +- "#040301" +- "#070904" +- "#030603" +- "#F6E7D2" +- "#060201" +- "#211811" +- "#000200" +- "#030501" +- "#715C42" +- "#745743" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/cite-foche-anna-rain.md b/site/content/photos/abandoned/cite-foche-anna-rain.md similarity index 82% rename from site/content/photos/cite-foche-anna-rain.md rename to site/content/photos/abandoned/cite-foche-anna-rain.md index bd0bc0c..35e06c5 100644 --- a/site/content/photos/cite-foche-anna-rain.md +++ b/site/content/photos/abandoned/cite-foche-anna-rain.md @@ -1,5 +1,6 @@ --- title: "cite-foche-anna-rain" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-21 19:02:32+00:00" @@ -12,6 +13,18 @@ format: "tiff" bytes: 2494436 width: 961 height: 1440 +colours: +- "#715E40" +- "#40301A" +- "#8A7F6E" +- "#36220A" +- "#D6CDBF" +- "#D9DACE" +- "#263121" +- "#353E29" +- "#B9A382" +- "#7E836E" +- "#667050" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "9.0" diff --git a/site/content/photos/cite-foche-cinema.md b/site/content/photos/abandoned/cite-foche-cinema.md similarity index 90% rename from site/content/photos/cite-foche-cinema.md rename to site/content/photos/abandoned/cite-foche-cinema.md index c49639c..d630e08 100644 --- a/site/content/photos/cite-foche-cinema.md +++ b/site/content/photos/abandoned/cite-foche-cinema.md @@ -1,5 +1,6 @@ --- title: "cite-foche-cinema" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-21 18:28:07+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4728872 width: 2560 height: 1440 +colours: +- "#272727" +- "#7B7B7B" +- "#DEDEDE" +- "#747473" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/cite-foche-exterior.md b/site/content/photos/abandoned/cite-foche-exterior.md similarity index 79% rename from site/content/photos/cite-foche-exterior.md rename to site/content/photos/abandoned/cite-foche-exterior.md index 06615e8..da2707b 100644 --- a/site/content/photos/cite-foche-exterior.md +++ b/site/content/photos/abandoned/cite-foche-exterior.md @@ -1,5 +1,6 @@ --- title: "cite-foche-exterior" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-21 18:13:05+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 6695220 width: 2560 height: 1440 +colours: +- "#262218" +- "#7E6C56" +- "#E7E4E1" +- "#282622" +- "#1B1F10" +- "#2E241D" +- "#897D6E" +- "#C9D1D8" +- "#77614F" +- "#E2E3E0" +- "#C5CCD7" +- "#7D7C69" +- "#171C04" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "10.0" diff --git a/site/content/photos/cite-foche-hole-wall.md b/site/content/photos/abandoned/cite-foche-hole-wall.md similarity index 93% rename from site/content/photos/cite-foche-hole-wall.md rename to site/content/photos/abandoned/cite-foche-hole-wall.md index c71cae1..0af817b 100644 --- a/site/content/photos/cite-foche-hole-wall.md +++ b/site/content/photos/abandoned/cite-foche-hole-wall.md @@ -1,5 +1,6 @@ --- title: "cite-foche-hole-wall" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-21 18:31:57+00:00" @@ -12,6 +13,9 @@ format: "tiff" bytes: 4017760 width: 2560 height: 1440 +colours: +- "#1A1A1A" +- "#797979" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/cite-foche-offices.md b/site/content/photos/abandoned/cite-foche-offices.md similarity index 75% rename from site/content/photos/cite-foche-offices.md rename to site/content/photos/abandoned/cite-foche-offices.md index ee0be7d..d1cfa4f 100644 --- a/site/content/photos/cite-foche-offices.md +++ b/site/content/photos/abandoned/cite-foche-offices.md @@ -1,5 +1,6 @@ --- title: "cite-foche-offices" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-21 18:43:21+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 6641548 width: 2158 height: 1440 +colours: +- "#877E72" +- "#2B251D" +- "#33312B" +- "#E0DDD9" +- "#31251E" +- "#8F8E81" +- "#252927" +- "#D1D1CA" +- "#6D5F4D" +- "#715B4C" +- "#0B1012" +- "#79474A" +- "#7A817B" +- "#2D3421" +- "#202A1C" +- "#CAD0D3" +- "#070B0A" +- "#27262A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/cite-foche-reflections.md b/site/content/photos/abandoned/cite-foche-reflections.md similarity index 77% rename from site/content/photos/cite-foche-reflections.md rename to site/content/photos/abandoned/cite-foche-reflections.md index 6fbdfe8..1f29823 100644 --- a/site/content/photos/cite-foche-reflections.md +++ b/site/content/photos/abandoned/cite-foche-reflections.md @@ -1,5 +1,6 @@ --- title: "cite-foche-reflections" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-21 19:05:14+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 6670160 width: 2560 height: 1440 +colours: +- "#211C11" +- "#020101" +- "#776348" +- "#090605" +- "#0C0E08" +- "#070501" +- "#010001" +- "#050805" +- "#030100" +- "#C3A376" +- "#000001" +- "#030203" +- "#E6E5CC" +- "#7F6652" +- "#D2C3AC" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/haus-der-statistiche-2.md b/site/content/photos/abandoned/haus-der-statistiche-2.md similarity index 84% rename from site/content/photos/haus-der-statistiche-2.md rename to site/content/photos/abandoned/haus-der-statistiche-2.md index 3183f42..7d97ebe 100644 --- a/site/content/photos/haus-der-statistiche-2.md +++ b/site/content/photos/abandoned/haus-der-statistiche-2.md @@ -1,5 +1,6 @@ --- title: "haus-der-statistiche-2" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 15:38:19+00:00" @@ -12,6 +13,16 @@ format: "tiff" bytes: 5079364 width: 2560 height: 1440 +colours: +- "#B1BBBC" +- "#292924" +- "#4C6471" +- "#7F8580" +- "#727F82" +- "#343A39" +- "#7A7B73" +- "#AEB5B2" +- "#16130F" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "16.0" diff --git a/site/content/photos/haus-der-statistiche.md b/site/content/photos/abandoned/haus-der-statistiche.md similarity index 78% rename from site/content/photos/haus-der-statistiche.md rename to site/content/photos/abandoned/haus-der-statistiche.md index 65be86a..c664495 100644 --- a/site/content/photos/haus-der-statistiche.md +++ b/site/content/photos/abandoned/haus-der-statistiche.md @@ -1,5 +1,6 @@ --- title: "haus-der-statistiche" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 15:27:28+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 5806904 width: 2560 height: 1440 +colours: +- "#788388" +- "#BDCCDA" +- "#83AACC" +- "#B9C8D8" +- "#7A817D" +- "#3B4142" +- "#34322F" +- "#4B626F" +- "#243239" +- "#767770" +- "#303034" +- "#E6E6E4" +- "#E3E5E3" +- "#6D6862" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.6" diff --git a/site/content/photos/hohenschenhausen-cell.md b/site/content/photos/abandoned/hohenschenhausen-cell.md similarity index 80% rename from site/content/photos/hohenschenhausen-cell.md rename to site/content/photos/abandoned/hohenschenhausen-cell.md index 0a9a146..c3a7b2f 100644 --- a/site/content/photos/hohenschenhausen-cell.md +++ b/site/content/photos/abandoned/hohenschenhausen-cell.md @@ -1,5 +1,6 @@ --- title: "hohenschenhausen-cell" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-16 16:01:38+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 7510660 width: 2560 height: 1440 +colours: +- "#887750" +- "#BDB599" +- "#2D2615" +- "#B7A172" +- "#A39B7E" +- "#B9B498" +- "#201106" +- "#857F5D" +- "#A09B7C" +- "#150E04" +- "#1C2B36" +- "#314D64" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/rian-ro-kerry-bar.md b/site/content/photos/abandoned/rian-ro-kerry-bar.md similarity index 90% rename from site/content/photos/rian-ro-kerry-bar.md rename to site/content/photos/abandoned/rian-ro-kerry-bar.md index f1af1bd..f4c0082 100644 --- a/site/content/photos/rian-ro-kerry-bar.md +++ b/site/content/photos/abandoned/rian-ro-kerry-bar.md @@ -1,5 +1,6 @@ --- title: "rian-ro-kerry-bar" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-04-01 17:08:38+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3684208 width: 2174 height: 1440 +colours: +- "#2D2D2D" +- "#808080" +- "#D4D3D3" +- "#D8D8D7" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/rian-ro-kerry-lobby.md b/site/content/photos/abandoned/rian-ro-kerry-lobby.md similarity index 73% rename from site/content/photos/rian-ro-kerry-lobby.md rename to site/content/photos/abandoned/rian-ro-kerry-lobby.md index d5c50fc..22c5019 100644 --- a/site/content/photos/rian-ro-kerry-lobby.md +++ b/site/content/photos/abandoned/rian-ro-kerry-lobby.md @@ -1,5 +1,6 @@ --- title: "rian-ro-kerry-lobby" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-04-01 16:53:10+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 6176308 width: 2560 height: 1440 +colours: +- "#322916" +- "#281A17" +- "#74643E" +- "#32280A" +- "#2C2825" +- "#82766F" +- "#D6CBC1" +- "#C2AE82" +- "#74594B" +- "#1C0508" +- "#773B41" +- "#7E806E" +- "#1F1D20" +- "#282F2B" +- "#1F2215" +- "#C6C6B9" +- "#121B10" +- "#7B7644" +- "#1D1019" +- "#7B102F" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.5" diff --git a/site/content/photos/rian-ro-kerry-windows.md b/site/content/photos/abandoned/rian-ro-kerry-windows.md similarity index 75% rename from site/content/photos/rian-ro-kerry-windows.md rename to site/content/photos/abandoned/rian-ro-kerry-windows.md index 524cc0a..ac061c7 100644 --- a/site/content/photos/rian-ro-kerry-windows.md +++ b/site/content/photos/abandoned/rian-ro-kerry-windows.md @@ -1,5 +1,6 @@ --- title: "rian-ro-kerry-windows" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-04-01 17:01:30+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 2663148 width: 810 height: 1440 +colours: +- "#898C7D" +- "#768B56" +- "#EFF3F5" +- "#BABBB3" +- "#8B867C" +- "#F7F8FB" +- "#2D2D27" +- "#C0BBB2" +- "#608147" +- "#2A261A" +- "#7F867E" +- "#BDC2BE" +- "#2E351E" +- "#1D211E" +- "#7D7155" +- "#213117" +- "#727651" +- "#9BAE7A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "7.1" diff --git a/site/content/photos/rian-ro-kerry.md b/site/content/photos/abandoned/rian-ro-kerry.md similarity index 79% rename from site/content/photos/rian-ro-kerry.md rename to site/content/photos/abandoned/rian-ro-kerry.md index 769abe3..47b760f 100644 --- a/site/content/photos/rian-ro-kerry.md +++ b/site/content/photos/abandoned/rian-ro-kerry.md @@ -1,5 +1,6 @@ --- title: "rian-ro-kerry" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-04-01 16:50:51+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 5257228 width: 2560 height: 1440 +colours: +- "#E7F0F7" +- "#E7EFF9" +- "#748388" +- "#4D6C3D" +- "#6C7A6E" +- "#243920" +- "#5F7245" +- "#323B37" +- "#717763" +- "#1E2B31" +- "#38392F" +- "#2D3520" +- "#192724" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "13.0" diff --git a/site/content/photos/stadtbad-wedding-anna-dark.md b/site/content/photos/abandoned/stadtbad-wedding-anna-dark.md similarity index 70% rename from site/content/photos/stadtbad-wedding-anna-dark.md rename to site/content/photos/abandoned/stadtbad-wedding-anna-dark.md index 58cd535..7f7f258 100644 --- a/site/content/photos/stadtbad-wedding-anna-dark.md +++ b/site/content/photos/abandoned/stadtbad-wedding-anna-dark.md @@ -1,5 +1,6 @@ --- title: "stadtbad-wedding-anna-dark" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-05-29 14:34:35+00:00" @@ -12,6 +13,31 @@ format: "tiff" bytes: 2118428 width: 810 height: 1440 +colours: +- "#0B0B09" +- "#292519" +- "#090E09" +- "#181A11" +- "#212723" +- "#0D1412" +- "#756649" +- "#797162" +- "#E1D3BB" +- "#777867" +- "#000302" +- "#000200" +- "#202F32" +- "#6F7B71" +- "#231612" +- "#030200" +- "#CBCDBA" +- "#000002" +- "#B8CCBB" +- "#020100" +- "#3E7D69" +- "#C9B487" +- "#747043" +- "#6FC0A9" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/stadtbad-wedding-anna-pool.md b/site/content/photos/abandoned/stadtbad-wedding-anna-pool.md similarity index 78% rename from site/content/photos/stadtbad-wedding-anna-pool.md rename to site/content/photos/abandoned/stadtbad-wedding-anna-pool.md index 498d47f..b1bd842 100644 --- a/site/content/photos/stadtbad-wedding-anna-pool.md +++ b/site/content/photos/abandoned/stadtbad-wedding-anna-pool.md @@ -1,5 +1,6 @@ --- title: "stadtbad-wedding-anna-pool" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-05-29 14:26:52+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 2100288 width: 810 height: 1440 +colours: +- "#797C55" +- "#82836B" +- "#7C7155" +- "#46432A" +- "#C4C8AB" +- "#6C6A4A" +- "#404329" +- "#B5B781" +- "#847E66" +- "#CDD8CC" +- "#EBE6DF" +- "#333329" +- "#7D8A79" +- "#6F7854" +- "#BAB983" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/stadtbad-wedding-anna.md b/site/content/photos/abandoned/stadtbad-wedding-anna.md similarity index 67% rename from site/content/photos/stadtbad-wedding-anna.md rename to site/content/photos/abandoned/stadtbad-wedding-anna.md index 1d33926..8e2798d 100644 --- a/site/content/photos/stadtbad-wedding-anna.md +++ b/site/content/photos/abandoned/stadtbad-wedding-anna.md @@ -1,5 +1,6 @@ --- title: "stadtbad-wedding-anna" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-05-29 13:57:52+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 2301588 width: 810 height: 1440 +colours: +- "#8E8961" +- "#80734A" +- "#352F1B" +- "#141F14" +- "#878770" +- "#758874" +- "#1F2621" +- "#C2C3AB" +- "#2B2F1D" +- "#13221F" +- "#918974" +- "#C3B9A4" +- "#01675A" +- "#B1C0AF" +- "#142326" +- "#7F8246" +- "#2B2C24" +- "#B3AE7D" +- "#43838D" +- "#687A81" +- "#557787" +- "#031206" +- "#68744E" +- "#825F4B" +- "#52734C" +- "#3E7C52" +- "#39241A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/stadtbad-wedding-blinds.md b/site/content/photos/abandoned/stadtbad-wedding-blinds.md similarity index 78% rename from site/content/photos/stadtbad-wedding-blinds.md rename to site/content/photos/abandoned/stadtbad-wedding-blinds.md index 2ad487f..8764d5b 100644 --- a/site/content/photos/stadtbad-wedding-blinds.md +++ b/site/content/photos/abandoned/stadtbad-wedding-blinds.md @@ -1,5 +1,6 @@ --- title: "stadtbad-wedding-blinds" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-05-29 14:38:28+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 2686064 width: 961 height: 1440 +colours: +- "#74683F" +- "#3A351B" +- "#7B7546" +- "#F6F6E1" +- "#191204" +- "#1C0A04" +- "#C6BF7E" +- "#577C54" +- "#2C3018" +- "#BAAB74" +- "#F2EFE7" +- "#70743C" +- "#72462F" +- "#392015" +- "#7D3D3C" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/stadtbad-wedding-door.md b/site/content/photos/abandoned/stadtbad-wedding-door.md similarity index 88% rename from site/content/photos/stadtbad-wedding-door.md rename to site/content/photos/abandoned/stadtbad-wedding-door.md index 14feba6..eb70ad5 100644 --- a/site/content/photos/stadtbad-wedding-door.md +++ b/site/content/photos/abandoned/stadtbad-wedding-door.md @@ -1,5 +1,6 @@ --- title: "stadtbad-wedding-door" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-05-29 14:32:47+00:00" @@ -12,6 +13,13 @@ format: "tiff" bytes: 1416564 width: 810 height: 1440 +colours: +- "#010101" +- "#070501" +- "#1F180D" +- "#040200" +- "#20160F" +- "#775E41" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/stadtbad-wedding-stairs.md b/site/content/photos/abandoned/stadtbad-wedding-stairs.md similarity index 91% rename from site/content/photos/stadtbad-wedding-stairs.md rename to site/content/photos/abandoned/stadtbad-wedding-stairs.md index b02679f..ec96868 100644 --- a/site/content/photos/stadtbad-wedding-stairs.md +++ b/site/content/photos/abandoned/stadtbad-wedding-stairs.md @@ -1,5 +1,6 @@ --- title: "stadtbad-wedding-stairs" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-05-29 14:37:22+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 1733880 width: 961 height: 1440 +colours: +- "#222222" +- "#DEDEDE" +- "#7E7E7E" +- "#DADAD9" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/the-glen-shop.md b/site/content/photos/abandoned/the-glen-shop.md similarity index 74% rename from site/content/photos/the-glen-shop.md rename to site/content/photos/abandoned/the-glen-shop.md index 726b8ab..d921780 100644 --- a/site/content/photos/the-glen-shop.md +++ b/site/content/photos/abandoned/the-glen-shop.md @@ -1,8 +1,9 @@ --- title: "the-glen-shop" +type: "photos" mediatype: "upload" description: "TBC" -date: "2016-08-05" +date: "1970-01-01" album: "abandoned" filename: "the-glen-shop.md" series: "" @@ -12,6 +13,22 @@ format: "jpg" bytes: 2461626 width: 3264 height: 2448 +colours: +- "#CFD5E0" +- "#B9C3CA" +- "#79726A" +- "#E5E5DC" +- "#8D979D" +- "#3A4024" +- "#7C7D70" +- "#434338" +- "#556430" +- "#3A3624" +- "#DBD6CC" +- "#738276" +- "#626836" +- "#7C6F4D" +- "#8E959E" exposure_mode: "Auto" program: "Program AE" aperture: "2.2" diff --git a/site/content/photos/alt-neue-berlin.md b/site/content/photos/city/alt-neue-berlin.md similarity index 76% rename from site/content/photos/alt-neue-berlin.md rename to site/content/photos/city/alt-neue-berlin.md index 2f6ba1c..6f6f624 100644 --- a/site/content/photos/alt-neue-berlin.md +++ b/site/content/photos/city/alt-neue-berlin.md @@ -1,5 +1,6 @@ --- title: "alt-neue-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 17:28:01+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 7435140 width: 2560 height: 1440 +colours: +- "#272625" +- "#747270" +- "#C5BFBA" +- "#6F5C46" +- "#725743" +- "#372620" +- "#312A20" +- "#6F6F6B" +- "#2C2F2D" +- "#7D8384" +- "#B0AFBD" +- "#252426" +- "#C1C1BB" +- "#767F78" +- "#888591" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/anna-pearse-station.md b/site/content/photos/city/anna-pearse-station.md similarity index 69% rename from site/content/photos/anna-pearse-station.md rename to site/content/photos/city/anna-pearse-station.md index 8e890fb..2f5e761 100644 --- a/site/content/photos/anna-pearse-station.md +++ b/site/content/photos/city/anna-pearse-station.md @@ -1,5 +1,6 @@ --- title: "anna-pearse-station" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-07 19:02:37+00:00" @@ -12,6 +13,31 @@ format: "tiff" bytes: 2289228 width: 961 height: 1440 +colours: +- "#11191E" +- "#BECAD0" +- "#DECEC5" +- "#282D2F" +- "#D0D1D8" +- "#788489" +- "#777A83" +- "#2B2C31" +- "#D1A586" +- "#161B23" +- "#847D7A" +- "#C7DBC9" +- "#383532" +- "#866044" +- "#D6B078" +- "#4B6472" +- "#CDC9CC" +- "#302017" +- "#7D7E6E" +- "#816540" +- "#020609" +- "#2F2515" +- "#4E5D72" +- "#757F79" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/anna_markt.md b/site/content/photos/city/anna_markt.md similarity index 73% rename from site/content/photos/anna_markt.md rename to site/content/photos/city/anna_markt.md index a032007..a2680d7 100644 --- a/site/content/photos/anna_markt.md +++ b/site/content/photos/city/anna_markt.md @@ -1,5 +1,6 @@ --- title: "anna_markt" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-01-10 18:42:41+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 6192676 width: 2154 height: 1440 +colours: +- "#0F0702" +- "#271A11" +- "#201A11" +- "#735135" +- "#131311" +- "#E7D7C9" +- "#0B0702" +- "#D7A580" +- "#715D44" +- "#09110B" +- "#796F63" +- "#D2AD7D" +- "#0F1E18" +- "#2E3531" +- "#CBCDBC" +- "#12140D" +- "#757768" +- "#010603" +- "#69736A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/bankomat-berlin.md b/site/content/photos/city/bankomat-berlin.md similarity index 85% rename from site/content/photos/bankomat-berlin.md rename to site/content/photos/city/bankomat-berlin.md index 782b985..953925a 100644 --- a/site/content/photos/bankomat-berlin.md +++ b/site/content/photos/city/bankomat-berlin.md @@ -1,5 +1,6 @@ --- title: "bankomat-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-17 02:54:02+00:00" @@ -12,6 +13,15 @@ format: "tiff" bytes: 4815356 width: 2560 height: 1440 +colours: +- "#0A0300" +- "#000000" +- "#1D1200" +- "#774800" +- "#FFF600" +- "#000001" +- "#0E0C06" +- "#0E0806" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/barcelona-ship.md b/site/content/photos/city/barcelona-ship.md similarity index 78% rename from site/content/photos/barcelona-ship.md rename to site/content/photos/city/barcelona-ship.md index 91fda41..e5b1b57 100644 --- a/site/content/photos/barcelona-ship.md +++ b/site/content/photos/city/barcelona-ship.md @@ -1,5 +1,6 @@ --- title: "barcelona-ship" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-06-09 18:20:44+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 4955644 width: 2174 height: 1440 +colours: +- "#C8CFD9" +- "#828A8E" +- "#B5BEC4" +- "#3A4246" +- "#7E838C" +- "#0F141D" +- "#44090E" +- "#1A242B" +- "#313136" +- "#640D11" +- "#7D7471" +- "#B5C0BC" +- "#858B88" +- "#2D1A1B" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/berlin-christmas-market-bar.md b/site/content/photos/city/berlin-christmas-market-bar.md similarity index 67% rename from site/content/photos/berlin-christmas-market-bar.md rename to site/content/photos/city/berlin-christmas-market-bar.md index df4deb3..b6b4e08 100644 --- a/site/content/photos/berlin-christmas-market-bar.md +++ b/site/content/photos/city/berlin-christmas-market-bar.md @@ -1,5 +1,6 @@ --- title: "berlin-christmas-market-bar" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-05 18:25:10+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 6802560 width: 2560 height: 1440 +colours: +- "#D3DBEA" +- "#08090E" +- "#19100D" +- "#131211" +- "#142514" +- "#1D180F" +- "#080E10" +- "#EADDD7" +- "#D8E5EC" +- "#181619" +- "#000103" +- "#021A21" +- "#161A18" +- "#4D5F83" +- "#737A8B" +- "#0B070A" +- "#080E0D" +- "#0B080C" +- "#14170E" +- "#7C5640" +- "#010E0C" +- "#D3967A" +- "#897875" +- "#8396BF" +- "#0E0603" +- "#48677A" +- "#FFE108" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/berlin-christmas-market-shed.md b/site/content/photos/city/berlin-christmas-market-shed.md similarity index 73% rename from site/content/photos/berlin-christmas-market-shed.md rename to site/content/photos/city/berlin-christmas-market-shed.md index 0cc94b9..d36ca7f 100644 --- a/site/content/photos/berlin-christmas-market-shed.md +++ b/site/content/photos/city/berlin-christmas-market-shed.md @@ -1,5 +1,6 @@ --- title: "berlin-christmas-market-shed" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-05 18:02:19+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 2222928 width: 810 height: 1440 +colours: +- "#0E0402" +- "#232010" +- "#0F0706" +- "#191104" +- "#393C25" +- "#D2D7B6" +- "#737650" +- "#6B7352" +- "#040103" +- "#777446" +- "#828A6C" +- "#060205" +- "#B4B885" +- "#796738" +- "#C5D6C3" +- "#72816F" +- "#D6B96B" +- "#FCFAF5" +- "#CAC378" +- "#20201B" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/berlin-christmas-market.md b/site/content/photos/city/berlin-christmas-market.md similarity index 75% rename from site/content/photos/berlin-christmas-market.md rename to site/content/photos/city/berlin-christmas-market.md index a03fe16..33e19e5 100644 --- a/site/content/photos/berlin-christmas-market.md +++ b/site/content/photos/city/berlin-christmas-market.md @@ -1,5 +1,6 @@ --- title: "berlin-christmas-market" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-05 17:59:44+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 4989328 width: 2158 height: 1440 +colours: +- "#0C0501" +- "#271F10" +- "#1C1305" +- "#050505" +- "#090503" +- "#010001" +- "#776138" +- "#DBDDBD" +- "#D6BA78" +- "#313421" +- "#F9F4E9" +- "#7D794F" +- "#7C8268" +- "#DED692" +- "#252B26" +- "#000002" +- "#738275" +- "#B6CABB" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/berlin-demonstration-lying-down.md b/site/content/photos/city/berlin-demonstration-lying-down.md similarity index 67% rename from site/content/photos/berlin-demonstration-lying-down.md rename to site/content/photos/city/berlin-demonstration-lying-down.md index ea228b3..9277b7e 100644 --- a/site/content/photos/berlin-demonstration-lying-down.md +++ b/site/content/photos/city/berlin-demonstration-lying-down.md @@ -1,5 +1,6 @@ --- title: "berlin-demonstration-lying-down" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-28 16:08:49+00:00" @@ -12,6 +13,35 @@ format: "tiff" bytes: 2490064 width: 961 height: 1440 +colours: +- "#88827E" +- "#76777D" +- "#211F1D" +- "#202024" +- "#7C8285" +- "#C9BEB7" +- "#242829" +- "#CBD7DC" +- "#2A1C18" +- "#11131A" +- "#7D797C" +- "#CDD1DB" +- "#0184E5" +- "#8A8A83" +- "#2F2A1D" +- "#13191D" +- "#212714" +- "#785645" +- "#808782" +- "#58768D" +- "#161F12" +- "#C2C2B8" +- "#7AA4C3" +- "#D19D85" +- "#7B684F" +- "#4F617E" +- "#C4CAC7" +- "#010206" exposure_mode: "Auto" program: "Program AE" aperture: "3.2" diff --git a/site/content/photos/berlin-expo-messe-nord.md b/site/content/photos/city/berlin-expo-messe-nord.md similarity index 90% rename from site/content/photos/berlin-expo-messe-nord.md rename to site/content/photos/city/berlin-expo-messe-nord.md index f2e9220..774ee67 100644 --- a/site/content/photos/berlin-expo-messe-nord.md +++ b/site/content/photos/city/berlin-expo-messe-nord.md @@ -1,5 +1,6 @@ --- title: "berlin-expo-messe-nord" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 13:01:11+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3306448 width: 2560 height: 1440 +colours: +- "#D5D5D5" +- "#202020" +- "#828181" +- "#BFBFBE" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "7.1" diff --git a/site/content/photos/berlin-protest-banner.md b/site/content/photos/city/berlin-protest-banner.md similarity index 80% rename from site/content/photos/berlin-protest-banner.md rename to site/content/photos/city/berlin-protest-banner.md index 9cb083a..0a00c24 100644 --- a/site/content/photos/berlin-protest-banner.md +++ b/site/content/photos/city/berlin-protest-banner.md @@ -1,5 +1,6 @@ --- title: "berlin-protest-banner" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-28 16:06:45+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 6319876 width: 2560 height: 1440 +colours: +- "#DDD2CB" +- "#E07467" +- "#80776C" +- "#2F2B1D" +- "#2D1E18" +- "#2E2B27" +- "#252815" +- "#797963" +- "#DCA491" +- "#766850" +- "#6B6849" +- "#7C5E4E" exposure_mode: "Auto" program: "Program AE" aperture: "8.0" diff --git a/site/content/photos/berlin-supermarkt.md b/site/content/photos/city/berlin-supermarkt.md similarity index 68% rename from site/content/photos/berlin-supermarkt.md rename to site/content/photos/city/berlin-supermarkt.md index a389067..4b80e38 100644 --- a/site/content/photos/berlin-supermarkt.md +++ b/site/content/photos/city/berlin-supermarkt.md @@ -1,5 +1,6 @@ --- title: "berlin-supermarkt" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-17 02:57:36+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 6571272 width: 2158 height: 1440 +colours: +- "#17161F" +- "#2A252B" +- "#2D1E1D" +- "#31292A" +- "#867477" +- "#141E11" +- "#1D151B" +- "#C5C4D5" +- "#766872" +- "#1B151E" +- "#737080" +- "#222815" +- "#692E2F" +- "#212623" +- "#151D22" +- "#322B18" +- "#B9A7A8" +- "#6F5342" +- "#040D03" +- "#505E7D" +- "#0D1513" +- "#7C6138" +- "#EE292C" +- "#D25101" +- "#815B07" +- "#3B3106" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/border.md b/site/content/photos/city/border.md similarity index 83% rename from site/content/photos/border.md rename to site/content/photos/city/border.md index d78b6bc..5c2353c 100644 --- a/site/content/photos/border.md +++ b/site/content/photos/city/border.md @@ -1,5 +1,6 @@ --- title: "border" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-08 17:37:55+00:00" @@ -12,6 +13,16 @@ format: "tiff" bytes: 3179564 width: 961 height: 1440 +colours: +- "#666C77" +- "#395B79" +- "#626D74" +- "#465E7B" +- "#67605D" +- "#46464C" +- "#666064" +- "#42484B" +- "#74A3C1" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/brandenburger-tor.md b/site/content/photos/city/brandenburger-tor.md similarity index 79% rename from site/content/photos/brandenburger-tor.md rename to site/content/photos/city/brandenburger-tor.md index 76ae62f..8666991 100644 --- a/site/content/photos/brandenburger-tor.md +++ b/site/content/photos/city/brandenburger-tor.md @@ -1,5 +1,6 @@ --- title: "brandenburger-tor" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 11:30:25+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 5109532 width: 2158 height: 1440 +colours: +- "#F9F9FA" +- "#827669" +- "#F6F7F8" +- "#806E59" +- "#DAD3CB" +- "#3C3326" +- "#7B6755" +- "#3A2E25" +- "#3B3630" +- "#F3F1F3" +- "#CDD9D4" +- "#232827" +- "#B39C80" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "7.1" diff --git a/site/content/photos/busker-street-berlin.md b/site/content/photos/city/busker-street-berlin.md similarity index 68% rename from site/content/photos/busker-street-berlin.md rename to site/content/photos/city/busker-street-berlin.md index 6beb3f6..5d890c8 100644 --- a/site/content/photos/busker-street-berlin.md +++ b/site/content/photos/city/busker-street-berlin.md @@ -1,5 +1,6 @@ --- title: "busker-street-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-11 00:06:00+00:00" @@ -12,6 +13,32 @@ format: "tiff" bytes: 2483788 width: 810 height: 1440 +colours: +- "#331F1C" +- "#836E47" +- "#43637D" +- "#C09D68" +- "#191D2D" +- "#172632" +- "#475C79" +- "#2C2925" +- "#3C3425" +- "#76A8CC" +- "#775742" +- "#1E0E1A" +- "#CADEEC" +- "#28282D" +- "#797068" +- "#636E72" +- "#E7DFD6" +- "#70737F" +- "#1F1224" +- "#051725" +- "#67633E" +- "#CBD2E5" +- "#030C1A" +- "#292E2E" +- "#BA8B66" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/casino-berlin.md b/site/content/photos/city/casino-berlin.md similarity index 67% rename from site/content/photos/casino-berlin.md rename to site/content/photos/city/casino-berlin.md index c2cc31f..67ed60b 100644 --- a/site/content/photos/casino-berlin.md +++ b/site/content/photos/city/casino-berlin.md @@ -1,5 +1,6 @@ --- title: "casino-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-10 01:45:48+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 5967544 width: 2158 height: 1440 +colours: +- "#201512" +- "#030617" +- "#0C0D1C" +- "#1A1F1F" +- "#1A1817" +- "#241C11" +- "#1B282B" +- "#1D1C1F" +- "#7C442E" +- "#E29C68" +- "#FDF0E8" +- "#0B070D" +- "#131E1E" +- "#763837" +- "#130A10" +- "#01332E" +- "#020003" +- "#130704" +- "#D1EDF0" +- "#E56E89" +- "#1A1205" +- "#EFBD7F" +- "#027981" +- "#406D7D" +- "#91E2E8" +- "#042E35" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/charlottenburg-lake-fisheye.md b/site/content/photos/city/charlottenburg-lake-fisheye.md similarity index 74% rename from site/content/photos/charlottenburg-lake-fisheye.md rename to site/content/photos/city/charlottenburg-lake-fisheye.md index 234bdb0..6f3a643 100644 --- a/site/content/photos/charlottenburg-lake-fisheye.md +++ b/site/content/photos/city/charlottenburg-lake-fisheye.md @@ -1,5 +1,6 @@ --- title: "charlottenburg-lake-fisheye" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-01-22 16:39:09+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 3289748 width: 961 height: 1440 +colours: +- "#6DA8D9" +- "#C5D3E7" +- "#8AAED9" +- "#D4E1EA" +- "#4A5E7F" +- "#4A6B83" +- "#1B2130" +- "#131110" +- "#192731" +- "#29282E" +- "#2D1F1A" +- "#EEE9E6" +- "#717383" +- "#140502" +- "#030513" +- "#242929" +- "#292215" +- "#7D706D" +- "#707E85" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "9.0" diff --git a/site/content/photos/charlottenburg-statue.md b/site/content/photos/city/charlottenburg-statue.md similarity index 78% rename from site/content/photos/charlottenburg-statue.md rename to site/content/photos/city/charlottenburg-statue.md index 169cfe3..6894987 100644 --- a/site/content/photos/charlottenburg-statue.md +++ b/site/content/photos/city/charlottenburg-statue.md @@ -1,5 +1,6 @@ --- title: "charlottenburg-statue" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-30 16:18:48+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 1850744 width: 810 height: 1440 +colours: +- "#DED7CC" +- "#DFDFD7" +- "#877E72" +- "#D1D8DB" +- "#766950" +- "#3D3626" +- "#D3D7D4" +- "#7B7A6B" +- "#3E3D36" +- "#272B2B" +- "#707C81" +- "#7D857F" +- "#3F3E42" +- "#232D32" exposure_mode: "Auto" program: "Program AE" aperture: "8.0" diff --git a/site/content/photos/church_interior.md b/site/content/photos/city/church_interior.md similarity index 72% rename from site/content/photos/church_interior.md rename to site/content/photos/city/church_interior.md index 89a47ad..7f4889b 100644 --- a/site/content/photos/church_interior.md +++ b/site/content/photos/city/church_interior.md @@ -1,5 +1,6 @@ --- title: "church_interior" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-01-08 16:10:34+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 4071732 width: 961 height: 1440 +colours: +- "#3A2523" +- "#7D5340" +- "#1B1B2B" +- "#D29877" +- "#D8C2BD" +- "#744D4E" +- "#826C6E" +- "#251821" +- "#3A323C" +- "#1E1621" +- "#020514" +- "#686575" +- "#776773" +- "#3A2E31" +- "#C6C7D4" +- "#445070" +- "#E8BA7C" +- "#C58080" +- "#C5D6DC" +- "#CDBFC9" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/city-lamp-posters.md b/site/content/photos/city/city-lamp-posters.md similarity index 63% rename from site/content/photos/city-lamp-posters.md rename to site/content/photos/city/city-lamp-posters.md index 9f35e6d..312204a 100644 --- a/site/content/photos/city-lamp-posters.md +++ b/site/content/photos/city/city-lamp-posters.md @@ -1,5 +1,6 @@ --- title: "city-lamp-posters" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 15:22:21+00:00" @@ -12,6 +13,39 @@ format: "tiff" bytes: 2499424 width: 961 height: 1440 +colours: +- "#6C6C72" +- "#2D2D31" +- "#DEDBD8" +- "#6C7479" +- "#86817F" +- "#303536" +- "#87155E" +- "#10131A" +- "#783240" +- "#797478" +- "#3A3836" +- "#AAB3C5" +- "#8C346A" +- "#D3D3C5" +- "#04658E" +- "#0585B7" +- "#161E23" +- "#717972" +- "#75776C" +- "#894D32" +- "#4D7389" +- "#7C6838" +- "#94790D" +- "#BBC3C9" +- "#3F4C75" +- "#311829" +- "#391F24" +- "#3D3723" +- "#6D182B" +- "#BBAA27" +- "#BBAA73" +- "#BEB360" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/demonstration-crowd-berlin.md b/site/content/photos/city/demonstration-crowd-berlin.md similarity index 64% rename from site/content/photos/demonstration-crowd-berlin.md rename to site/content/photos/city/demonstration-crowd-berlin.md index 121816d..be0478c 100644 --- a/site/content/photos/demonstration-crowd-berlin.md +++ b/site/content/photos/city/demonstration-crowd-berlin.md @@ -1,5 +1,6 @@ --- title: "demonstration-crowd-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-28 16:02:55+00:00" @@ -12,6 +13,38 @@ format: "tiff" bytes: 6864360 width: 2560 height: 1440 +colours: +- "#1A2E1B" +- "#1C222D" +- "#1A252B" +- "#D0C0B7" +- "#3D2924" +- "#4D7543" +- "#7B868B" +- "#877D79" +- "#2C3332" +- "#805C4D" +- "#B9C5CD" +- "#1A2C26" +- "#C3C9D5" +- "#342F2C" +- "#2D2E34" +- "#797D87" +- "#4C697E" +- "#0A1B05" +- "#76A6CB" +- "#738275" +- "#495971" +- "#2A321B" +- "#7B4F4B" +- "#C99579" +- "#62793C" +- "#808374" +- "#312C1D" +- "#446F51" +- "#010308" +- "#C5C5B1" +- "#7E6D4E" exposure_mode: "Auto" program: "Program AE" aperture: "4.5" diff --git a/site/content/photos/dublin-street.md b/site/content/photos/city/dublin-street.md similarity index 71% rename from site/content/photos/dublin-street.md rename to site/content/photos/city/dublin-street.md index 406e144..a97262f 100644 --- a/site/content/photos/dublin-street.md +++ b/site/content/photos/city/dublin-street.md @@ -1,5 +1,6 @@ --- title: "dublin-street" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-16 20:09:10+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 6516012 width: 2560 height: 1440 +colours: +- "#1B222E" +- "#4C5D72" +- "#B0B9C8" +- "#496176" +- "#18242E" +- "#2A2931" +- "#757F90" +- "#76464C" +- "#E4E0DF" +- "#7E9ABA" +- "#7398B9" +- "#BECAD5" +- "#031722" +- "#8A4C30" +- "#87807A" +- "#020710" +- "#7C878F" +- "#DBD8DA" +- "#796C54" +- "#342F2E" +- "#262A2C" exposure_mode: "Manual" program: "Manual" aperture: "8.0" diff --git a/site/content/photos/eagle-tempelhof.md b/site/content/photos/city/eagle-tempelhof.md similarity index 77% rename from site/content/photos/eagle-tempelhof.md rename to site/content/photos/city/eagle-tempelhof.md index c19fea5..b0a28ce 100644 --- a/site/content/photos/eagle-tempelhof.md +++ b/site/content/photos/city/eagle-tempelhof.md @@ -1,5 +1,6 @@ --- title: "eagle-tempelhof" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-15 15:34:29+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 5887728 width: 2174 height: 1440 +colours: +- "#7B7F80" +- "#847E76" +- "#302F2B" +- "#7E6F58" +- "#7A7E7B" +- "#82837B" +- "#7D7D81" +- "#2F2B20" +- "#3B3F3E" +- "#B5B1AD" +- "#353337" +- "#C8CACF" +- "#B9BDC0" +- "#B6BEB6" +- "#B3B4AD" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/expo-center-veb-berlin.md b/site/content/photos/city/expo-center-veb-berlin.md similarity index 81% rename from site/content/photos/expo-center-veb-berlin.md rename to site/content/photos/city/expo-center-veb-berlin.md index dba457d..804912a 100644 --- a/site/content/photos/expo-center-veb-berlin.md +++ b/site/content/photos/city/expo-center-veb-berlin.md @@ -1,5 +1,6 @@ --- title: "expo-center-veb-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 12:10:58+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 7103848 width: 2560 height: 1440 +colours: +- "#8F8B88" +- "#B9B7B5" +- "#83837E" +- "#F0F1F3" +- "#E9EBEB" +- "#3D3C36" +- "#868986" +- "#B7B7B4" +- "#B5B7B5" +- "#BFBDBE" +- "#8B8E8F" +- "#928F92" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.0" diff --git a/site/content/photos/fernsehturm.md b/site/content/photos/city/fernsehturm.md similarity index 86% rename from site/content/photos/fernsehturm.md rename to site/content/photos/city/fernsehturm.md index d57006d..9ec45d2 100644 --- a/site/content/photos/fernsehturm.md +++ b/site/content/photos/city/fernsehturm.md @@ -1,5 +1,6 @@ --- title: "fernsehturm" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 17:33:12+00:00" @@ -12,6 +13,14 @@ format: "tiff" bytes: 1105628 width: 810 height: 1440 +colours: +- "#B0C2D3" +- "#91B5D2" +- "#B2C1D2" +- "#6D767D" +- "#3C3836" +- "#5C758A" +- "#736B65" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/film-palast.md b/site/content/photos/city/film-palast.md similarity index 80% rename from site/content/photos/film-palast.md rename to site/content/photos/city/film-palast.md index 437992c..7b873d0 100644 --- a/site/content/photos/film-palast.md +++ b/site/content/photos/city/film-palast.md @@ -1,5 +1,6 @@ --- title: "film-palast" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 16:25:44+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 6397500 width: 2560 height: 1440 +colours: +- "#271715" +- "#312A1D" +- "#7B3942" +- "#F4EAE5" +- "#736543" +- "#E57B82" +- "#0E0304" +- "#3A332F" +- "#7A7061" +- "#745445" +- "#D9D8C7" +- "#80806A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/flasche-tempelhof.md b/site/content/photos/city/flasche-tempelhof.md similarity index 84% rename from site/content/photos/flasche-tempelhof.md rename to site/content/photos/city/flasche-tempelhof.md index 9d735f1..b751a75 100644 --- a/site/content/photos/flasche-tempelhof.md +++ b/site/content/photos/city/flasche-tempelhof.md @@ -1,5 +1,6 @@ --- title: "flasche-tempelhof" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-15 15:02:35+00:00" @@ -12,6 +13,16 @@ format: "tiff" bytes: 1477212 width: 810 height: 1440 +colours: +- "#D9DEE0" +- "#EFEFF2" +- "#8D8881" +- "#BEBEBA" +- "#BCBAB7" +- "#C6C9C7" +- "#3B352F" +- "#989892" +- "#889194" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/fontane_trevi.md b/site/content/photos/city/fontane_trevi.md similarity index 85% rename from site/content/photos/fontane_trevi.md rename to site/content/photos/city/fontane_trevi.md index beda4d5..ce5ef69 100644 --- a/site/content/photos/fontane_trevi.md +++ b/site/content/photos/city/fontane_trevi.md @@ -1,5 +1,6 @@ --- title: "fontane_trevi" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-01-08 16:34:29+00:00" @@ -12,6 +13,15 @@ format: "tiff" bytes: 7479208 width: 2158 height: 1440 +colours: +- "#8B6F5D" +- "#BE9C84" +- "#3C2A20" +- "#150802" +- "#D1BAA7" +- "#7C694F" +- "#3F3422" +- "#8C7A6E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.6" diff --git a/site/content/photos/gluwein-christmas-market.md b/site/content/photos/city/gluwein-christmas-market.md similarity index 70% rename from site/content/photos/gluwein-christmas-market.md rename to site/content/photos/city/gluwein-christmas-market.md index 1d54e34..68ccdfd 100644 --- a/site/content/photos/gluwein-christmas-market.md +++ b/site/content/photos/city/gluwein-christmas-market.md @@ -1,5 +1,6 @@ --- title: "gluwein-christmas-market" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-05 18:08:13+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 5899528 width: 2158 height: 1440 +colours: +- "#1D1010" +- "#050104" +- "#020002" +- "#100304" +- "#090408" +- "#D4C0CF" +- "#0C0A0A" +- "#E8D4D5" +- "#DE937B" +- "#040205" +- "#241F11" +- "#784242" +- "#7C523F" +- "#1D2C1B" +- "#D58077" +- "#7D676A" +- "#000001" +- "#DCD4E2" +- "#2B3219" +- "#7B633D" +- "#8F7787" +- "#7B2E14" +- "#ADC8B2" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/greifswalder-tunnel.md b/site/content/photos/city/greifswalder-tunnel.md similarity index 90% rename from site/content/photos/greifswalder-tunnel.md rename to site/content/photos/city/greifswalder-tunnel.md index 5dca79b..d024b38 100644 --- a/site/content/photos/greifswalder-tunnel.md +++ b/site/content/photos/city/greifswalder-tunnel.md @@ -1,5 +1,6 @@ --- title: "greifswalder-tunnel" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-09 00:15:08+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4282588 width: 2158 height: 1440 +colours: +- "#242424" +- "#808080" +- "#CECDCD" +- "#D3D3D2" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/greifswaler_apartments.md b/site/content/photos/city/greifswaler_apartments.md similarity index 80% rename from site/content/photos/greifswaler_apartments.md rename to site/content/photos/city/greifswaler_apartments.md index b4b324f..427ecb5 100644 --- a/site/content/photos/greifswaler_apartments.md +++ b/site/content/photos/city/greifswaler_apartments.md @@ -1,5 +1,6 @@ --- title: "greifswaler_apartments" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-01-21 21:08:51+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 4736832 width: 2560 height: 1440 +colours: +- "#ABC0DE" +- "#5A6367" +- "#3F4548" +- "#A2BADC" +- "#383B41" +- "#494741" +- "#25313B" +- "#28323F" +- "#4E6476" +- "#5F6562" +- "#4B6078" +- "#C8D9E2" exposure_mode: "Manual" program: "Manual" aperture: "5.0" diff --git a/site/content/photos/grogans-the-castle.md b/site/content/photos/city/grogans-the-castle.md similarity index 75% rename from site/content/photos/grogans-the-castle.md rename to site/content/photos/city/grogans-the-castle.md index 08798e7..b6e65fb 100644 --- a/site/content/photos/grogans-the-castle.md +++ b/site/content/photos/city/grogans-the-castle.md @@ -1,5 +1,6 @@ --- title: "grogans-the-castle" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-16 18:50:29+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 5790984 width: 2151 height: 1440 +colours: +- "#D8C4BD" +- "#261617" +- "#81706D" +- "#312A2A" +- "#7D504E" +- "#252227" +- "#10090E" +- "#141721" +- "#0C0203" +- "#876255" +- "#C5927C" +- "#CCCDDB" +- "#BE817D" +- "#737281" +- "#0C090E" +- "#050103" +- "#736770" exposure_mode: "Manual" program: "Manual" aperture: "2.8" diff --git a/site/content/photos/ice-lake-charlottenburg.md b/site/content/photos/city/ice-lake-charlottenburg.md similarity index 90% rename from site/content/photos/ice-lake-charlottenburg.md rename to site/content/photos/city/ice-lake-charlottenburg.md index 88a6e82..fc58bb8 100644 --- a/site/content/photos/ice-lake-charlottenburg.md +++ b/site/content/photos/city/ice-lake-charlottenburg.md @@ -1,5 +1,6 @@ --- title: "ice-lake-charlottenburg" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-01-22 16:37:11+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4422852 width: 2560 height: 1440 +colours: +- "#222222" +- "#E1E1E1" +- "#E8E8E7" +- "#828282" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.6" diff --git a/site/content/photos/karl-mark-allee-shops.md b/site/content/photos/city/karl-mark-allee-shops.md similarity index 90% rename from site/content/photos/karl-mark-allee-shops.md rename to site/content/photos/city/karl-mark-allee-shops.md index 0dd1aad..69ead35 100644 --- a/site/content/photos/karl-mark-allee-shops.md +++ b/site/content/photos/city/karl-mark-allee-shops.md @@ -1,5 +1,6 @@ --- title: "karl-mark-allee-shops" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-29 16:18:06+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4217980 width: 2560 height: 1440 +colours: +- "#828181" +- "#363636" +- "#C8C7C7" +- "#7B7B7A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.0" diff --git a/site/content/photos/karl-marx-alle-anna.md b/site/content/photos/city/karl-marx-alle-anna.md similarity index 90% rename from site/content/photos/karl-marx-alle-anna.md rename to site/content/photos/city/karl-marx-alle-anna.md index 3fc5258..526df9b 100644 --- a/site/content/photos/karl-marx-alle-anna.md +++ b/site/content/photos/city/karl-marx-alle-anna.md @@ -1,5 +1,6 @@ --- title: "karl-marx-alle-anna" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-29 16:22:42+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 1675292 width: 810 height: 1440 +colours: +- "#777777" +- "#CECDCD" +- "#3A3A3A" +- "#6F6F6E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/kino-international-berlin.md b/site/content/photos/city/kino-international-berlin.md similarity index 76% rename from site/content/photos/kino-international-berlin.md rename to site/content/photos/city/kino-international-berlin.md index 521c8d0..7b10439 100644 --- a/site/content/photos/kino-international-berlin.md +++ b/site/content/photos/city/kino-international-berlin.md @@ -1,5 +1,6 @@ --- title: "kino-international-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-29 16:28:05+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 7339308 width: 2560 height: 1440 +colours: +- "#E9F1F6" +- "#DCCFC5" +- "#575C65" +- "#383230" +- "#2C201B" +- "#3D3F45" +- "#5B656C" +- "#736965" +- "#2D251B" +- "#3B4145" +- "#795C49" +- "#D2D6DF" +- "#D4A78B" +- "#7C684A" +- "#D2B27F" +- "#70696E" +- "#130803" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/klunkerkranich-chairs.md b/site/content/photos/city/klunkerkranich-chairs.md similarity index 67% rename from site/content/photos/klunkerkranich-chairs.md rename to site/content/photos/city/klunkerkranich-chairs.md index 512c87d..f7b219e 100644 --- a/site/content/photos/klunkerkranich-chairs.md +++ b/site/content/photos/city/klunkerkranich-chairs.md @@ -1,5 +1,6 @@ --- title: "klunkerkranich-chairs" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-25 20:03:18+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 2059568 width: 810 height: 1440 +colours: +- "#131D24" +- "#CFB67A" +- "#F3F6F8" +- "#1B212B" +- "#201C1B" +- "#EFE9E6" +- "#212125" +- "#1A1D1F" +- "#021119" +- "#2E211E" +- "#DEE3EF" +- "#486274" +- "#7F716A" +- "#877646" +- "#EEEEE7" +- "#4E5B77" +- "#2D271B" +- "#8A98CA" +- "#0295B8" +- "#6DA8C2" +- "#080D0C" +- "#036483" +- "#02A3C0" +- "#6B7980" +- "#020710" +- "#666B77" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/klunkerkranich-fernsehturm.md b/site/content/photos/city/klunkerkranich-fernsehturm.md similarity index 73% rename from site/content/photos/klunkerkranich-fernsehturm.md rename to site/content/photos/city/klunkerkranich-fernsehturm.md index 39cc85d..4052ca5 100644 --- a/site/content/photos/klunkerkranich-fernsehturm.md +++ b/site/content/photos/city/klunkerkranich-fernsehturm.md @@ -1,5 +1,6 @@ --- title: "klunkerkranich-fernsehturm" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-25 20:07:36+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 1506160 width: 810 height: 1440 +colours: +- "#DFEBF0" +- "#F7E8D9" +- "#F5F6F1" +- "#F1F5F3" +- "#131C22" +- "#11151D" +- "#392825" +- "#786563" +- "#332C2B" +- "#2D2B30" +- "#684848" +- "#2E3533" +- "#717D84" +- "#6A6F7B" +- "#6C5248" +- "#4C6577" +- "#546680" +- "#775628" +- "#809ABC" +- "#030E16" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/kudamm-christmas.md b/site/content/photos/city/kudamm-christmas.md similarity index 67% rename from site/content/photos/kudamm-christmas.md rename to site/content/photos/city/kudamm-christmas.md index 05092f1..173041b 100644 --- a/site/content/photos/kudamm-christmas.md +++ b/site/content/photos/city/kudamm-christmas.md @@ -1,5 +1,6 @@ --- title: "kudamm-christmas" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-18 18:23:54+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 8624884 width: 2560 height: 1440 +colours: +- "#2E1F1D" +- "#2B2424" +- "#EBE0D7" +- "#282329" +- "#7A6867" +- "#775A49" +- "#826745" +- "#282016" +- "#1D141A" +- "#151722" +- "#6D4448" +- "#D7B47F" +- "#D59F7F" +- "#1E1621" +- "#D0D2E1" +- "#6F6C7B" +- "#15232D" +- "#D9E7EC" +- "#EFEEDC" +- "#7C6B78" +- "#240806" +- "#DF2219" +- "#DA6F6F" +- "#272B2B" +- "#3E6177" +- "#D1C2CD" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/kudamm-kiosk.md b/site/content/photos/city/kudamm-kiosk.md similarity index 72% rename from site/content/photos/kudamm-kiosk.md rename to site/content/photos/city/kudamm-kiosk.md index 577443c..b188132 100644 --- a/site/content/photos/kudamm-kiosk.md +++ b/site/content/photos/city/kudamm-kiosk.md @@ -1,5 +1,6 @@ --- title: "kudamm-kiosk" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-18 18:31:44+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 2757784 width: 810 height: 1440 +colours: +- "#180F0C" +- "#090302" +- "#221B11" +- "#151312" +- "#7A6646" +- "#100A02" +- "#E9DDCE" +- "#D9BB81" +- "#775541" +- "#81766A" +- "#0F090D" +- "#D39A7A" +- "#EBEAD4" +- "#222024" +- "#4A6E7D" +- "#0E0A10" +- "#2D3333" +- "#7C5A09" +- "#D5E8EC" +- "#0E0F16" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/look-beautiful-tempelhof.md b/site/content/photos/city/look-beautiful-tempelhof.md similarity index 71% rename from site/content/photos/look-beautiful-tempelhof.md rename to site/content/photos/city/look-beautiful-tempelhof.md index 954070b..54f7674 100644 --- a/site/content/photos/look-beautiful-tempelhof.md +++ b/site/content/photos/city/look-beautiful-tempelhof.md @@ -1,5 +1,6 @@ --- title: "look-beautiful-tempelhof" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-15 15:08:56+00:00" @@ -12,6 +13,29 @@ format: "tiff" bytes: 7387832 width: 2174 height: 1440 +colours: +- "#F9F9F8" +- "#C1C2B7" +- "#E5E7EF" +- "#E0E7EA" +- "#C9D0C9" +- "#929380" +- "#787A89" +- "#7D898E" +- "#8D8779" +- "#810526" +- "#818D83" +- "#36333A" +- "#320210" +- "#212038" +- "#302D29" +- "#52577C" +- "#C91539" +- "#090522" +- "#57457D" +- "#313937" +- "#E05E69" +- "#E49B02" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/marienfeld-church.md b/site/content/photos/city/marienfeld-church.md similarity index 76% rename from site/content/photos/marienfeld-church.md rename to site/content/photos/city/marienfeld-church.md index e0d5fe8..8fceb7c 100644 --- a/site/content/photos/marienfeld-church.md +++ b/site/content/photos/city/marienfeld-church.md @@ -1,5 +1,6 @@ --- title: "marienfeld-church" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-03-27 13:42:25+00:00" @@ -12,6 +13,23 @@ format: "tiff" bytes: 2556628 width: 810 height: 1440 +colours: +- "#7B7054" +- "#312A1D" +- "#D6DDD7" +- "#C9C9B7" +- "#CBC3AD" +- "#7F7F6A" +- "#3A3A30" +- "#241A12" +- "#807965" +- "#2F3732" +- "#E9F0F0" +- "#152321" +- "#B8A780" +- "#343728" +- "#162729" +- "#777357" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/marienfield-church-ceiling.md b/site/content/photos/city/marienfield-church-ceiling.md similarity index 86% rename from site/content/photos/marienfield-church-ceiling.md rename to site/content/photos/city/marienfield-church-ceiling.md index 39b0265..508a6ca 100644 --- a/site/content/photos/marienfield-church-ceiling.md +++ b/site/content/photos/city/marienfield-church-ceiling.md @@ -1,5 +1,6 @@ --- title: "marienfield-church-ceiling" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-03-27 13:43:10+00:00" @@ -12,6 +13,14 @@ format: "tiff" bytes: 5912972 width: 2158 height: 1440 +colours: +- "#81643F" +- "#E8DFD3" +- "#BCA17A" +- "#46351E" +- "#422D0D" +- "#765539" +- "#6B4A17" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/messe-nord-race-terrace.md b/site/content/photos/city/messe-nord-race-terrace.md similarity index 90% rename from site/content/photos/messe-nord-race-terrace.md rename to site/content/photos/city/messe-nord-race-terrace.md index 975fae6..6e2f072 100644 --- a/site/content/photos/messe-nord-race-terrace.md +++ b/site/content/photos/city/messe-nord-race-terrace.md @@ -1,5 +1,6 @@ --- title: "messe-nord-race-terrace" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 13:15:08+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 1619336 width: 810 height: 1440 +colours: +- "#838383" +- "#363636" +- "#D9D9D9" +- "#DFDFDE" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/motel-avus.md b/site/content/photos/city/motel-avus.md similarity index 68% rename from site/content/photos/motel-avus.md rename to site/content/photos/city/motel-avus.md index 51f96f7..6b0d2b0 100644 --- a/site/content/photos/motel-avus.md +++ b/site/content/photos/city/motel-avus.md @@ -1,5 +1,6 @@ --- title: "motel-avus" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 13:11:57+00:00" @@ -12,6 +13,31 @@ format: "tiff" bytes: 5448948 width: 2158 height: 1440 +colours: +- "#D4DCE0" +- "#EDF2F9" +- "#496579" +- "#202532" +- "#202D35" +- "#BDC3C0" +- "#495B73" +- "#2D2C34" +- "#2A3031" +- "#03618A" +- "#0486B7" +- "#66757D" +- "#32302B" +- "#5E6372" +- "#301C1F" +- "#70A1BE" +- "#271823" +- "#817152" +- "#211825" +- "#33030E" +- "#3D3728" +- "#042536" +- "#BBBDB4" +- "#770729" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.6" diff --git a/site/content/photos/phoenix-park-model-plane.md b/site/content/photos/city/phoenix-park-model-plane.md similarity index 93% rename from site/content/photos/phoenix-park-model-plane.md rename to site/content/photos/city/phoenix-park-model-plane.md index fbc90a4..aae1b0a 100644 --- a/site/content/photos/phoenix-park-model-plane.md +++ b/site/content/photos/city/phoenix-park-model-plane.md @@ -1,5 +1,6 @@ --- title: "phoenix-park-model-plane" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-01-26 12:33:45+00:00" @@ -12,6 +13,9 @@ format: "tiff" bytes: 3954552 width: 2560 height: 1440 +colours: +- "#E3E7EE" +- "#E2E8EE" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/poland-house.md b/site/content/photos/city/poland-house.md similarity index 74% rename from site/content/photos/poland-house.md rename to site/content/photos/city/poland-house.md index 1cd172c..d8a1a92 100644 --- a/site/content/photos/poland-house.md +++ b/site/content/photos/city/poland-house.md @@ -1,5 +1,6 @@ --- title: "poland-house" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-09 16:30:31+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 3217604 width: 1370 height: 1440 +colours: +- "#89B6C6" +- "#DAE9F5" +- "#518C93" +- "#CEDBEC" +- "#35343B" +- "#727686" +- "#5A8291" +- "#35332F" +- "#212533" +- "#7EB1B8" +- "#6F7F85" +- "#2E3331" +- "#738B78" +- "#948480" +- "#52607C" +- "#D8D0CC" +- "#313623" +- "#213A40" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/polizei.md b/site/content/photos/city/polizei.md similarity index 65% rename from site/content/photos/polizei.md rename to site/content/photos/city/polizei.md index 2cb0357..a411025 100644 --- a/site/content/photos/polizei.md +++ b/site/content/photos/city/polizei.md @@ -1,5 +1,6 @@ --- title: "polizei" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-28 21:55:54+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 2332820 width: 810 height: 1440 +colours: +- "#BFC5D5" +- "#181E30" +- "#466982" +- "#83AAC9" +- "#373320" +- "#385273" +- "#333C36" +- "#C2D6E8" +- "#35332D" +- "#313623" +- "#C6BAB8" +- "#717483" +- "#0F4571" +- "#071429" +- "#887B77" +- "#2E2C33" +- "#253123" +- "#072946" +- "#C1B7C0" +- "#876851" +- "#203442" +- "#5E6D72" +- "#7A5C36" +- "#2F241E" +- "#84A2C5" +- "#59655B" +- "#2B3F39" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/portugal-street.md b/site/content/photos/city/portugal-street.md similarity index 81% rename from site/content/photos/portugal-street.md rename to site/content/photos/city/portugal-street.md index 1a56826..6b814bd 100644 --- a/site/content/photos/portugal-street.md +++ b/site/content/photos/city/portugal-street.md @@ -1,5 +1,6 @@ --- title: "portugal-street" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-05-12 14:53:31+00:00" @@ -12,6 +13,18 @@ format: "tiff" bytes: 5465516 width: 2174 height: 1440 +colours: +- "#BABCCA" +- "#84756F" +- "#301E1B" +- "#B7A9A3" +- "#7A7C8A" +- "#786053" +- "#BCB5BA" +- "#3E3434" +- "#343037" +- "#515C76" +- "#847C82" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "7.1" diff --git a/site/content/photos/presse-tabak-berlin.md b/site/content/photos/city/presse-tabak-berlin.md similarity index 74% rename from site/content/photos/presse-tabak-berlin.md rename to site/content/photos/city/presse-tabak-berlin.md index 97e7d46..196fdbb 100644 --- a/site/content/photos/presse-tabak-berlin.md +++ b/site/content/photos/city/presse-tabak-berlin.md @@ -1,5 +1,6 @@ --- title: "presse-tabak-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-09 23:39:37+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 5226820 width: 2158 height: 1440 +colours: +- "#140802" +- "#2E2416" +- "#2C1D13" +- "#170E03" +- "#7B6645" +- "#DDD4C5" +- "#050404" +- "#D59572" +- "#795238" +- "#CBA166" +- "#CFCEB9" +- "#847A6F" +- "#7F4D0E" +- "#CE8822" +- "#CAD7DB" +- "#24061D" +- "#C5CFC7" +- "#733B12" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/redline-film-take-dublin.md b/site/content/photos/city/redline-film-take-dublin.md similarity index 76% rename from site/content/photos/redline-film-take-dublin.md rename to site/content/photos/city/redline-film-take-dublin.md index b65e31e..efdf7a1 100644 --- a/site/content/photos/redline-film-take-dublin.md +++ b/site/content/photos/city/redline-film-take-dublin.md @@ -1,5 +1,6 @@ --- title: "redline-film-take-dublin" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-01-13 15:26:38+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 6538368 width: 2560 height: 1440 +colours: +- "#AEC5D3" +- "#607266" +- "#36423A" +- "#6F8386" +- "#2B3A2A" +- "#192F3B" +- "#526F7F" +- "#293B35" +- "#BDB147" +- "#968804" +- "#86A6BA" +- "#282613" +- "#506447" +- "#282923" +- "#B3A419" +- "#0B2534" +- "#262C1A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/rixdorf-christmas-market.md b/site/content/photos/city/rixdorf-christmas-market.md similarity index 74% rename from site/content/photos/rixdorf-christmas-market.md rename to site/content/photos/city/rixdorf-christmas-market.md index c59f99a..544f0b4 100644 --- a/site/content/photos/rixdorf-christmas-market.md +++ b/site/content/photos/city/rixdorf-christmas-market.md @@ -1,5 +1,6 @@ --- title: "rixdorf-christmas-market" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-05 18:07:03+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 6487692 width: 2560 height: 1440 +colours: +- "#30291B" +- "#1A110E" +- "#0B060A" +- "#24211E" +- "#03040C" +- "#08050A" +- "#333717" +- "#090911" +- "#141215" +- "#6F6357" +- "#685C48" +- "#120704" +- "#252A28" +- "#040106" +- "#D3E3EA" +- "#725C4B" +- "#060104" +- "#231A07" +- "#E0D9D3" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/russian-embassy-berlin.md b/site/content/photos/city/russian-embassy-berlin.md similarity index 74% rename from site/content/photos/russian-embassy-berlin.md rename to site/content/photos/city/russian-embassy-berlin.md index aeb93bc..15a2261 100644 --- a/site/content/photos/russian-embassy-berlin.md +++ b/site/content/photos/city/russian-embassy-berlin.md @@ -1,5 +1,6 @@ --- title: "russian-embassy-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 11:24:15+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 1646216 width: 810 height: 1440 +colours: +- "#1B1918" +- "#8A8073" +- "#1C1C1E" +- "#BBB1A4" +- "#EBEDEF" +- "#202223" +- "#241F15" +- "#E9EAED" +- "#161A0A" +- "#2A1F18" +- "#7B6A53" +- "#707A7B" +- "#816353" +- "#6D6E73" +- "#6D6824" +- "#08090D" +- "#707572" +- "#080A0C" +- "#161B06" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "7.1" diff --git a/site/content/photos/shopping-trolley.md b/site/content/photos/city/shopping-trolley.md similarity index 71% rename from site/content/photos/shopping-trolley.md rename to site/content/photos/city/shopping-trolley.md index 5eacfe6..b9bb56c 100644 --- a/site/content/photos/shopping-trolley.md +++ b/site/content/photos/city/shopping-trolley.md @@ -1,5 +1,6 @@ --- title: "shopping-trolley" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 15:33:25+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 2610620 width: 961 height: 1440 +colours: +- "#726A66" +- "#3B3634" +- "#D1D4DD" +- "#C8D3DA" +- "#37353A" +- "#6E707A" +- "#D5CAC1" +- "#3C4041" +- "#70787D" +- "#6FA8C7" +- "#DAD8C3" +- "#DAAC6A" +- "#4E738B" +- "#CA9873" +- "#783F4A" +- "#8D6C57" +- "#1B282F" +- "#7E727B" +- "#362221" +- "#5B6B81" +- "#717A72" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/spree-statue.md b/site/content/photos/city/spree-statue.md similarity index 71% rename from site/content/photos/spree-statue.md rename to site/content/photos/city/spree-statue.md index 7f4219c..29c1cae 100644 --- a/site/content/photos/spree-statue.md +++ b/site/content/photos/city/spree-statue.md @@ -1,5 +1,6 @@ --- title: "spree-statue" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-01-18 16:52:40+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 6770640 width: 2560 height: 1440 +colours: +- "#C9D7EB" +- "#6E7D4C" +- "#667766" +- "#39423F" +- "#CADDED" +- "#727A63" +- "#5B7D56" +- "#507A5E" +- "#6A797D" +- "#7C808F" +- "#4D7566" +- "#4E6A7A" +- "#2C3A40" +- "#3F4037" +- "#73794B" +- "#424A30" +- "#32353C" +- "#566680" +- "#282F3A" +- "#334531" +- "#847E78" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/steps.md b/site/content/photos/city/steps.md similarity index 90% rename from site/content/photos/steps.md rename to site/content/photos/city/steps.md index 454b441..bd9c70f 100644 --- a/site/content/photos/steps.md +++ b/site/content/photos/city/steps.md @@ -1,5 +1,6 @@ --- title: "steps" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-01-08 15:18:27+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 1979744 width: 961 height: 1440 +colours: +- "#252525" +- "#D4D4D4" +- "#7C7C7C" +- "#E2E2E1" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "7.1" diff --git a/site/content/photos/stoplerstein.md b/site/content/photos/city/stoplerstein.md similarity index 79% rename from site/content/photos/stoplerstein.md rename to site/content/photos/city/stoplerstein.md index e1ae83f..9fa16bf 100644 --- a/site/content/photos/stoplerstein.md +++ b/site/content/photos/city/stoplerstein.md @@ -1,5 +1,6 @@ --- title: "stoplerstein" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-14 15:08:23+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 7951776 width: 2174 height: 1440 +colours: +- "#4F5E72" +- "#4D6070" +- "#222934" +- "#687382" +- "#222D35" +- "#687783" +- "#D6DBDD" +- "#CDD2CF" +- "#2B2D35" +- "#BBC1CC" +- "#2C3235" +- "#8D948D" +- "#CFD0CB" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.6" diff --git a/site/content/photos/table-tennis-berlin.md b/site/content/photos/city/table-tennis-berlin.md similarity index 79% rename from site/content/photos/table-tennis-berlin.md rename to site/content/photos/city/table-tennis-berlin.md index 3a99e72..7b91672 100644 --- a/site/content/photos/table-tennis-berlin.md +++ b/site/content/photos/city/table-tennis-berlin.md @@ -1,5 +1,6 @@ --- title: "table-tennis-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 11:57:54+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 7131500 width: 2560 height: 1440 +colours: +- "#796D67" +- "#332D20" +- "#795F4F" +- "#362B24" +- "#423B35" +- "#D8D8DF" +- "#C7C1BB" +- "#6E5F48" +- "#12190F" +- "#C79577" +- "#191C11" +- "#E1E4E6" +- "#D1D1C7" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/tara-street-dart.md b/site/content/photos/city/tara-street-dart.md similarity index 69% rename from site/content/photos/tara-street-dart.md rename to site/content/photos/city/tara-street-dart.md index be00298..b999896 100644 --- a/site/content/photos/tara-street-dart.md +++ b/site/content/photos/city/tara-street-dart.md @@ -1,5 +1,6 @@ --- title: "tara-street-dart" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-16 20:15:12+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 5944556 width: 2151 height: 1440 +colours: +- "#252120" +- "#B8C0D1" +- "#181E29" +- "#151F27" +- "#D1C1BB" +- "#4F637F" +- "#292A2F" +- "#6D707F" +- "#8E817D" +- "#211814" +- "#849EC4" +- "#7A684D" +- "#28221A" +- "#1B5F93" +- "#2F5E86" +- "#1E2123" +- "#D3E4F3" +- "#082031" +- "#867A83" +- "#CEC6CC" +- "#7D5E4B" +- "#030913" +- "#2178B3" exposure_mode: "Manual" program: "Manual" aperture: "2.8" diff --git a/site/content/photos/tempelhof-cyclist.md b/site/content/photos/city/tempelhof-cyclist.md similarity index 75% rename from site/content/photos/tempelhof-cyclist.md rename to site/content/photos/city/tempelhof-cyclist.md index 76d6e66..e693307 100644 --- a/site/content/photos/tempelhof-cyclist.md +++ b/site/content/photos/city/tempelhof-cyclist.md @@ -1,5 +1,6 @@ --- title: "tempelhof-cyclist" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-01-25 16:14:02+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 5430856 width: 2560 height: 1440 +colours: +- "#ACBBC6" +- "#BCC5D0" +- "#D1C9C0" +- "#93887A" +- "#8D7960" +- "#5B5F6A" +- "#343E4C" +- "#40434E" +- "#DFDFDB" +- "#8A6D54" +- "#6893B2" +- "#7F8D95" +- "#253743" +- "#DADCDA" +- "#838577" +- "#507691" +- "#7C857E" exposure_mode: "Auto" program: "Program AE" aperture: "10.0" diff --git a/site/content/photos/treehouse-klunkerkranich.md b/site/content/photos/city/treehouse-klunkerkranich.md similarity index 72% rename from site/content/photos/treehouse-klunkerkranich.md rename to site/content/photos/city/treehouse-klunkerkranich.md index 94c5846..964ca58 100644 --- a/site/content/photos/treehouse-klunkerkranich.md +++ b/site/content/photos/city/treehouse-klunkerkranich.md @@ -1,5 +1,6 @@ --- title: "treehouse-klunkerkranich" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-25 19:57:10+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 6063904 width: 2560 height: 1440 +colours: +- "#F4F1EF" +- "#F0F5F8" +- "#506773" +- "#827871" +- "#30211B" +- "#2D2927" +- "#7A5E4D" +- "#6D7A81" +- "#2D3334" +- "#222D33" +- "#E9EAEE" +- "#262529" +- "#CE9E7F" +- "#74757E" +- "#282118" +- "#172523" +- "#6A3537" +- "#11141B" +- "#E5C280" +- "#DADACD" +- "#826C49" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "3.5" diff --git a/site/content/photos/ubahn-berlin.md b/site/content/photos/city/ubahn-berlin.md similarity index 82% rename from site/content/photos/ubahn-berlin.md rename to site/content/photos/city/ubahn-berlin.md index 655e7be..afdedf5 100644 --- a/site/content/photos/ubahn-berlin.md +++ b/site/content/photos/city/ubahn-berlin.md @@ -1,5 +1,6 @@ --- title: "ubahn-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-18 15:48:44+00:00" @@ -12,6 +13,17 @@ format: "tiff" bytes: 4087164 width: 2158 height: 1440 +colours: +- "#735D3B" +- "#C47D02" +- "#3E301D" +- "#ECE0CC" +- "#311F06" +- "#CAAA79" +- "#885806" +- "#33261C" +- "#1F1D19" +- "#1A0C02" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/volkswagen-berlin.md b/site/content/photos/city/volkswagen-berlin.md similarity index 73% rename from site/content/photos/volkswagen-berlin.md rename to site/content/photos/city/volkswagen-berlin.md index 7ee882a..62aea40 100644 --- a/site/content/photos/volkswagen-berlin.md +++ b/site/content/photos/city/volkswagen-berlin.md @@ -1,5 +1,6 @@ --- title: "volkswagen-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-10 01:58:42+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 8418160 width: 2560 height: 1440 +colours: +- "#181424" +- "#221926" +- "#C1B3D7" +- "#03020D" +- "#7D5860" +- "#CCA8B1" +- "#DBC4D7" +- "#9D8AC6" +- "#28232A" +- "#645583" +- "#3E292D" +- "#2A1D27" +- "#6F577D" +- "#292524" +- "#4D4A7A" +- "#8C6F73" +- "#83677F" +- "#7A6A86" +- "#817DC3" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/west-berlin-apartment-door.md b/site/content/photos/city/west-berlin-apartment-door.md similarity index 78% rename from site/content/photos/west-berlin-apartment-door.md rename to site/content/photos/city/west-berlin-apartment-door.md index cb912ff..aa518c7 100644 --- a/site/content/photos/west-berlin-apartment-door.md +++ b/site/content/photos/city/west-berlin-apartment-door.md @@ -1,5 +1,6 @@ --- title: "west-berlin-apartment-door" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 12:45:38+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 2925404 width: 810 height: 1440 +colours: +- "#D1CBC6" +- "#3C3934" +- "#857D71" +- "#383E3E" +- "#788183" +- "#79796F" +- "#767D78" +- "#342E23" +- "#BAC0C2" +- "#CBCDD0" +- "#7A6C53" +- "#C2C2B8" +- "#2C2A2D" +- "#352A24" +- "#7C604F" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/window-pattern.md b/site/content/photos/city/window-pattern.md similarity index 84% rename from site/content/photos/window-pattern.md rename to site/content/photos/city/window-pattern.md index 88330bc..7726456 100644 --- a/site/content/photos/window-pattern.md +++ b/site/content/photos/city/window-pattern.md @@ -1,5 +1,6 @@ --- title: "window-pattern" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 12:46:06+00:00" @@ -12,6 +13,16 @@ format: "tiff" bytes: 1672128 width: 810 height: 1440 +colours: +- "#847B76" +- "#7C827F" +- "#1B1712" +- "#787F7F" +- "#191412" +- "#2A2725" +- "#ABB2AE" +- "#3E413F" +- "#3D3A3E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/workplace.md b/site/content/photos/city/workplace.md similarity index 81% rename from site/content/photos/workplace.md rename to site/content/photos/city/workplace.md index 61ca93f..edb3091 100644 --- a/site/content/photos/workplace.md +++ b/site/content/photos/city/workplace.md @@ -1,5 +1,6 @@ --- title: "workplace" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-27 23:30:02+00:00" @@ -12,6 +13,18 @@ format: "jpg" bytes: 2007286 width: 2560 height: 1440 +colours: +- "#332F2A" +- "#776F61" +- "#3A3328" +- "#07060B" +- "#111011" +- "#6C614D" +- "#D1C9BA" +- "#201915" +- "#0A070B" +- "#737162" +- "#BA9462" exposure_mode: "Auto" program: "Program AE" aperture: "2.2" diff --git a/site/content/photos/berlin-10k-group.md b/site/content/photos/events/berlin-10k-group.md similarity index 90% rename from site/content/photos/berlin-10k-group.md rename to site/content/photos/events/berlin-10k-group.md index 9f867be..397faad 100644 --- a/site/content/photos/berlin-10k-group.md +++ b/site/content/photos/events/berlin-10k-group.md @@ -1,5 +1,6 @@ --- title: "berlin-10k-group" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-05-14 12:12:56+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3978636 width: 2560 height: 1440 +colours: +- "#7F7F7F" +- "#333332" +- "#C1C1C1" +- "#7C7C7B" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "7.1" diff --git a/site/content/photos/berlin-5k-ruairi.md b/site/content/photos/events/berlin-5k-ruairi.md similarity index 64% rename from site/content/photos/berlin-5k-ruairi.md rename to site/content/photos/events/berlin-5k-ruairi.md index 4d6e247..cf5f706 100644 --- a/site/content/photos/berlin-5k-ruairi.md +++ b/site/content/photos/events/berlin-5k-ruairi.md @@ -1,5 +1,6 @@ --- title: "berlin-5k-ruairi" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-07-26 20:16:40+00:00" @@ -12,6 +13,37 @@ format: "tiff" bytes: 4914840 width: 2158 height: 1440 +colours: +- "#81848A" +- "#8BD458" +- "#857C75" +- "#7C8387" +- "#7C5645" +- "#4A9C1C" +- "#CEC2BE" +- "#7E8071" +- "#7D6A4C" +- "#C4CCCF" +- "#737D73" +- "#C0CDBE" +- "#57B726" +- "#A5D263" +- "#353D3A" +- "#334020" +- "#C5C6CF" +- "#332D1D" +- "#3B2720" +- "#84514E" +- "#C58A74" +- "#2C3C22" +- "#403D38" +- "#3A3A40" +- "#5C9534" +- "#84B8C8" +- "#CC7373" +- "#CED7BF" +- "#667848" +- "#817A7F" exposure_mode: "Auto" program: "Program AE" aperture: "5.6" diff --git a/site/content/photos/easter-market-cakes.md b/site/content/photos/events/easter-market-cakes.md similarity index 72% rename from site/content/photos/easter-market-cakes.md rename to site/content/photos/events/easter-market-cakes.md index 477f447..26cee70 100644 --- a/site/content/photos/easter-market-cakes.md +++ b/site/content/photos/events/easter-market-cakes.md @@ -1,5 +1,6 @@ --- title: "easter-market-cakes" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-20 17:39:05+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 3769512 width: 2560 height: 1440 +colours: +- "#333637" +- "#0B0F12" +- "#556E8B" +- "#010206" +- "#090B0F" +- "#798588" +- "#B9C6CC" +- "#303034" +- "#8F6A3A" +- "#C19456" +- "#506B84" +- "#292726" +- "#A9B4C6" +- "#737584" +- "#829AB8" +- "#D3D8D6" +- "#02070C" +- "#3C2725" +- "#7A6F6A" +- "#8C938F" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/karneval-der-kulturen-dress.md b/site/content/photos/events/karneval-der-kulturen-dress.md similarity index 68% rename from site/content/photos/karneval-der-kulturen-dress.md rename to site/content/photos/events/karneval-der-kulturen-dress.md index 95c492c..c1f6cef 100644 --- a/site/content/photos/karneval-der-kulturen-dress.md +++ b/site/content/photos/events/karneval-der-kulturen-dress.md @@ -1,5 +1,6 @@ --- title: "karneval-der-kulturen-dress" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-07 17:29:11+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 1946768 width: 810 height: 1440 +colours: +- "#ACC0C9" +- "#7CACC0" +- "#2C3F22" +- "#333F1F" +- "#506C41" +- "#6D5343" +- "#4E7789" +- "#5E703F" +- "#7B898C" +- "#877872" +- "#2F2E2A" +- "#7C867E" +- "#C5CBD7" +- "#423025" +- "#D0C2BC" +- "#1C262C" +- "#2C3231" +- "#7E8073" +- "#1E1E21" +- "#353020" +- "#7C8241" +- "#74654B" +- "#AFB8B2" +- "#777C87" +- "#1D232C" +- "#CFD1B8" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/karneval-der-kulturen-hat.md b/site/content/photos/events/karneval-der-kulturen-hat.md similarity index 70% rename from site/content/photos/karneval-der-kulturen-hat.md rename to site/content/photos/events/karneval-der-kulturen-hat.md index a546f95..b0a942f 100644 --- a/site/content/photos/karneval-der-kulturen-hat.md +++ b/site/content/photos/events/karneval-der-kulturen-hat.md @@ -1,5 +1,6 @@ --- title: "karneval-der-kulturen-hat" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-07 19:33:50+00:00" @@ -12,6 +13,31 @@ format: "tiff" bytes: 4192532 width: 2158 height: 1440 +colours: +- "#223822" +- "#DEE2EB" +- "#426441" +- "#011229" +- "#7D6F71" +- "#649FC8" +- "#11232B" +- "#37302F" +- "#BFB4BD" +- "#DEEBF5" +- "#03131C" +- "#386987" +- "#0C5783" +- "#8B7F87" +- "#313B33" +- "#3D6447" +- "#13231E" +- "#82A0CD" +- "#BAAEB2" +- "#2E221D" +- "#84818D" +- "#302D32" +- "#5A6C5B" +- "#151B27" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/karneval-der-kulturen-mojito.md b/site/content/photos/events/karneval-der-kulturen-mojito.md similarity index 61% rename from site/content/photos/karneval-der-kulturen-mojito.md rename to site/content/photos/events/karneval-der-kulturen-mojito.md index ffd48bd..ab1faef 100644 --- a/site/content/photos/karneval-der-kulturen-mojito.md +++ b/site/content/photos/events/karneval-der-kulturen-mojito.md @@ -1,5 +1,6 @@ --- title: "karneval-der-kulturen-mojito" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-07 16:56:16+00:00" @@ -12,6 +13,43 @@ format: "tiff" bytes: 6706188 width: 2158 height: 1440 +colours: +- "#213319" +- "#C2A9A7" +- "#2C351A" +- "#867270" +- "#4F7041" +- "#7A5E52" +- "#0E131C" +- "#5E723C" +- "#342520" +- "#282418" +- "#AAC0CA" +- "#2B2724" +- "#0A1A05" +- "#172128" +- "#587888" +- "#02060E" +- "#697B6B" +- "#6C8185" +- "#845958" +- "#747B63" +- "#7BB1C8" +- "#C2CAD9" +- "#1E2E07" +- "#C79C87" +- "#303935" +- "#C1B6BD" +- "#C07D79" +- "#786747" +- "#877984" +- "#741416" +- "#2E2C31" +- "#797785" +- "#6F7444" +- "#567A7E" +- "#AABEAF" +- "#757149" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/karneval-der-kulturen-people.md b/site/content/photos/events/karneval-der-kulturen-people.md similarity index 63% rename from site/content/photos/karneval-der-kulturen-people.md rename to site/content/photos/events/karneval-der-kulturen-people.md index 38414fd..486e41a 100644 --- a/site/content/photos/karneval-der-kulturen-people.md +++ b/site/content/photos/events/karneval-der-kulturen-people.md @@ -1,5 +1,6 @@ --- title: "karneval-der-kulturen-people" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-07 19:27:02+00:00" @@ -12,6 +13,40 @@ format: "tiff" bytes: 5182544 width: 2560 height: 1440 +colours: +- "#DED0C8" +- "#816F6C" +- "#343C24" +- "#C6D8E2" +- "#526D4C" +- "#3C3933" +- "#131C23" +- "#7B6053" +- "#BBC5D9" +- "#392724" +- "#30422A" +- "#343B39" +- "#4B6E86" +- "#7C4C6F" +- "#151A23" +- "#5E7160" +- "#D9A688" +- "#73A2C3" +- "#2C2C31" +- "#687579" +- "#87A5C9" +- "#018D91" +- "#717381" +- "#4E637E" +- "#3A3626" +- "#01BDC2" +- "#76664B" +- "#62723E" +- "#E9E8D4" +- "#DDC091" +- "#877B84" +- "#6D6F60" +- "#CBBCC7" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/karneval-der-kulturen-sandals.md b/site/content/photos/events/karneval-der-kulturen-sandals.md similarity index 78% rename from site/content/photos/karneval-der-kulturen-sandals.md rename to site/content/photos/events/karneval-der-kulturen-sandals.md index 455d190..b03042d 100644 --- a/site/content/photos/karneval-der-kulturen-sandals.md +++ b/site/content/photos/events/karneval-der-kulturen-sandals.md @@ -1,5 +1,6 @@ --- title: "karneval-der-kulturen-sandals" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-07 19:29:26+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 5003104 width: 2560 height: 1440 +colours: +- "#54764E" +- "#2C4327" +- "#687F66" +- "#537C5E" +- "#C9BAB6" +- "#303920" +- "#5F7145" +- "#897A75" +- "#364036" +- "#747A62" +- "#C5C4CF" +- "#CCC1C9" +- "#866E5C" +- "#3C3D33" +- "#3B3321" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/meteor-meetup.md b/site/content/photos/events/meteor-meetup.md similarity index 67% rename from site/content/photos/meteor-meetup.md rename to site/content/photos/events/meteor-meetup.md index 8b83418..30ca7e6 100644 --- a/site/content/photos/meteor-meetup.md +++ b/site/content/photos/events/meteor-meetup.md @@ -1,5 +1,6 @@ --- title: "meteor-meetup" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-11-27 22:21:41+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 2004632 width: 810 height: 1440 +colours: +- "#D5CFC4" +- "#E1E1D8" +- "#7D7E71" +- "#2E2D27" +- "#231B10" +- "#447A31" +- "#2D1D14" +- "#7B8789" +- "#2F3532" +- "#1B3212" +- "#06070A" +- "#8E8779" +- "#727B73" +- "#D3A180" +- "#01202E" +- "#0C1317" +- "#795036" +- "#0C0602" +- "#8CC670" +- "#170F05" +- "#775B39" +- "#B0BFC6" +- "#122808" +- "#262429" +- "#12150D" +- "#B9C1BA" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/northwest-200.md b/site/content/photos/events/northwest-200.md similarity index 75% rename from site/content/photos/northwest-200.md rename to site/content/photos/events/northwest-200.md index 100635a..7a34506 100644 --- a/site/content/photos/northwest-200.md +++ b/site/content/photos/events/northwest-200.md @@ -1,5 +1,6 @@ --- title: "northwest-200" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-05-19 16:50:39+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 5114172 width: 2560 height: 1440 +colours: +- "#BFAE9E" +- "#8B8075" +- "#3C3826" +- "#444338" +- "#42472E" +- "#5D6A38" +- "#6C7335" +- "#2E221C" +- "#C4A58D" +- "#626452" +- "#8A7558" +- "#BCA180" +- "#686A72" +- "#35353A" +- "#3B4C33" +- "#706D40" +- "#78604F" +- "#566553" exposure_mode: "Auto" program: "Shutter speed priority AE" aperture: "9.0" diff --git a/site/content/photos/praater.md b/site/content/photos/events/praater.md similarity index 63% rename from site/content/photos/praater.md rename to site/content/photos/events/praater.md index 14ad94e..0370c41 100644 --- a/site/content/photos/praater.md +++ b/site/content/photos/events/praater.md @@ -1,5 +1,6 @@ --- title: "praater" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-11 00:03:34+00:00" @@ -12,6 +13,38 @@ format: "tiff" bytes: 7439908 width: 2560 height: 1440 +colours: +- "#857559" +- "#766E64" +- "#252015" +- "#241412" +- "#190504" +- "#222727" +- "#24221F" +- "#D5B37E" +- "#172226" +- "#DCCEBC" +- "#131E1C" +- "#02120D" +- "#010B04" +- "#E39B71" +- "#29282D" +- "#E39512" +- "#142115" +- "#D3E5EA" +- "#717269" +- "#CDE0D5" +- "#7D5740" +- "#DCDDCB" +- "#0F131A" +- "#616E72" +- "#DF641B" +- "#201704" +- "#6A726C" +- "#405F71" +- "#7E310A" +- "#84570A" +- "#1F2314" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/refeshments.md b/site/content/photos/events/refeshments.md similarity index 63% rename from site/content/photos/refeshments.md rename to site/content/photos/events/refeshments.md index 9fc3026..fd12f44 100644 --- a/site/content/photos/refeshments.md +++ b/site/content/photos/events/refeshments.md @@ -1,5 +1,6 @@ --- title: "refeshments" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-11-27 21:25:45+00:00" @@ -12,6 +13,39 @@ format: "tiff" bytes: 7818936 width: 2560 height: 1440 +colours: +- "#D8DBC8" +- "#332D1E" +- "#042901" +- "#35352B" +- "#21341A" +- "#262A1B" +- "#725C36" +- "#7F816B" +- "#250F02" +- "#0C7B05" +- "#D78C6B" +- "#487539" +- "#2C1D06" +- "#ED251A" +- "#DDD0C1" +- "#EF6E5F" +- "#D3591B" +- "#C5A663" +- "#C9D5C6" +- "#2F1F14" +- "#82543A" +- "#6A7C47" +- "#783408" +- "#7C784E" +- "#32C804" +- "#1E2B04" +- "#2D332E" +- "#161A25" +- "#88D904" +- "#7B7363" +- "#7A530D" +- "#7F8353" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/spirit-of-folk-musician.md b/site/content/photos/events/spirit-of-folk-musician.md similarity index 63% rename from site/content/photos/spirit-of-folk-musician.md rename to site/content/photos/events/spirit-of-folk-musician.md index bfed24c..5b19747 100644 --- a/site/content/photos/spirit-of-folk-musician.md +++ b/site/content/photos/events/spirit-of-folk-musician.md @@ -1,5 +1,6 @@ --- title: "spirit-of-folk-musician" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 17:29:26+00:00" @@ -12,6 +13,41 @@ format: "tiff" bytes: 7447808 width: 2174 height: 1440 +colours: +- "#E1D4CC" +- "#7E5A46" +- "#AABD5D" +- "#2C1D17" +- "#D19E83" +- "#810427" +- "#D5143D" +- "#292623" +- "#B3BE68" +- "#2A0307" +- "#877043" +- "#2F2A19" +- "#795905" +- "#8C8278" +- "#8E8F7C" +- "#D1D1D6" +- "#E86877" +- "#D5D5CA" +- "#CED7DB" +- "#C6A66D" +- "#7F793B" +- "#3F3304" +- "#323717" +- "#766C10" +- "#222125" +- "#2D3407" +- "#737E82" +- "#2C3231" +- "#D1960C" +- "#834447" +- "#7D8780" +- "#798E3F" +- "#797F3E" +- "#0D080B" exposure_mode: "Manual" program: "Manual" aperture: "14.0" diff --git a/site/content/photos/spirit-of-folk-people.md b/site/content/photos/events/spirit-of-folk-people.md similarity index 92% rename from site/content/photos/spirit-of-folk-people.md rename to site/content/photos/events/spirit-of-folk-people.md index 8763d0e..9baf3b9 100644 --- a/site/content/photos/spirit-of-folk-people.md +++ b/site/content/photos/events/spirit-of-folk-people.md @@ -1,5 +1,6 @@ --- title: "spirit-of-folk-people" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-25 00:36:51+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 4480788 width: 2174 height: 1440 +colours: +- "#1D1D1D" +- "#807F7F" +- "#C3C3C3" exposure_mode: "Manual" program: "Manual" aperture: "9.0" diff --git a/site/content/photos/spirit-of-folk-shield.md b/site/content/photos/events/spirit-of-folk-shield.md similarity index 67% rename from site/content/photos/spirit-of-folk-shield.md rename to site/content/photos/events/spirit-of-folk-shield.md index 548464b..5ccb26e 100644 --- a/site/content/photos/spirit-of-folk-shield.md +++ b/site/content/photos/events/spirit-of-folk-shield.md @@ -1,5 +1,6 @@ --- title: "spirit-of-folk-shield" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 16:42:14+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 8126128 width: 2174 height: 1440 +colours: +- "#1B2538" +- "#3C4E6D" +- "#B6C2DC" +- "#497E45" +- "#929A3F" +- "#ABB35F" +- "#1F3C23" +- "#6A6F7F" +- "#3B6F4A" +- "#061122" +- "#182933" +- "#302F37" +- "#ABC378" +- "#859113" +- "#152722" +- "#071B2C" +- "#2C3333" +- "#B9B775" +- "#C0CAA6" +- "#849452" +- "#637079" +- "#0A3712" +- "#8AB871" +- "#7791C2" +- "#3D576A" +- "#D4DFD3" +- "#959251" exposure_mode: "Manual" program: "Manual" aperture: "20.0" diff --git a/site/content/photos/spirit-of-folk-tent.md b/site/content/photos/events/spirit-of-folk-tent.md similarity index 92% rename from site/content/photos/spirit-of-folk-tent.md rename to site/content/photos/events/spirit-of-folk-tent.md index 783bbb6..3de5b25 100644 --- a/site/content/photos/spirit-of-folk-tent.md +++ b/site/content/photos/events/spirit-of-folk-tent.md @@ -1,5 +1,6 @@ --- title: "spirit-of-folk-tent" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 21:17:10+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 4468508 width: 2560 height: 1440 +colours: +- "#262626" +- "#7A7A7A" +- "#6F6F6E" exposure_mode: "Manual" program: "Manual" aperture: "1.8" diff --git a/site/content/photos/spwc-dublin-waldos.md b/site/content/photos/events/spwc-dublin-waldos.md similarity index 72% rename from site/content/photos/spwc-dublin-waldos.md rename to site/content/photos/events/spwc-dublin-waldos.md index c434af3..02be025 100644 --- a/site/content/photos/spwc-dublin-waldos.md +++ b/site/content/photos/events/spwc-dublin-waldos.md @@ -1,5 +1,6 @@ --- title: "spwc-dublin-waldos" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-06-18 13:02:38+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 8344840 width: 2560 height: 1440 +colours: +- "#BCC2D2" +- "#7F8A9C" +- "#BBC5CD" +- "#C4B2AE" +- "#121726" +- "#DF0738" +- "#8E7D7B" +- "#556684" +- "#040C1B" +- "#7E8C97" +- "#8B011A" +- "#152129" +- "#547187" +- "#312E34" +- "#041C30" +- "#D7707D" +- "#875A5C" +- "#829BC3" +- "#CFC2CC" +- "#886354" +- "#373030" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/vantastival-2011-daytime-gs.md b/site/content/photos/events/vantastival-2011-daytime-gs.md similarity index 90% rename from site/content/photos/vantastival-2011-daytime-gs.md rename to site/content/photos/events/vantastival-2011-daytime-gs.md index b8a2b4f..ed942dc 100644 --- a/site/content/photos/vantastival-2011-daytime-gs.md +++ b/site/content/photos/events/vantastival-2011-daytime-gs.md @@ -1,5 +1,6 @@ --- title: "vantastival-2011-daytime-gs" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 13:17:24+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3978836 width: 2560 height: 1440 +colours: +- "#EBEBEB" +- "#2A2A2A" +- "#848484" +- "#D4D4D3" exposure_mode: "Manual" program: "Manual" aperture: "7.1" diff --git a/site/content/photos/vantastival-2011-group.md b/site/content/photos/events/vantastival-2011-group.md similarity index 68% rename from site/content/photos/vantastival-2011-group.md rename to site/content/photos/events/vantastival-2011-group.md index faf76a9..5b004b4 100644 --- a/site/content/photos/vantastival-2011-group.md +++ b/site/content/photos/events/vantastival-2011-group.md @@ -1,5 +1,6 @@ --- title: "vantastival-2011-group" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 15:14:17+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 6129716 width: 2560 height: 1440 +colours: +- "#6A92C4" +- "#B6C7E1" +- "#0A5DA2" +- "#1969B1" +- "#BED2E3" +- "#649BD0" +- "#C7B5AB" +- "#9C8F6E" +- "#1E2D17" +- "#2E2C28" +- "#3A659B" +- "#808B7E" +- "#283316" +- "#111622" +- "#5E7536" +- "#111C24" +- "#857A73" +- "#CEB078" +- "#7A7C71" +- "#262C28" +- "#272416" +- "#276BB2" +- "#2362A4" +- "#211F23" +- "#42647E" +- "#51703E" exposure_mode: "Manual" program: "Manual" aperture: "10.0" diff --git a/site/content/photos/vantastival-2011.md b/site/content/photos/events/vantastival-2011.md similarity index 92% rename from site/content/photos/vantastival-2011.md rename to site/content/photos/events/vantastival-2011.md index 69eb8d5..60026ef 100644 --- a/site/content/photos/vantastival-2011.md +++ b/site/content/photos/events/vantastival-2011.md @@ -1,5 +1,6 @@ --- title: "vantastival-2011" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-30 22:51:17+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 5022568 width: 2560 height: 1440 +colours: +- "#111111" +- "#7C7C7C" +- "#C1C0C0" exposure_mode: "Manual" program: "Manual" aperture: "11.0" diff --git a/site/content/photos/weinachts-markt-2016.md b/site/content/photos/events/weinachts-markt-2016.md similarity index 78% rename from site/content/photos/weinachts-markt-2016.md rename to site/content/photos/events/weinachts-markt-2016.md index 858d301..5003062 100644 --- a/site/content/photos/weinachts-markt-2016.md +++ b/site/content/photos/events/weinachts-markt-2016.md @@ -1,5 +1,6 @@ --- title: "weinachts-markt-2016" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-05 17:45:26+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 2062100 width: 810 height: 1440 +colours: +- "#180E0B" +- "#030310" +- "#1C0C05" +- "#070814" +- "#302515" +- "#F4E1D0" +- "#765239" +- "#D3A481" +- "#090408" +- "#070409" +- "#030104" +- "#765C3D" +- "#050104" +- "#291A08" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/adac-building.md b/site/content/photos/experimental/adac-building.md similarity index 81% rename from site/content/photos/adac-building.md rename to site/content/photos/experimental/adac-building.md index eb32890..c6ea736 100644 --- a/site/content/photos/adac-building.md +++ b/site/content/photos/experimental/adac-building.md @@ -1,5 +1,6 @@ --- title: "adac-building" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 10:49:50+00:00" @@ -12,6 +13,18 @@ format: "tiff" bytes: 4368980 width: 2158 height: 1440 +colours: +- "#C6C5C8" +- "#151413" +- "#7E6F56" +- "#8D8987" +- "#070605" +- "#080505" +- "#313032" +- "#232525" +- "#C7C5C7" +- "#B9B5B4" +- "#888588" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/braurei.md b/site/content/photos/experimental/braurei.md similarity index 62% rename from site/content/photos/braurei.md rename to site/content/photos/experimental/braurei.md index c2d9b02..1f190c4 100644 --- a/site/content/photos/braurei.md +++ b/site/content/photos/experimental/braurei.md @@ -1,5 +1,6 @@ --- title: "braurei" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-03-11 18:33:15+00:00" @@ -12,6 +13,39 @@ format: "tiff" bytes: 9938040 width: 2560 height: 1440 +colours: +- "#89BEE2" +- "#8B7C76" +- "#DACBBF" +- "#805D48" +- "#CCEAF1" +- "#846C4B" +- "#32201A" +- "#200A04" +- "#B2BBCF" +- "#131110" +- "#C99677" +- "#342B1A" +- "#8BA5CF" +- "#10111C" +- "#7C7C8C" +- "#763214" +- "#CCAE82" +- "#02030E" +- "#7E4746" +- "#708372" +- "#281B05" +- "#818370" +- "#A3E6EF" +- "#302C33" +- "#4F8061" +- "#BDD2C4" +- "#E0E1CD" +- "#3F7C65" +- "#4E5B84" +- "#4C7287" +- "#022E25" +- "#77868A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: undefined diff --git a/site/content/photos/building-pattern.md b/site/content/photos/experimental/building-pattern.md similarity index 92% rename from site/content/photos/building-pattern.md rename to site/content/photos/experimental/building-pattern.md index 92bdb6e..797f967 100644 --- a/site/content/photos/building-pattern.md +++ b/site/content/photos/experimental/building-pattern.md @@ -1,5 +1,6 @@ --- title: "building-pattern" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-09 10:47:01+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 2869740 width: 2158 height: 1440 +colours: +- "#EDEDED" +- "#292929" +- "#878787" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/channel-tunnel-self-portrait.md b/site/content/photos/experimental/channel-tunnel-self-portrait.md similarity index 81% rename from site/content/photos/channel-tunnel-self-portrait.md rename to site/content/photos/experimental/channel-tunnel-self-portrait.md index 1144874..69c7f40 100644 --- a/site/content/photos/channel-tunnel-self-portrait.md +++ b/site/content/photos/experimental/channel-tunnel-self-portrait.md @@ -1,5 +1,6 @@ --- title: "channel-tunnel-self-portrait" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-06-07 20:20:20+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 5562568 width: 2174 height: 1440 +colours: +- "#D0B885" +- "#877440" +- "#282211" +- "#FAECCB" +- "#E19663" +- "#110A07" +- "#241206" +- "#281C07" +- "#7E3E14" +- "#8A512E" +- "#754F17" +- "#E25B23" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/channel-tunnel.md b/site/content/photos/experimental/channel-tunnel.md similarity index 79% rename from site/content/photos/channel-tunnel.md rename to site/content/photos/experimental/channel-tunnel.md index abfd587..1f8d401 100644 --- a/site/content/photos/channel-tunnel.md +++ b/site/content/photos/experimental/channel-tunnel.md @@ -1,5 +1,6 @@ --- title: "channel-tunnel" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-06-07 20:06:24+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 6110572 width: 2560 height: 1440 +colours: +- "#887C56" +- "#DAD1B9" +- "#332E1D" +- "#BCAA80" +- "#827B6E" +- "#6B6A79" +- "#CB8C02" +- "#23211D" +- "#686241" +- "#525C87" +- "#141622" +- "#2F2D34" +- "#1A1201" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "3.5" diff --git a/site/content/photos/charlottenburg-tree.md b/site/content/photos/experimental/charlottenburg-tree.md similarity index 75% rename from site/content/photos/charlottenburg-tree.md rename to site/content/photos/experimental/charlottenburg-tree.md index 688624b..095ce6c 100644 --- a/site/content/photos/charlottenburg-tree.md +++ b/site/content/photos/experimental/charlottenburg-tree.md @@ -1,5 +1,6 @@ --- title: "charlottenburg-tree" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-01-22 16:41:19+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 2639480 width: 810 height: 1440 +colours: +- "#CFE0F0" +- "#C4D1E4" +- "#323738" +- "#9FC1E0" +- "#3E3B39" +- "#343338" +- "#61686C" +- "#6F6661" +- "#ECE5E2" +- "#98B5D7" +- "#6A6B78" +- "#172023" +- "#191A25" +- "#666B68" +- "#101918" +- "#5C688A" +- "#2E201F" +- "#7C717A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.0" diff --git a/site/content/photos/cliffs-2005-cans.md b/site/content/photos/experimental/cliffs-2005-cans.md similarity index 89% rename from site/content/photos/cliffs-2005-cans.md rename to site/content/photos/experimental/cliffs-2005-cans.md index 3014ccc..de514ee 100644 --- a/site/content/photos/cliffs-2005-cans.md +++ b/site/content/photos/experimental/cliffs-2005-cans.md @@ -1,5 +1,6 @@ --- title: "cliffs-2005-cans" +type: "photos" mediatype: "upload" description: "TBC" date: "2005-02-01 18:17:16+00:00" @@ -12,6 +13,12 @@ format: "tiff" bytes: 3134100 width: 2560 height: 1440 +colours: +- "#3B3B3B" +- "#737373" +- "#E1E1E1" +- "#828382" +- "#3A3B3A" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/cliffs-2005.md b/site/content/photos/experimental/cliffs-2005.md similarity index 90% rename from site/content/photos/cliffs-2005.md rename to site/content/photos/experimental/cliffs-2005.md index 03d5314..c574e07 100644 --- a/site/content/photos/cliffs-2005.md +++ b/site/content/photos/experimental/cliffs-2005.md @@ -1,5 +1,6 @@ --- title: "cliffs-2005" +type: "photos" mediatype: "upload" description: "TBC" date: "2005-02-01 18:08:42+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3208700 width: 1920 height: 1440 +colours: +- "#DADADA" +- "#6B6B6B" +- "#353535" +- "#757675" exposure_mode: "Auto" program: "Program AE" aperture: "3.2" diff --git a/site/content/photos/deer-park-window.md b/site/content/photos/experimental/deer-park-window.md similarity index 80% rename from site/content/photos/deer-park-window.md rename to site/content/photos/experimental/deer-park-window.md index 04206dd..a6b14e2 100644 --- a/site/content/photos/deer-park-window.md +++ b/site/content/photos/experimental/deer-park-window.md @@ -1,5 +1,6 @@ --- title: "deer-park-window" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-06 20:03:06+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 3567536 width: 2158 height: 1440 +colours: +- "#2F302A" +- "#323734" +- "#C1CACE" +- "#D5CEC0" +- "#D0D0C8" +- "#69706B" +- "#737F83" +- "#252117" +- "#76776D" +- "#C7CCC9" +- "#868073" +- "#7B6C51" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/dublin.md b/site/content/photos/experimental/dublin.md similarity index 84% rename from site/content/photos/dublin.md rename to site/content/photos/experimental/dublin.md index 76106ee..153a130 100644 --- a/site/content/photos/dublin.md +++ b/site/content/photos/experimental/dublin.md @@ -1,5 +1,6 @@ --- title: "dublin" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-16 20:10:51+00:00" @@ -12,6 +13,15 @@ format: "tiff" bytes: 5593580 width: 2560 height: 1440 +colours: +- "#696C72" +- "#3E3E41" +- "#7B736F" +- "#2C2B2A" +- "#666E76" +- "#3A3D3F" +- "#6F6C6F" +- "#C0AFA3" exposure_mode: "Manual" program: "Manual" aperture: undefined diff --git a/site/content/photos/easter-prost.md b/site/content/photos/experimental/easter-prost.md similarity index 67% rename from site/content/photos/easter-prost.md rename to site/content/photos/experimental/easter-prost.md index 11a5d6b..b550cfa 100644 --- a/site/content/photos/easter-prost.md +++ b/site/content/photos/experimental/easter-prost.md @@ -1,5 +1,6 @@ --- title: "easter-prost" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-03-27 21:06:23+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 2098568 width: 810 height: 1440 +colours: +- "#020202" +- "#1A0402" +- "#CE7074" +- "#874847" +- "#000105" +- "#7A4932" +- "#3B221E" +- "#D7926C" +- "#2E1C29" +- "#EBCACB" +- "#242437" +- "#75280B" +- "#CDADC4" +- "#B0A8CA" +- "#6FB1D4" +- "#4E597C" +- "#666076" +- "#766162" +- "#7E6679" +- "#3F3642" +- "#F0C188" +- "#2B202F" +- "#79546B" +- "#6F1C12" +- "#EFF0DF" +- "#022135" +- "#020002" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/escalator.md b/site/content/photos/experimental/escalator.md similarity index 89% rename from site/content/photos/escalator.md rename to site/content/photos/experimental/escalator.md index f217fbd..b52f68c 100644 --- a/site/content/photos/escalator.md +++ b/site/content/photos/experimental/escalator.md @@ -1,5 +1,6 @@ --- title: "escalator" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-18 16:49:56+00:00" @@ -12,6 +13,12 @@ format: "tiff" bytes: 2935204 width: 2157 height: 1440 +colours: +- "#CECDCD" +- "#8B8B8B" +- "#303030" +- "#C8C8C7" +- "#8E8E8D" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/eternit.md b/site/content/photos/experimental/eternit.md similarity index 91% rename from site/content/photos/eternit.md rename to site/content/photos/experimental/eternit.md index aeacf15..e42f917 100644 --- a/site/content/photos/eternit.md +++ b/site/content/photos/experimental/eternit.md @@ -1,5 +1,6 @@ --- title: "eternit" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 16:04:51+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 748488 width: 2560 height: 1440 +colours: +- "#000000" +- "#FB0100" +- "#180000" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/fence-poland.md b/site/content/photos/experimental/fence-poland.md similarity index 77% rename from site/content/photos/fence-poland.md rename to site/content/photos/experimental/fence-poland.md index 1442d60..1abb372 100644 --- a/site/content/photos/fence-poland.md +++ b/site/content/photos/experimental/fence-poland.md @@ -1,5 +1,6 @@ --- title: "fence-poland" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-09 16:24:51+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 3527752 width: 2158 height: 1440 +colours: +- "#D3C4B0" +- "#C1C5B0" +- "#857B6D" +- "#B5C5B6" +- "#868976" +- "#7A897C" +- "#7B6C53" +- "#84AACC" +- "#3E3B35" +- "#3F3625" +- "#D2B896" +- "#5E6674" +- "#34343A" +- "#765F4E" +- "#C8A68D" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/fence.md b/site/content/photos/experimental/fence.md similarity index 72% rename from site/content/photos/fence.md rename to site/content/photos/experimental/fence.md index 1beb78a..edead66 100644 --- a/site/content/photos/fence.md +++ b/site/content/photos/experimental/fence.md @@ -1,5 +1,6 @@ --- title: "fence" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-31 13:41:36+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 4189360 width: 961 height: 1440 +colours: +- "#B0BCBC" +- "#C2CBC7" +- "#323838" +- "#171B27" +- "#2A2B31" +- "#1C2830" +- "#32312E" +- "#22351A" +- "#333D1F" +- "#626C64" +- "#5F6D70" +- "#122806" +- "#233507" +- "#6A6D5F" +- "#526038" +- "#20302C" +- "#455B69" +- "#312D1D" +- "#040715" +- "#5B5D69" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/kaisers.md b/site/content/photos/experimental/kaisers.md similarity index 68% rename from site/content/photos/kaisers.md rename to site/content/photos/experimental/kaisers.md index 7ec4752..3389a12 100644 --- a/site/content/photos/kaisers.md +++ b/site/content/photos/experimental/kaisers.md @@ -1,5 +1,6 @@ --- title: "kaisers" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-19 22:17:57+00:00" @@ -12,6 +13,31 @@ format: "tiff" bytes: 1913652 width: 961 height: 1440 +colours: +- "#D7CFCD" +- "#CEDDE2" +- "#817671" +- "#BFC3D0" +- "#36201B" +- "#787B89" +- "#35322E" +- "#815C4A" +- "#7A433D" +- "#0C1216" +- "#D28A84" +- "#7D7D72" +- "#CD9073" +- "#CBC1C9" +- "#D5E1DD" +- "#080A0E" +- "#CACAC5" +- "#76858C" +- "#826D52" +- "#858ACD" +- "#2F2D32" +- "#6B7C72" +- "#837881" +- "#50538A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/karl-marx-allee.md b/site/content/photos/experimental/karl-marx-allee.md similarity index 73% rename from site/content/photos/karl-marx-allee.md rename to site/content/photos/experimental/karl-marx-allee.md index 6a4da8d..b58a8bc 100644 --- a/site/content/photos/karl-marx-allee.md +++ b/site/content/photos/experimental/karl-marx-allee.md @@ -1,5 +1,6 @@ --- title: "karl-marx-allee" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-29 16:29:53" @@ -12,6 +13,26 @@ format: "tiff" bytes: 7022680 width: 810 height: 1440 +colours: +- "#52748C" +- "#5E6D73" +- "#808A99" +- "#323939" +- "#1B1917" +- "#9FA9B8" +- "#6B819A" +- "#22333A" +- "#7FA0BA" +- "#162623" +- "#D6C4C0" +- "#35353A" +- "#A5BBCE" +- "#041D24" +- "#252017" +- "#231916" +- "#5A645E" +- "#021614" +- "#796F6A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: undefined diff --git a/site/content/photos/kitesurfer-tempelhof.md b/site/content/photos/experimental/kitesurfer-tempelhof.md similarity index 80% rename from site/content/photos/kitesurfer-tempelhof.md rename to site/content/photos/experimental/kitesurfer-tempelhof.md index 2585230..dc7abbf 100644 --- a/site/content/photos/kitesurfer-tempelhof.md +++ b/site/content/photos/experimental/kitesurfer-tempelhof.md @@ -1,5 +1,6 @@ --- title: "kitesurfer-tempelhof" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-01-25 16:29:28+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 6575408 width: 2560 height: 1440 +colours: +- "#A7B8BF" +- "#8B919B" +- "#D2C4BA" +- "#AEB1B9" +- "#867973" +- "#91989E" +- "#836855" +- "#D3A683" +- "#37373F" +- "#232B37" +- "#BFBBBE" +- "#79644C" +- "#443E3B" exposure_mode: "Auto" program: "Program AE" aperture: "8.0" diff --git a/site/content/photos/klunkerkranich.md b/site/content/photos/experimental/klunkerkranich.md similarity index 84% rename from site/content/photos/klunkerkranich.md rename to site/content/photos/experimental/klunkerkranich.md index c171230..0e1c051 100644 --- a/site/content/photos/klunkerkranich.md +++ b/site/content/photos/experimental/klunkerkranich.md @@ -1,5 +1,6 @@ --- title: "klunkerkranich" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-25 19:56:49+00:00" @@ -12,6 +13,16 @@ format: "tiff" bytes: 3296944 width: 2560 height: 1440 +colours: +- "#6E5738" +- "#3E3D35" +- "#353937" +- "#130701" +- "#E58E15" +- "#7D4C13" +- "#4B4533" +- "#BD8037" +- "#743905" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/konigs-wusterhausen.md b/site/content/photos/experimental/konigs-wusterhausen.md similarity index 92% rename from site/content/photos/konigs-wusterhausen.md rename to site/content/photos/experimental/konigs-wusterhausen.md index 732cba6..76e8b93 100644 --- a/site/content/photos/konigs-wusterhausen.md +++ b/site/content/photos/experimental/konigs-wusterhausen.md @@ -1,5 +1,6 @@ --- title: "konigs-wusterhausen" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-27 21:38:33+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 4941524 width: 2560 height: 1440 +colours: +- "#101010" +- "#7A7A7A" +- "#D7D6D6" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/kunst-museum.md b/site/content/photos/experimental/kunst-museum.md similarity index 79% rename from site/content/photos/kunst-museum.md rename to site/content/photos/experimental/kunst-museum.md index 10da2a8..fdc0f13 100644 --- a/site/content/photos/kunst-museum.md +++ b/site/content/photos/experimental/kunst-museum.md @@ -1,5 +1,6 @@ --- title: "kunst-museum" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-17 16:36:32+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 6836072 width: 2560 height: 1440 +colours: +- "#C4D0D0" +- "#79897F" +- "#B6C2BE" +- "#354035" +- "#3B422E" +- "#7C806E" +- "#2D3A2B" +- "#879B99" +- "#897C6F" +- "#373C30" +- "#263A34" +- "#54766A" +- "#545F43" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.0" diff --git a/site/content/photos/markt-spiegel-anna.md b/site/content/photos/experimental/markt-spiegel-anna.md similarity index 64% rename from site/content/photos/markt-spiegel-anna.md rename to site/content/photos/experimental/markt-spiegel-anna.md index 2bce38c..5414060 100644 --- a/site/content/photos/markt-spiegel-anna.md +++ b/site/content/photos/experimental/markt-spiegel-anna.md @@ -1,5 +1,6 @@ --- title: "markt-spiegel-anna" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-20 15:54:33+00:00" @@ -12,6 +13,39 @@ format: "tiff" bytes: 3983996 width: 2158 height: 1440 +colours: +- "#2F261A" +- "#D1D7D3" +- "#00818A" +- "#786445" +- "#012D32" +- "#00B2BB" +- "#7B726C" +- "#30231B" +- "#81848C" +- "#BCCACE" +- "#CECFC4" +- "#322F2B" +- "#51C29A" +- "#547B8C" +- "#0E1A1D" +- "#0B8865" +- "#7F8637" +- "#725748" +- "#AEB0B6" +- "#D8CFC2" +- "#8E8F83" +- "#202524" +- "#BE9F6F" +- "#12231F" +- "#78868D" +- "#272C15" +- "#222226" +- "#32886B" +- "#818C84" +- "#033022" +- "#B3B961" +- "#827C80" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/mossy-drums.md b/site/content/photos/experimental/mossy-drums.md similarity index 92% rename from site/content/photos/mossy-drums.md rename to site/content/photos/experimental/mossy-drums.md index 5da2ee6..1da017d 100644 --- a/site/content/photos/mossy-drums.md +++ b/site/content/photos/experimental/mossy-drums.md @@ -1,5 +1,6 @@ --- title: "mossy-drums" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-03-02 15:22:06+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 4117932 width: 2560 height: 1440 +colours: +- "#1B1B1B" +- "#767676" +- "#6A6A69" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/orb.md b/site/content/photos/experimental/orb.md similarity index 91% rename from site/content/photos/orb.md rename to site/content/photos/experimental/orb.md index f0dd600..d8facab 100644 --- a/site/content/photos/orb.md +++ b/site/content/photos/experimental/orb.md @@ -1,5 +1,6 @@ --- title: "orb" +type: "photos" mediatype: "upload" description: "TBC" date: "2004-01-29 15:53:40+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 2956480 width: 2560 height: 1440 +colours: +- "#767676" +- "#343434" +- "#DFDFDF" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/scaffold-tunnel.md b/site/content/photos/experimental/scaffold-tunnel.md similarity index 64% rename from site/content/photos/scaffold-tunnel.md rename to site/content/photos/experimental/scaffold-tunnel.md index 26d53b7..50f012f 100644 --- a/site/content/photos/scaffold-tunnel.md +++ b/site/content/photos/experimental/scaffold-tunnel.md @@ -1,5 +1,6 @@ --- title: "scaffold-tunnel" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-09 23:41:37+00:00" @@ -12,6 +13,38 @@ format: "tiff" bytes: 2322284 width: 810 height: 1440 +colours: +- "#38301D" +- "#2D3632" +- "#22201D" +- "#253633" +- "#2A1E1A" +- "#6D562F" +- "#293E42" +- "#1E1603" +- "#01061F" +- "#416467" +- "#4B6976" +- "#6D5F5A" +- "#694D3F" +- "#1D2030" +- "#F5F0ED" +- "#01147B" +- "#312F37" +- "#795611" +- "#7A484C" +- "#606273" +- "#3C6362" +- "#5A696F" +- "#30182A" +- "#495479" +- "#D4EEF2" +- "#140704" +- "#DCB163" +- "#0438D0" +- "#033238" +- "#E18D61" +- "#26192A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/schnitzel_konig.md b/site/content/photos/experimental/schnitzel_konig.md similarity index 81% rename from site/content/photos/schnitzel_konig.md rename to site/content/photos/experimental/schnitzel_konig.md index 4721e9d..502d138 100644 --- a/site/content/photos/schnitzel_konig.md +++ b/site/content/photos/experimental/schnitzel_konig.md @@ -1,5 +1,6 @@ --- title: "schnitzel_konig" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-08 23:40:29+00:00" @@ -12,6 +13,18 @@ format: "tiff" bytes: 5510528 width: 2560 height: 1440 +colours: +- "#302106" +- "#221002" +- "#3E3418" +- "#212A05" +- "#6F572B" +- "#0E3608" +- "#373E1E" +- "#077910" +- "#5E3B0F" +- "#233F1D" +- "#050504" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: undefined diff --git a/site/content/photos/side-street-berlin.md b/site/content/photos/experimental/side-street-berlin.md similarity index 72% rename from site/content/photos/side-street-berlin.md rename to site/content/photos/experimental/side-street-berlin.md index 6a8be9b..55bca8a 100644 --- a/site/content/photos/side-street-berlin.md +++ b/site/content/photos/experimental/side-street-berlin.md @@ -1,5 +1,6 @@ --- title: "side-street-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-17 02:48:12+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 6783436 width: 2560 height: 1440 +colours: +- "#191915" +- "#201C13" +- "#2D342D" +- "#19151A" +- "#060608" +- "#69766A" +- "#2A1F18" +- "#030505" +- "#000102" +- "#000101" +- "#6E5546" +- "#120802" +- "#070B0D" +- "#7A6E63" +- "#686B5C" +- "#12140D" +- "#080B08" +- "#160E03" +- "#665844" +- "#D4C8C2" +- "#130F16" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.0" diff --git a/site/content/photos/side_steps_wall.md b/site/content/photos/experimental/side_steps_wall.md similarity index 86% rename from site/content/photos/side_steps_wall.md rename to site/content/photos/experimental/side_steps_wall.md index 4032796..bf31d80 100644 --- a/site/content/photos/side_steps_wall.md +++ b/site/content/photos/experimental/side_steps_wall.md @@ -1,5 +1,6 @@ --- title: "side_steps_wall" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-01-08 15:19:51+00:00" @@ -12,6 +13,14 @@ format: "tiff" bytes: 6734448 width: 2158 height: 1440 +colours: +- "#817264" +- "#372E24" +- "#7A6A57" +- "#332922" +- "#756455" +- "#322B27" +- "#BBAA99" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/spreepark-ferris-wheel.md b/site/content/photos/experimental/spreepark-ferris-wheel.md similarity index 76% rename from site/content/photos/spreepark-ferris-wheel.md rename to site/content/photos/experimental/spreepark-ferris-wheel.md index f50730b..6db9190 100644 --- a/site/content/photos/spreepark-ferris-wheel.md +++ b/site/content/photos/experimental/spreepark-ferris-wheel.md @@ -1,5 +1,6 @@ --- title: "spreepark-ferris-wheel" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-01-18 17:33:47+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 8562196 width: 2560 height: 1440 +colours: +- "#D0E5F2" +- "#303839" +- "#8DB7D2" +- "#869EC8" +- "#4D5B84" +- "#121C20" +- "#1A1B2E" +- "#B5C6E1" +- "#0A1211" +- "#372027" +- "#020E15" +- "#72444D" +- "#4B6F86" +- "#556266" +- "#232026" +- "#060619" +- "#251720" exposure_mode: "Auto" program: "Program AE" aperture: "4.5" diff --git a/site/content/photos/stadtbadd-wedding.md b/site/content/photos/experimental/stadtbadd-wedding.md similarity index 75% rename from site/content/photos/stadtbadd-wedding.md rename to site/content/photos/experimental/stadtbadd-wedding.md index 99c9811..5660f1f 100644 --- a/site/content/photos/stadtbadd-wedding.md +++ b/site/content/photos/experimental/stadtbadd-wedding.md @@ -1,5 +1,6 @@ --- title: "stadtbadd-wedding" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-05-29 14:21:05+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 6749452 width: 2155 height: 1440 +colours: +- "#38352F" +- "#7B7C81" +- "#797868" +- "#79746D" +- "#303034" +- "#D6D6C8" +- "#797E80" +- "#0D0F16" +- "#BDBEC5" +- "#2F3332" +- "#827F81" +- "#332F24" +- "#2C1F1C" +- "#D5D0C7" +- "#777E78" +- "#C4CACC" +- "#75664C" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "22.0" diff --git a/site/content/photos/tempelhof-floodlight.md b/site/content/photos/experimental/tempelhof-floodlight.md similarity index 89% rename from site/content/photos/tempelhof-floodlight.md rename to site/content/photos/experimental/tempelhof-floodlight.md index 8572ca7..2de7117 100644 --- a/site/content/photos/tempelhof-floodlight.md +++ b/site/content/photos/experimental/tempelhof-floodlight.md @@ -1,5 +1,6 @@ --- title: "tempelhof-floodlight" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-15 15:42:17+00:00" @@ -12,6 +13,12 @@ format: "tiff" bytes: 5233652 width: 2560 height: 1440 +colours: +- "#C4D3E0" +- "#010101" +- "#C2CFDF" +- "#020203" +- "#000101" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "13.0" diff --git a/site/content/photos/tree.md b/site/content/photos/experimental/tree.md similarity index 77% rename from site/content/photos/tree.md rename to site/content/photos/experimental/tree.md index 3a6367a..09c49a9 100644 --- a/site/content/photos/tree.md +++ b/site/content/photos/experimental/tree.md @@ -1,5 +1,6 @@ --- title: "tree" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-01-26 13:12:45+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 7875056 width: 2560 height: 1440 +colours: +- "#32322B" +- "#757D76" +- "#717368" +- "#2E3330" +- "#7A8285" +- "#76726B" +- "#29251A" +- "#2A2E1D" +- "#7C7F86" +- "#ACB2B5" +- "#2D2D31" +- "#231A14" +- "#131912" +- "#ADB0B6" exposure_mode: "Manual" program: "Manual" aperture: "64.0" diff --git a/site/content/photos/treptower-war-memorial.md b/site/content/photos/experimental/treptower-war-memorial.md similarity index 84% rename from site/content/photos/treptower-war-memorial.md rename to site/content/photos/experimental/treptower-war-memorial.md index 0ac687a..56639e6 100644 --- a/site/content/photos/treptower-war-memorial.md +++ b/site/content/photos/experimental/treptower-war-memorial.md @@ -1,5 +1,6 @@ --- title: "treptower-war-memorial" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-31 17:37:54+00:00" @@ -12,6 +13,16 @@ format: "tiff" bytes: 6421748 width: 2560 height: 1440 +colours: +- "#5F6374" +- "#BAC1CF" +- "#211517" +- "#332E36" +- "#1A1117" +- "#2E2627" +- "#525B70" +- "#716163" +- "#21212E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/wide-angle-kitchen.md b/site/content/photos/experimental/wide-angle-kitchen.md similarity index 90% rename from site/content/photos/wide-angle-kitchen.md rename to site/content/photos/experimental/wide-angle-kitchen.md index 3d358ba..d08bf6d 100644 --- a/site/content/photos/wide-angle-kitchen.md +++ b/site/content/photos/experimental/wide-angle-kitchen.md @@ -1,5 +1,6 @@ --- title: "wide-angle-kitchen" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-17 20:16:15+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 1578572 width: 961 height: 1440 +colours: +- "#7E7E7E" +- "#2F2F2F" +- "#C8C7C7" +- "#747473" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/wittenberg.md b/site/content/photos/experimental/wittenberg.md similarity index 78% rename from site/content/photos/wittenberg.md rename to site/content/photos/experimental/wittenberg.md index 22b26c3..52550ad 100644 --- a/site/content/photos/wittenberg.md +++ b/site/content/photos/experimental/wittenberg.md @@ -1,5 +1,6 @@ --- title: "wittenberg" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-04-14 16:50:51" @@ -12,6 +13,21 @@ format: "tiff" bytes: 6378552 width: 2560 height: 1440 +colours: +- "#8A837D" +- "#E4E6E6" +- "#E0DFDE" +- "#EAEAEB" +- "#7A5644" +- "#34211B" +- "#262320" +- "#E5E7E5" +- "#31291D" +- "#170703" +- "#F1F0F1" +- "#DFDFDD" +- "#6B5C47" +- "#82827A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: undefined diff --git a/site/content/photos/dublin-from-howth.md b/site/content/photos/landscapes/dublin-from-howth.md similarity index 77% rename from site/content/photos/dublin-from-howth.md rename to site/content/photos/landscapes/dublin-from-howth.md index c81794d..64a242f 100644 --- a/site/content/photos/dublin-from-howth.md +++ b/site/content/photos/landscapes/dublin-from-howth.md @@ -1,5 +1,6 @@ --- title: "dublin-from-howth" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-06 18:52:27+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 5491788 width: 2560 height: 1440 +colours: +- "#C5D5DF" +- "#88ABC6" +- "#536D81" +- "#657278" +- "#667569" +- "#5F8256" +- "#24363C" +- "#6B717D" +- "#3D4948" +- "#516279" +- "#ACC27B" +- "#828673" +- "#B5BFCC" +- "#293D39" +- "#8E8680" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "16.0" diff --git a/site/content/photos/forest.md b/site/content/photos/landscapes/forest.md similarity index 71% rename from site/content/photos/forest.md rename to site/content/photos/landscapes/forest.md index 936d920..cb37cce 100644 --- a/site/content/photos/forest.md +++ b/site/content/photos/landscapes/forest.md @@ -1,5 +1,6 @@ --- title: "forest" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 18:28:31+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 3549816 width: 961 height: 1440 +colours: +- "#2A3317" +- "#24331C" +- "#262316" +- "#23221E" +- "#2B3708" +- "#F5F1EB" +- "#1C201C" +- "#7B763C" +- "#576530" +- "#6B7135" +- "#80704A" +- "#D1B87A" +- "#E5E6D3" +- "#2A211C" +- "#4F630C" +- "#646E0C" +- "#CDC368" +- "#7D7168" +- "#242106" +- "#7E7811" +- "#80826C" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/glendalough-landscape.md b/site/content/photos/landscapes/glendalough-landscape.md similarity index 70% rename from site/content/photos/glendalough-landscape.md rename to site/content/photos/landscapes/glendalough-landscape.md index 4444764..36d3aac 100644 --- a/site/content/photos/glendalough-landscape.md +++ b/site/content/photos/landscapes/glendalough-landscape.md @@ -1,5 +1,6 @@ --- title: "glendalough-landscape" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-08 15:05:46+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 6547564 width: 2158 height: 1440 +colours: +- "#715747" +- "#CEDBE2" +- "#736045" +- "#413521" +- "#443226" +- "#7F746B" +- "#6C7C6E" +- "#6E7281" +- "#C5BAB0" +- "#74858A" +- "#282D1A" +- "#263422" +- "#413B37" +- "#818471" +- "#ADB2BE" +- "#3B4641" +- "#5B7886" +- "#AFBBB0" +- "#B9BCAA" +- "#3E3F46" +- "#BBA37D" +- "#5D6847" +- "#74704A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.0" diff --git a/site/content/photos/glendalough-path.md b/site/content/photos/landscapes/glendalough-path.md similarity index 75% rename from site/content/photos/glendalough-path.md rename to site/content/photos/landscapes/glendalough-path.md index 0515254..f27bb5b 100644 --- a/site/content/photos/glendalough-path.md +++ b/site/content/photos/landscapes/glendalough-path.md @@ -1,5 +1,6 @@ --- title: "glendalough-path" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-08 14:40:28+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 4186236 width: 961 height: 1440 +colours: +- "#E4DDD8" +- "#857972" +- "#D9DAE1" +- "#F3F6F7" +- "#342E20" +- "#30241E" +- "#796A52" +- "#7F6757" +- "#898C9C" +- "#413D35" +- "#717360" +- "#BE9C83" +- "#363A23" +- "#6D6A4A" +- "#7F8E94" +- "#CFC8CD" +- "#BCA482" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.0" diff --git a/site/content/photos/glendalough-tower.md b/site/content/photos/landscapes/glendalough-tower.md similarity index 76% rename from site/content/photos/glendalough-tower.md rename to site/content/photos/landscapes/glendalough-tower.md index 81d1af4..48d060a 100644 --- a/site/content/photos/glendalough-tower.md +++ b/site/content/photos/landscapes/glendalough-tower.md @@ -1,5 +1,6 @@ --- title: "glendalough-tower" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-08 17:19:36+00:00" @@ -12,6 +13,23 @@ format: "tiff" bytes: 2325164 width: 810 height: 1440 +colours: +- "#D1D6DD" +- "#7C8088" +- "#383631" +- "#7F776E" +- "#DFE3E7" +- "#2E3331" +- "#757764" +- "#34353A" +- "#757B7F" +- "#6C7A52" +- "#322E20" +- "#C0B7AB" +- "#303524" +- "#253021" +- "#73664A" +- "#686E67" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/howth-fishing-boat.md b/site/content/photos/landscapes/howth-fishing-boat.md similarity index 90% rename from site/content/photos/howth-fishing-boat.md rename to site/content/photos/landscapes/howth-fishing-boat.md index 34ec40f..f35efab 100644 --- a/site/content/photos/howth-fishing-boat.md +++ b/site/content/photos/landscapes/howth-fishing-boat.md @@ -1,5 +1,6 @@ --- title: "howth-fishing-boat" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-10-21 22:30:20+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3571496 width: 2560 height: 1440 +colours: +- "#111111" +- "#CBCBCB" +- "#838282" +- "#D3D3D2" exposure_mode: "Manual" program: "Manual" aperture: "10.0" diff --git a/site/content/photos/howth-harbour-lighthouse.md b/site/content/photos/landscapes/howth-harbour-lighthouse.md similarity index 93% rename from site/content/photos/howth-harbour-lighthouse.md rename to site/content/photos/landscapes/howth-harbour-lighthouse.md index d0e3376..4d2e1b1 100644 --- a/site/content/photos/howth-harbour-lighthouse.md +++ b/site/content/photos/landscapes/howth-harbour-lighthouse.md @@ -1,5 +1,6 @@ --- title: "howth-harbour-lighthouse" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-10-21 23:10:23+00:00" @@ -12,6 +13,9 @@ format: "tiff" bytes: 2624984 width: 2174 height: 1440 +colours: +- "#151515" +- "#828282" exposure_mode: "Manual" program: "Manual" aperture: "7.1" diff --git a/site/content/photos/howth-harbour.md b/site/content/photos/landscapes/howth-harbour.md similarity index 80% rename from site/content/photos/howth-harbour.md rename to site/content/photos/landscapes/howth-harbour.md index de3a989..992e7f1 100644 --- a/site/content/photos/howth-harbour.md +++ b/site/content/photos/landscapes/howth-harbour.md @@ -1,5 +1,6 @@ --- title: "howth-harbour" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-10-21 22:36:21+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 5287616 width: 2560 height: 1440 +colours: +- "#2E211A" +- "#7C5742" +- "#DFC7BE" +- "#C3977B" +- "#241B11" +- "#7F5757" +- "#876E6F" +- "#0F0603" +- "#806541" +- "#CBCBDC" +- "#362C2C" +- "#CEB07D" exposure_mode: "Manual" program: "Manual" aperture: "11.0" diff --git a/site/content/photos/howth_pier.md b/site/content/photos/landscapes/howth_pier.md similarity index 90% rename from site/content/photos/howth_pier.md rename to site/content/photos/landscapes/howth_pier.md index ce48069..a2e154e 100644 --- a/site/content/photos/howth_pier.md +++ b/site/content/photos/landscapes/howth_pier.md @@ -1,5 +1,6 @@ --- title: "howth_pier" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-27 16:12:23" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4762184 width: 2560 height: 1440 +colours: +- "#868686" +- "#BFBFBF" +- "#303030" +- "#7F7F7E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: undefined diff --git a/site/content/photos/kerry-cottage-long-exposure.md b/site/content/photos/landscapes/kerry-cottage-long-exposure.md similarity index 73% rename from site/content/photos/kerry-cottage-long-exposure.md rename to site/content/photos/landscapes/kerry-cottage-long-exposure.md index 2c46fd6..ec18f8e 100644 --- a/site/content/photos/kerry-cottage-long-exposure.md +++ b/site/content/photos/landscapes/kerry-cottage-long-exposure.md @@ -1,5 +1,6 @@ --- title: "kerry-cottage-long-exposure" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-12-10 00:53:56+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 5397644 width: 2559 height: 1440 +colours: +- "#7C93C4" +- "#B3C1D9" +- "#9BA8B3" +- "#191D29" +- "#29432E" +- "#85939E" +- "#796F6B" +- "#707681" +- "#485670" +- "#26262B" +- "#42634C" +- "#323B3C" +- "#2E2A27" +- "#4A6344" +- "#30291D" +- "#242D34" +- "#291F19" +- "#776152" +- "#637665" +- "#EBDDCE" exposure_mode: "Manual" program: "Manual" aperture: "2.8" diff --git a/site/content/photos/kerry-sheep.md b/site/content/photos/landscapes/kerry-sheep.md similarity index 74% rename from site/content/photos/kerry-sheep.md rename to site/content/photos/landscapes/kerry-sheep.md index c5345f3..91c932e 100644 --- a/site/content/photos/kerry-sheep.md +++ b/site/content/photos/landscapes/kerry-sheep.md @@ -1,5 +1,6 @@ --- title: "kerry-sheep" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-03-28 15:34:54+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 8120268 width: 2560 height: 1440 +colours: +- "#867E72" +- "#3C3524" +- "#D0CAC1" +- "#746349" +- "#715742" +- "#878D4E" +- "#788844" +- "#7F8073" +- "#413F36" +- "#C9CABF" +- "#333920" +- "#412F21" +- "#83804E" +- "#79837A" +- "#C2C6C2" +- "#C4CBCD" +- "#BAA176" +- "#393F3B" exposure_mode: "Manual" program: "Manual" aperture: "8.0" diff --git a/site/content/photos/lake.md b/site/content/photos/landscapes/lake.md similarity index 88% rename from site/content/photos/lake.md rename to site/content/photos/landscapes/lake.md index 321a7e2..28d91b6 100644 --- a/site/content/photos/lake.md +++ b/site/content/photos/landscapes/lake.md @@ -1,5 +1,6 @@ --- title: "lake" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-04-14 19:48:07" @@ -12,6 +13,12 @@ format: "tiff" bytes: 2797356 width: 2560 height: 1440 +colours: +- "#7D7D7D" +- "#303030" +- "#CDCDCD" +- "#D6D6D5" +- "#767675" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: undefined diff --git a/site/content/photos/lakes-killarney.md b/site/content/photos/landscapes/lakes-killarney.md similarity index 77% rename from site/content/photos/lakes-killarney.md rename to site/content/photos/landscapes/lakes-killarney.md index 1b52202..cc8bd4f 100644 --- a/site/content/photos/lakes-killarney.md +++ b/site/content/photos/landscapes/lakes-killarney.md @@ -1,5 +1,6 @@ --- title: "lakes-killarney" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-04-01 19:23:21" @@ -12,6 +13,22 @@ format: "tiff" bytes: 7005952 width: 2560 height: 1440 +colours: +- "#70808C" +- "#B2C1CA" +- "#536878" +- "#6A7482" +- "#293942" +- "#3B301F" +- "#384041" +- "#3C3834" +- "#3A2A1F" +- "#6D5A3F" +- "#AAB4C1" +- "#3B3D44" +- "#6E5441" +- "#4C5A6C" +- "#2E3745" exposure_mode: "Manual" program: "Manual" aperture: undefined diff --git a/site/content/photos/seagull-poland.md b/site/content/photos/landscapes/seagull-poland.md similarity index 76% rename from site/content/photos/seagull-poland.md rename to site/content/photos/landscapes/seagull-poland.md index 22f6d9a..90513e4 100644 --- a/site/content/photos/seagull-poland.md +++ b/site/content/photos/landscapes/seagull-poland.md @@ -1,5 +1,6 @@ --- title: "seagull-poland" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-09 14:50:47+00:00" @@ -12,6 +13,23 @@ format: "tiff" bytes: 5099932 width: 2560 height: 1440 +colours: +- "#7EACD4" +- "#BAD6F0" +- "#416B8F" +- "#B6D0EB" +- "#A0C1E3" +- "#282E2B" +- "#7C7F70" +- "#446182" +- "#1B2830" +- "#32322C" +- "#C6C8BA" +- "#757D75" +- "#667176" +- "#C6CCC6" +- "#1D5D8C" +- "#827D74" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/skelligs-kerry.md b/site/content/photos/landscapes/skelligs-kerry.md similarity index 90% rename from site/content/photos/skelligs-kerry.md rename to site/content/photos/landscapes/skelligs-kerry.md index ca4ddba..9d7716f 100644 --- a/site/content/photos/skelligs-kerry.md +++ b/site/content/photos/landscapes/skelligs-kerry.md @@ -1,5 +1,6 @@ --- title: "skelligs-kerry" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-12-11 16:05:55+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3300492 width: 2560 height: 1440 +colours: +- "#CAC9C9" +- "#424242" +- "#898989" +- "#C9C9C8" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.0" diff --git a/site/content/photos/st-finans-bay-long-exposure.md b/site/content/photos/landscapes/st-finans-bay-long-exposure.md similarity index 81% rename from site/content/photos/st-finans-bay-long-exposure.md rename to site/content/photos/landscapes/st-finans-bay-long-exposure.md index c88466c..547e153 100644 --- a/site/content/photos/st-finans-bay-long-exposure.md +++ b/site/content/photos/landscapes/st-finans-bay-long-exposure.md @@ -1,5 +1,6 @@ --- title: "st-finans-bay-long-exposure" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-12-10 01:16:36+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 3918512 width: 2560 height: 1440 +colours: +- "#D9DFE8" +- "#D3DBE3" +- "#2C3030" +- "#26272B" +- "#32322D" +- "#8E8A85" +- "#6F777A" +- "#777B84" +- "#5D6A47" +- "#6D756D" +- "#777A6B" +- "#3C442C" exposure_mode: "Manual" program: "Manual" aperture: "2.8" diff --git a/site/content/photos/st-finians-beach.md b/site/content/photos/landscapes/st-finians-beach.md similarity index 83% rename from site/content/photos/st-finians-beach.md rename to site/content/photos/landscapes/st-finians-beach.md index e57703e..fd98443 100644 --- a/site/content/photos/st-finians-beach.md +++ b/site/content/photos/landscapes/st-finians-beach.md @@ -1,5 +1,6 @@ --- title: "st-finians-beach" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-31 13:50:29+00:00" @@ -12,6 +13,17 @@ format: "tiff" bytes: 5319420 width: 2560 height: 1440 +colours: +- "#B0BCC3" +- "#7E8C93" +- "#45433D" +- "#353D36" +- "#636C66" +- "#5F5B56" +- "#61625B" +- "#787A80" +- "#322E22" +- "#2C321C" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/tree-killarney.md b/site/content/photos/landscapes/tree-killarney.md similarity index 90% rename from site/content/photos/tree-killarney.md rename to site/content/photos/landscapes/tree-killarney.md index 0bf3c4d..5b1f429 100644 --- a/site/content/photos/tree-killarney.md +++ b/site/content/photos/landscapes/tree-killarney.md @@ -1,5 +1,6 @@ --- title: "tree-killarney" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-03-27 19:14:36+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3836764 width: 2151 height: 1440 +colours: +- "#E8E8E8" +- "#333333" +- "#7B7B7B" +- "#E6E6E5" exposure_mode: "Manual" program: "Manual" aperture: "3.5" diff --git a/site/content/photos/alabama-3-guitarist.md b/site/content/photos/music/alabama-3-guitarist.md similarity index 90% rename from site/content/photos/alabama-3-guitarist.md rename to site/content/photos/music/alabama-3-guitarist.md index 7c7d669..2f75437 100644 --- a/site/content/photos/alabama-3-guitarist.md +++ b/site/content/photos/music/alabama-3-guitarist.md @@ -1,5 +1,6 @@ --- title: "alabama-3-guitarist" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 23:41:18+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 5035516 width: 2560 height: 1440 +colours: +- "#C7C6C6" +- "#222222" +- "#898888" +- "#BDBDBC" exposure_mode: "Manual" program: "Manual" aperture: "5.0" diff --git a/site/content/photos/alabama-3-lead.md b/site/content/photos/music/alabama-3-lead.md similarity index 93% rename from site/content/photos/alabama-3-lead.md rename to site/content/photos/music/alabama-3-lead.md index e9d3f76..876f856 100644 --- a/site/content/photos/alabama-3-lead.md +++ b/site/content/photos/music/alabama-3-lead.md @@ -1,5 +1,6 @@ --- title: "alabama-3-lead" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 23:31:50+00:00" @@ -12,6 +13,9 @@ format: "tiff" bytes: 1610272 width: 810 height: 1440 +colours: +- "#202020" +- "#717171" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/alabama-3-single.md b/site/content/photos/music/alabama-3-single.md similarity index 93% rename from site/content/photos/alabama-3-single.md rename to site/content/photos/music/alabama-3-single.md index 5f35c90..5f7e370 100644 --- a/site/content/photos/alabama-3-single.md +++ b/site/content/photos/music/alabama-3-single.md @@ -1,5 +1,6 @@ --- title: "alabama-3-single" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 23:31:27+00:00" @@ -12,6 +13,9 @@ format: "tiff" bytes: 4520392 width: 2560 height: 1440 +colours: +- "#0E0E0E" +- "#E7E6E6" exposure_mode: "Manual" program: "Manual" aperture: "5.0" diff --git a/site/content/photos/alabama-3-stage.md b/site/content/photos/music/alabama-3-stage.md similarity index 90% rename from site/content/photos/alabama-3-stage.md rename to site/content/photos/music/alabama-3-stage.md index 37ff4b6..301280a 100644 --- a/site/content/photos/alabama-3-stage.md +++ b/site/content/photos/music/alabama-3-stage.md @@ -1,5 +1,6 @@ --- title: "alabama-3-stage" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 23:40:52+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 5315936 width: 2560 height: 1440 +colours: +- "#232323" +- "#848484" +- "#D1D0D0" +- "#7D7D7C" exposure_mode: "Manual" program: "Manual" aperture: "5.0" diff --git a/site/content/photos/alabama-3-vocals.md b/site/content/photos/music/alabama-3-vocals.md similarity index 90% rename from site/content/photos/alabama-3-vocals.md rename to site/content/photos/music/alabama-3-vocals.md index f83699b..b65ed7d 100644 --- a/site/content/photos/alabama-3-vocals.md +++ b/site/content/photos/music/alabama-3-vocals.md @@ -1,5 +1,6 @@ --- title: "alabama-3-vocals" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 23:41:23+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 5293740 width: 2560 height: 1440 +colours: +- "#828282" +- "#3B3B3A" +- "#C6C6C6" +- "#7A7A79" exposure_mode: "Manual" program: "Manual" aperture: "5.0" diff --git a/site/content/photos/colm.md b/site/content/photos/music/colm.md similarity index 91% rename from site/content/photos/colm.md rename to site/content/photos/music/colm.md index 1075f7f..0f53648 100644 --- a/site/content/photos/colm.md +++ b/site/content/photos/music/colm.md @@ -1,5 +1,6 @@ --- title: "colm" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-25 15:27:03+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 1416936 width: 954 height: 1440 +colours: +- "#1B1B1B" +- "#7A7A7A" +- "#717170" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/hot-sprockets-leads.md b/site/content/photos/music/hot-sprockets-leads.md similarity index 75% rename from site/content/photos/hot-sprockets-leads.md rename to site/content/photos/music/hot-sprockets-leads.md index c91374f..7bd5ffd 100644 --- a/site/content/photos/hot-sprockets-leads.md +++ b/site/content/photos/music/hot-sprockets-leads.md @@ -1,5 +1,6 @@ --- title: "hot-sprockets-leads" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-25 00:30:56+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 6974596 width: 2174 height: 1440 +colours: +- "#231414" +- "#100403" +- "#7D484D" +- "#190F16" +- "#C48185" +- "#BDC3D2" +- "#D3B4B7" +- "#1D1B2C" +- "#2C2830" +- "#7E6969" +- "#1F1623" +- "#BBCBD8" +- "#717283" +- "#201A1B" +- "#D79983" +- "#050103" +- "#4B5771" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/hot-sprockets-stage-vantastival.md b/site/content/photos/music/hot-sprockets-stage-vantastival.md similarity index 91% rename from site/content/photos/hot-sprockets-stage-vantastival.md rename to site/content/photos/music/hot-sprockets-stage-vantastival.md index bccb130..aec1650 100644 --- a/site/content/photos/hot-sprockets-stage-vantastival.md +++ b/site/content/photos/music/hot-sprockets-stage-vantastival.md @@ -1,5 +1,6 @@ --- title: "hot-sprockets-stage-vantastival" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 18:31:13+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4356456 width: 2174 height: 1440 +colours: +- "#232323" +- "#CFCECE" +- "#868585" +- "#D3D3D2" exposure_mode: "Manual" program: "Manual" aperture: "9.0" diff --git a/site/content/photos/mixing-desk.md b/site/content/photos/music/mixing-desk.md similarity index 79% rename from site/content/photos/mixing-desk.md rename to site/content/photos/music/mixing-desk.md index 8dfa4dc..c107742 100644 --- a/site/content/photos/mixing-desk.md +++ b/site/content/photos/music/mixing-desk.md @@ -1,5 +1,6 @@ --- title: "mixing-desk" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-01-26 18:49:27+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 6200888 width: 2560 height: 1440 +colours: +- "#C6C5B0" +- "#302C18" +- "#9A997F" +- "#D9D2BD" +- "#7C7753" +- "#CFB177" +- "#83754C" +- "#130D02" +- "#010100" +- "#100500" +- "#2D301A" +- "#70734D" exposure_mode: "Manual" program: "Manual" aperture: "22.0" diff --git a/site/content/photos/mossy-nolan.md b/site/content/photos/music/mossy-nolan.md similarity index 74% rename from site/content/photos/mossy-nolan.md rename to site/content/photos/music/mossy-nolan.md index d86bc40..befa595 100644 --- a/site/content/photos/mossy-nolan.md +++ b/site/content/photos/music/mossy-nolan.md @@ -1,5 +1,6 @@ --- title: "mossy-nolan" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-25 15:26:48+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 5653224 width: 2174 height: 1440 +colours: +- "#9B7C49" +- "#D48F88" +- "#2F1A15" +- "#E1937E" +- "#A5C5C7" +- "#874946" +- "#824630" +- "#AE8A58" +- "#A8B5AE" +- "#110604" +- "#73C4D0" +- "#E1B7B3" +- "#70331A" +- "#9FA08C" +- "#046F8B" +- "#333C3E" +- "#2A1726" +- "#9E957C" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/prairie-dawgs-connor.md b/site/content/photos/music/prairie-dawgs-connor.md similarity index 93% rename from site/content/photos/prairie-dawgs-connor.md rename to site/content/photos/music/prairie-dawgs-connor.md index e0eda3d..c81b62c 100644 --- a/site/content/photos/prairie-dawgs-connor.md +++ b/site/content/photos/music/prairie-dawgs-connor.md @@ -1,5 +1,6 @@ --- title: "prairie-dawgs-connor" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-05 23:08:11+00:00" @@ -12,6 +13,9 @@ format: "tiff" bytes: 4328460 width: 2560 height: 1440 +colours: +- "#0A0A0A" +- "#7F7F7F" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/prairie-dawgs-karen.md b/site/content/photos/music/prairie-dawgs-karen.md similarity index 81% rename from site/content/photos/prairie-dawgs-karen.md rename to site/content/photos/music/prairie-dawgs-karen.md index b45f115..93606f9 100644 --- a/site/content/photos/prairie-dawgs-karen.md +++ b/site/content/photos/music/prairie-dawgs-karen.md @@ -1,5 +1,6 @@ --- title: "prairie-dawgs-karen" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-05 23:41:22+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 3735136 width: 1440 height: 1440 +colours: +- "#1B0405" +- "#201F1D" +- "#180E0D" +- "#7E350C" +- "#C78F79" +- "#835341" +- "#D1C5BF" +- "#1E201E" +- "#070406" +- "#784C0F" +- "#743E37" +- "#161416" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/prairie-dawgs-ruairi.md b/site/content/photos/music/prairie-dawgs-ruairi.md similarity index 93% rename from site/content/photos/prairie-dawgs-ruairi.md rename to site/content/photos/music/prairie-dawgs-ruairi.md index 5c39de8..36aba96 100644 --- a/site/content/photos/prairie-dawgs-ruairi.md +++ b/site/content/photos/music/prairie-dawgs-ruairi.md @@ -1,5 +1,6 @@ --- title: "prairie-dawgs-ruairi" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-05 23:01:14+00:00" @@ -12,6 +13,9 @@ format: "tiff" bytes: 3904448 width: 2151 height: 1440 +colours: +- "#1B1B1B" +- "#7B7B7B" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/rhob-cunningham.md b/site/content/photos/music/rhob-cunningham.md similarity index 75% rename from site/content/photos/rhob-cunningham.md rename to site/content/photos/music/rhob-cunningham.md index 3a8c403..9ee1e86 100644 --- a/site/content/photos/rhob-cunningham.md +++ b/site/content/photos/music/rhob-cunningham.md @@ -1,5 +1,6 @@ --- title: "rhob-cunningham" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-28 19:06:45+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 6370240 width: 2560 height: 1440 +colours: +- "#33371E" +- "#E5D6CB" +- "#DBA57D" +- "#778277" +- "#7E5540" +- "#33231B" +- "#636957" +- "#D7A66F" +- "#251104" +- "#D88B21" +- "#3C3B32" +- "#867570" +- "#733C13" +- "#2E2A1A" +- "#CBD2D3" +- "#856D4E" +- "#6B6C75" exposure_mode: "Auto" program: "Program AE" aperture: "5.0" diff --git a/site/content/photos/richie-cmc.md b/site/content/photos/music/richie-cmc.md similarity index 92% rename from site/content/photos/richie-cmc.md rename to site/content/photos/music/richie-cmc.md index d7127f2..481abef 100644 --- a/site/content/photos/richie-cmc.md +++ b/site/content/photos/music/richie-cmc.md @@ -1,5 +1,6 @@ --- title: "richie-cmc" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-05-25 22:01:11+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 1287320 width: 954 height: 1440 +colours: +- "#343434" +- "#7C7C7C" +- "#D4D4D4" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/stina.md b/site/content/photos/music/stina.md similarity index 73% rename from site/content/photos/stina.md rename to site/content/photos/music/stina.md index c2cf56c..c6171aa 100644 --- a/site/content/photos/stina.md +++ b/site/content/photos/music/stina.md @@ -1,5 +1,6 @@ --- title: "stina" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 20:57:02+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 2013832 width: 810 height: 1440 +colours: +- "#000000" +- "#0A0201" +- "#1F100C" +- "#D69193" +- "#F6C6CA" +- "#021D29" +- "#864747" +- "#A1B4C4" +- "#4C6E81" +- "#010001" +- "#020001" +- "#172C33" +- "#100A0E" +- "#7CA0B9" +- "#A0ADC1" +- "#0F1019" +- "#000105" +- "#0C080E" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/the-young-folk-lead.md b/site/content/photos/music/the-young-folk-lead.md similarity index 92% rename from site/content/photos/the-young-folk-lead.md rename to site/content/photos/music/the-young-folk-lead.md index 161a96f..44f5378 100644 --- a/site/content/photos/the-young-folk-lead.md +++ b/site/content/photos/music/the-young-folk-lead.md @@ -1,5 +1,6 @@ --- title: "the-young-folk-lead" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-30 19:33:35+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 5238400 width: 2560 height: 1440 +colours: +- "#252525" +- "#797979" +- "#6E6E6D" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/tim-hot-sprockets-under-mic.md b/site/content/photos/music/tim-hot-sprockets-under-mic.md similarity index 72% rename from site/content/photos/tim-hot-sprockets-under-mic.md rename to site/content/photos/music/tim-hot-sprockets-under-mic.md index 5d1da3c..1c5fdad 100644 --- a/site/content/photos/tim-hot-sprockets-under-mic.md +++ b/site/content/photos/music/tim-hot-sprockets-under-mic.md @@ -1,5 +1,6 @@ --- title: "tim-hot-sprockets-under-mic" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 18:24:58+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 2983632 width: 954 height: 1440 +colours: +- "#00685F" +- "#012208" +- "#00433C" +- "#007458" +- "#00494B" +- "#6DD38E" +- "#037E2C" +- "#142711" +- "#53874A" +- "#7EBB7D" +- "#00585B" +- "#1D1501" +- "#100502" +- "#067108" +- "#212812" +- "#577E00" +- "#1B180D" +- "#6F8051" +- "#07CC78" +- "#010101" +- "#0BBE56" exposure_mode: "Manual" program: "Manual" aperture: "6.3" diff --git a/site/content/photos/tim-hot-sprockets.md b/site/content/photos/music/tim-hot-sprockets.md similarity index 79% rename from site/content/photos/tim-hot-sprockets.md rename to site/content/photos/music/tim-hot-sprockets.md index d42ae38..7153948 100644 --- a/site/content/photos/tim-hot-sprockets.md +++ b/site/content/photos/music/tim-hot-sprockets.md @@ -1,5 +1,6 @@ --- title: "tim-hot-sprockets" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 18:24:45+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 7885960 width: 2560 height: 1440 +colours: +- "#032B35" +- "#102B2F" +- "#014A66" +- "#6FBED8" +- "#102625" +- "#062221" +- "#00060F" +- "#47758A" +- "#055E6A" +- "#190E0D" +- "#0F0F0D" +- "#0B96C0" +- "#0A0C13" exposure_mode: "Manual" program: "Manual" aperture: "6.3" diff --git a/site/content/photos/vantastival-guitarist.md b/site/content/photos/music/vantastival-guitarist.md similarity index 70% rename from site/content/photos/vantastival-guitarist.md rename to site/content/photos/music/vantastival-guitarist.md index 057232a..db1bdef 100644 --- a/site/content/photos/vantastival-guitarist.md +++ b/site/content/photos/music/vantastival-guitarist.md @@ -1,5 +1,6 @@ --- title: "vantastival-guitarist" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 13:20:30+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 2218508 width: 810 height: 1440 +colours: +- "#013947" +- "#004B5E" +- "#014E5C" +- "#303F2C" +- "#3A4327" +- "#13272E" +- "#54613A" +- "#01040B" +- "#7E706B" +- "#662821" +- "#0F131B" +- "#605F6A" +- "#2F3A32" +- "#33333B" +- "#76B5CF" +- "#ABC4CB" +- "#263834" +- "#3E677A" +- "#7F6355" +- "#461F1B" +- "#71C2D0" +- "#3C3734" +- "#677D6D" exposure_mode: "Manual" program: "Manual" aperture: "7.1" diff --git a/site/content/photos/vantastival-performer.md b/site/content/photos/music/vantastival-performer.md similarity index 74% rename from site/content/photos/vantastival-performer.md rename to site/content/photos/music/vantastival-performer.md index dfb05e8..847de30 100644 --- a/site/content/photos/vantastival-performer.md +++ b/site/content/photos/music/vantastival-performer.md @@ -1,5 +1,6 @@ --- title: "vantastival-performer" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-30 20:43:38+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 7423872 width: 2560 height: 1440 +colours: +- "#050404" +- "#CDB4B8" +- "#221915" +- "#11131B" +- "#100E0A" +- "#010405" +- "#030505" +- "#000202" +- "#8F7678" +- "#000102" +- "#D1788E" +- "#050101" +- "#040708" +- "#855159" +- "#0B0D0C" +- "#010001" +- "#140E17" +- "#222026" +- "#040504" exposure_mode: "Manual" program: "Manual" aperture: "5.3" diff --git a/site/content/photos/vantastival-singer.md b/site/content/photos/music/vantastival-singer.md similarity index 68% rename from site/content/photos/vantastival-singer.md rename to site/content/photos/music/vantastival-singer.md index 658ab04..95f563a 100644 --- a/site/content/photos/vantastival-singer.md +++ b/site/content/photos/music/vantastival-singer.md @@ -1,5 +1,6 @@ --- title: "vantastival-singer" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-05-01 17:32:07+00:00" @@ -12,6 +13,32 @@ format: "tiff" bytes: 2094628 width: 810 height: 1440 +colours: +- "#00466B" +- "#4C9263" +- "#01271C" +- "#874A4A" +- "#64B786" +- "#54CD9D" +- "#4E784C" +- "#162816" +- "#02230F" +- "#75503F" +- "#048055" +- "#39211B" +- "#011C28" +- "#15C58E" +- "#738D71" +- "#76664B" +- "#372F1C" +- "#0B1814" +- "#797E65" +- "#2D341C" +- "#3B936D" +- "#2A0B09" +- "#7B6E62" +- "#9BBE93" +- "#8BBD8B" exposure_mode: "Manual" program: "Manual" aperture: "5.6" diff --git a/site/content/photos/violinist.md b/site/content/photos/music/violinist.md similarity index 93% rename from site/content/photos/violinist.md rename to site/content/photos/music/violinist.md index 3ec81dd..c494035 100644 --- a/site/content/photos/violinist.md +++ b/site/content/photos/music/violinist.md @@ -1,5 +1,6 @@ --- title: "violinist" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-01-10 21:33:35+00:00" @@ -12,6 +13,9 @@ format: "tiff" bytes: 1577524 width: 964 height: 1440 +colours: +- "#2C2C2C" +- "#8D8D8D" exposure_mode: "Manual" program: "Manual" aperture: "10.0" diff --git a/site/content/photos/whelans.md b/site/content/photos/music/whelans.md similarity index 91% rename from site/content/photos/whelans.md rename to site/content/photos/music/whelans.md index aa2520f..ba43304 100644 --- a/site/content/photos/whelans.md +++ b/site/content/photos/music/whelans.md @@ -1,5 +1,6 @@ --- title: "whelans" +type: "photos" mediatype: "upload" description: "TBC" date: "2010-07-10 01:10:09+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 5186188 width: 2560 height: 1440 +colours: +- "#1D1D1D" +- "#777777" +- "#CBCACA" exposure_mode: "Manual" program: "Manual" aperture: "2.0" diff --git a/site/content/photos/balcony-plants.md b/site/content/photos/nature/balcony-plants.md similarity index 75% rename from site/content/photos/balcony-plants.md rename to site/content/photos/nature/balcony-plants.md index a032d7e..0e7b3f4 100644 --- a/site/content/photos/balcony-plants.md +++ b/site/content/photos/nature/balcony-plants.md @@ -1,5 +1,6 @@ --- title: "balcony-plants" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-05-29 20:59:38+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 4712332 width: 2158 height: 1440 +colours: +- "#331E1A" +- "#74493A" +- "#C2C2CE" +- "#807370" +- "#734642" +- "#353C23" +- "#6A6E5D" +- "#34302C" +- "#2B3724" +- "#363337" +- "#646E5E" +- "#566041" +- "#86848F" +- "#897D86" +- "#3F3929" +- "#C2B9C1" +- "#383F37" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.0" diff --git a/site/content/photos/bird-closeup.md b/site/content/photos/nature/bird-closeup.md similarity index 79% rename from site/content/photos/bird-closeup.md rename to site/content/photos/nature/bird-closeup.md index b4e71d2..34de20b 100644 --- a/site/content/photos/bird-closeup.md +++ b/site/content/photos/nature/bird-closeup.md @@ -1,5 +1,6 @@ --- title: "bird-closeup" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 16:07:03+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 7902888 width: 2560 height: 1440 +colours: +- "#6B7779" +- "#618A49" +- "#DCD4CB" +- "#383F40" +- "#7D857F" +- "#CBD1CC" +- "#C9CAC0" +- "#95877A" +- "#909287" +- "#8F7364" +- "#CDD5D5" +- "#343530" +- "#728952" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.3" diff --git a/site/content/photos/bird-poised.md b/site/content/photos/nature/bird-poised.md similarity index 67% rename from site/content/photos/bird-poised.md rename to site/content/photos/nature/bird-poised.md index d61e3a6..c900fac 100644 --- a/site/content/photos/bird-poised.md +++ b/site/content/photos/nature/bird-poised.md @@ -1,5 +1,6 @@ --- title: "bird-poised" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 16:01:53+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 7984332 width: 2560 height: 1440 +colours: +- "#9CB95E" +- "#6C8C38" +- "#2D281A" +- "#527E12" +- "#2B3118" +- "#24251E" +- "#78684A" +- "#D3C3B6" +- "#777D46" +- "#CC9F7D" +- "#557E3F" +- "#BFC3AE" +- "#273F07" +- "#273A40" +- "#7F826C" +- "#A2B7BF" +- "#8D846F" +- "#52707D" +- "#89A0CA" +- "#758B8F" +- "#7C794E" +- "#768779" +- "#D2B585" +- "#2C342F" +- "#B7C3B5" +- "#1B2B18" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.6" diff --git a/site/content/photos/blumen.md b/site/content/photos/nature/blumen.md similarity index 70% rename from site/content/photos/blumen.md rename to site/content/photos/nature/blumen.md index a268f2b..b7bd2e5 100644 --- a/site/content/photos/blumen.md +++ b/site/content/photos/nature/blumen.md @@ -1,5 +1,6 @@ --- title: "blumen" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-30 15:50:48+00:00" @@ -12,6 +13,29 @@ format: "tiff" bytes: 4030600 width: 2560 height: 1440 +colours: +- "#827673" +- "#83886F" +- "#C5B7B4" +- "#6B796B" +- "#82808D" +- "#353120" +- "#787B56" +- "#847380" +- "#BFC1AB" +- "#433F38" +- "#3B4027" +- "#7A7854" +- "#838D91" +- "#636C4B" +- "#A7B5BB" +- "#BBA7B4" +- "#AAABB5" +- "#C2C9C2" +- "#322420" +- "#3D463C" +- "#74664A" +- "#764E68" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/cliffs-toadstool.md b/site/content/photos/nature/cliffs-toadstool.md similarity index 72% rename from site/content/photos/cliffs-toadstool.md rename to site/content/photos/nature/cliffs-toadstool.md index 16b23f7..70ef3e6 100644 --- a/site/content/photos/cliffs-toadstool.md +++ b/site/content/photos/nature/cliffs-toadstool.md @@ -1,5 +1,6 @@ --- title: "cliffs-toadstool" +type: "photos" mediatype: "upload" description: "TBC" date: "2003-11-28 17:31:28+00:00" @@ -12,6 +13,28 @@ format: "jpg" bytes: 1790666 width: 2160 height: 1440 +colours: +- "#D3DEF4" +- "#343B1B" +- "#3B341D" +- "#242D05" +- "#3D2820" +- "#705240" +- "#725F40" +- "#D7C2B7" +- "#262005" +- "#7E6F69" +- "#25371D" +- "#566435" +- "#DEEBF7" +- "#1E0B04" +- "#6A663C" +- "#0C1F02" +- "#413D36" +- "#CEA586" +- "#616538" +- "#7E7E8F" +- "#D2AF84" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/dark-grass.md b/site/content/photos/nature/dark-grass.md similarity index 65% rename from site/content/photos/dark-grass.md rename to site/content/photos/nature/dark-grass.md index 9dc2461..cfcd138 100644 --- a/site/content/photos/dark-grass.md +++ b/site/content/photos/nature/dark-grass.md @@ -1,5 +1,6 @@ --- title: "dark-grass" +type: "photos" mediatype: "upload" description: "TBC" date: "2003-11-28 17:35:53+00:00" @@ -12,6 +13,36 @@ format: "jpg" bytes: 2521336 width: 2160 height: 1440 +colours: +- "#2A2F41" +- "#646976" +- "#4A566C" +- "#373741" +- "#B2BFC4" +- "#6C797F" +- "#E6E7D2" +- "#0E0303" +- "#C6D2C9" +- "#4F6575" +- "#1D1010" +- "#2C3A43" +- "#384041" +- "#748378" +- "#2A2825" +- "#E5DBC7" +- "#211526" +- "#A8AEBC" +- "#1F111B" +- "#060314" +- "#221D11" +- "#120E02" +- "#0F0314" +- "#10020C" +- "#808373" +- "#7E7571" +- "#E4CC93" +- "#242816" +- "#1D2C1C" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/frosted-leaves.md b/site/content/photos/nature/frosted-leaves.md similarity index 61% rename from site/content/photos/frosted-leaves.md rename to site/content/photos/nature/frosted-leaves.md index a7eba3b..d13f7cb 100644 --- a/site/content/photos/frosted-leaves.md +++ b/site/content/photos/nature/frosted-leaves.md @@ -1,5 +1,6 @@ --- title: "frosted-leaves" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-12-30 15:36:32+00:00" @@ -12,6 +13,42 @@ format: "tiff" bytes: 7016468 width: 2560 height: 1440 +colours: +- "#C6BFE0" +- "#6F816E" +- "#2A3B26" +- "#6B7B4D" +- "#372224" +- "#566E4A" +- "#C5B077" +- "#7D826C" +- "#BDB574" +- "#323C33" +- "#795259" +- "#8F8B59" +- "#8B7A56" +- "#382532" +- "#80726D" +- "#343D23" +- "#868A57" +- "#3B3933" +- "#B8BC9B" +- "#7C758B" +- "#7E667B" +- "#846250" +- "#70587E" +- "#9A8AC1" +- "#332538" +- "#6E5E8A" +- "#745167" +- "#C8ABC3" +- "#C3ABA5" +- "#788587" +- "#A6B8A5" +- "#C2947C" +- "#383039" +- "#363122" +- "#9390C8" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/howth-horse.md b/site/content/photos/nature/howth-horse.md similarity index 90% rename from site/content/photos/howth-horse.md rename to site/content/photos/nature/howth-horse.md index 0be96fa..86280fd 100644 --- a/site/content/photos/howth-horse.md +++ b/site/content/photos/nature/howth-horse.md @@ -1,5 +1,6 @@ --- title: "howth-horse" +type: "photos" mediatype: "upload" description: "TBC" date: "2004-01-28 14:31:38+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4623588 width: 2560 height: 1440 +colours: +- "#7A7A7A" +- "#3F3F3F" +- "#929392" +- "#B1B2B1" exposure_mode: "Auto" program: "Program AE" aperture: "4.0" diff --git a/site/content/photos/kerry-road-horse.md b/site/content/photos/nature/kerry-road-horse.md similarity index 71% rename from site/content/photos/kerry-road-horse.md rename to site/content/photos/nature/kerry-road-horse.md index 4e3b296..63912c7 100644 --- a/site/content/photos/kerry-road-horse.md +++ b/site/content/photos/nature/kerry-road-horse.md @@ -1,5 +1,6 @@ --- title: "kerry-road-horse" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-12-10 17:06:47+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 2077744 width: 810 height: 1440 +colours: +- "#E4E9E9" +- "#D5DCD7" +- "#E7E2DA" +- "#2E2B29" +- "#817973" +- "#C0AB7E" +- "#FAFAFB" +- "#D1D2C2" +- "#8C7B53" +- "#272529" +- "#303534" +- "#7F8074" +- "#7D867F" +- "#BAB57A" +- "#918C55" +- "#2E291D" +- "#A0B969" +- "#757D7F" +- "#241B17" +- "#8E9353" +- "#B3B975" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.8" diff --git a/site/content/photos/lahu-village-cat.md b/site/content/photos/nature/lahu-village-cat.md similarity index 77% rename from site/content/photos/lahu-village-cat.md rename to site/content/photos/nature/lahu-village-cat.md index 75d1389..ae90c0a 100644 --- a/site/content/photos/lahu-village-cat.md +++ b/site/content/photos/nature/lahu-village-cat.md @@ -1,5 +1,6 @@ --- title: "lahu-village-cat" +type: "photos" mediatype: "upload" description: "TBC" date: "2006-07-24 07:48:46+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 5039040 width: 1920 height: 1440 +colours: +- "#7B6B52" +- "#8A8073" +- "#BBB0A2" +- "#775F4D" +- "#B8C6CE" +- "#86867A" +- "#C0C1B5" +- "#403522" +- "#3D2A1F" +- "#C5CCC7" +- "#889296" +- "#423D37" +- "#86868E" +- "#B49D7F" +- "#B9BECA" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/leaves-water.md b/site/content/photos/nature/leaves-water.md similarity index 78% rename from site/content/photos/leaves-water.md rename to site/content/photos/nature/leaves-water.md index f865ff8..51020fe 100644 --- a/site/content/photos/leaves-water.md +++ b/site/content/photos/nature/leaves-water.md @@ -1,5 +1,6 @@ --- title: "leaves-water" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-04-01 15:23:22+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 4251628 width: 2560 height: 1440 +colours: +- "#010101" +- "#6B8934" +- "#0A1E01" +- "#273506" +- "#A1BE54" +- "#52740E" +- "#343F16" +- "#332D15" +- "#747D34" +- "#E1D9D0" +- "#BECB5D" +- "#0A0301" +- "#1D1904" +- "#2A1D13" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/pai-cat.md b/site/content/photos/nature/pai-cat.md similarity index 75% rename from site/content/photos/pai-cat.md rename to site/content/photos/nature/pai-cat.md index a8dfc2e..5bd3b6d 100644 --- a/site/content/photos/pai-cat.md +++ b/site/content/photos/nature/pai-cat.md @@ -1,5 +1,6 @@ --- title: "pai-cat" +type: "photos" mediatype: "upload" description: "TBC" date: "2006-08-09 01:30:52+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 4622984 width: 1920 height: 1440 +colours: +- "#815B42" +- "#C0CED0" +- "#867E74" +- "#7C6445" +- "#B7C7BF" +- "#818276" +- "#869188" +- "#38301E" +- "#CEC2B5" +- "#45220A" +- "#B99376" +- "#8D9798" +- "#3B2619" +- "#B69A7A" +- "#613112" +- "#424037" +- "#C0C3B6" exposure_mode: "Auto" program: "Program AE" aperture: "3.2" diff --git a/site/content/photos/pai-parrot.md b/site/content/photos/nature/pai-parrot.md similarity index 67% rename from site/content/photos/pai-parrot.md rename to site/content/photos/nature/pai-parrot.md index 2f6c0b4..55e2a93 100644 --- a/site/content/photos/pai-parrot.md +++ b/site/content/photos/nature/pai-parrot.md @@ -1,5 +1,6 @@ --- title: "pai-parrot" +type: "photos" mediatype: "upload" description: "TBC" date: "2006-07-29 00:26:23+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 4747924 width: 1920 height: 1440 +colours: +- "#5C6C5D" +- "#263521" +- "#2D341E" +- "#B2D0B0" +- "#767C68" +- "#3F4A40" +- "#79716A" +- "#51774A" +- "#6E797D" +- "#302B1A" +- "#D98688" +- "#43453B" +- "#C2C9AF" +- "#D2C1B8" +- "#75835B" +- "#101603" +- "#417150" +- "#081503" +- "#8DCC8A" +- "#6F6349" +- "#787B81" +- "#0F0C02" +- "#D5B270" +- "#D29272" +- "#8F4F4F" +- "#34241E" exposure_mode: "Auto" program: "Program AE" aperture: "3.2" diff --git a/site/content/photos/phi-phi-monkey.md b/site/content/photos/nature/phi-phi-monkey.md similarity index 72% rename from site/content/photos/phi-phi-monkey.md rename to site/content/photos/nature/phi-phi-monkey.md index 6c28c94..28c6a02 100644 --- a/site/content/photos/phi-phi-monkey.md +++ b/site/content/photos/nature/phi-phi-monkey.md @@ -1,5 +1,6 @@ --- title: "phi-phi-monkey" +type: "photos" mediatype: "upload" description: "TBC" date: "2006-08-02 23:52:10+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 5169292 width: 1920 height: 1440 +colours: +- "#81714F" +- "#B1C1B7" +- "#CCC3B0" +- "#8F8575" +- "#838572" +- "#163E03" +- "#7F8D80" +- "#4D7539" +- "#C4C4AF" +- "#2F361C" +- "#60773B" +- "#3C361F" +- "#B9A584" +- "#446B0C" +- "#30650B" +- "#746F4A" +- "#23351C" +- "#283907" +- "#404036" +- "#8B705C" exposure_mode: "Auto" program: "Program AE" aperture: "4.0" diff --git a/site/content/photos/phoenix-park-deer.md b/site/content/photos/nature/phoenix-park-deer.md similarity index 75% rename from site/content/photos/phoenix-park-deer.md rename to site/content/photos/nature/phoenix-park-deer.md index 36466d7..e4f505b 100644 --- a/site/content/photos/phoenix-park-deer.md +++ b/site/content/photos/nature/phoenix-park-deer.md @@ -1,5 +1,6 @@ --- title: "phoenix-park-deer" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-01-26 12:08:33+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 6595352 width: 2560 height: 1440 +colours: +- "#C1BC81" +- "#B7BD7A" +- "#7B7267" +- "#6D6F62" +- "#C6B583" +- "#43413A" +- "#A9BB6E" +- "#C5B9A3" +- "#353F34" +- "#C3C29C" +- "#636D60" +- "#897955" +- "#392E27" +- "#939958" +- "#959057" +- "#839359" +- "#324433" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/plant-labels.md b/site/content/photos/nature/plant-labels.md similarity index 65% rename from site/content/photos/plant-labels.md rename to site/content/photos/nature/plant-labels.md index b414516..75e176b 100644 --- a/site/content/photos/plant-labels.md +++ b/site/content/photos/nature/plant-labels.md @@ -1,5 +1,6 @@ --- title: "plant-labels" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-04-01 15:33:03+00:00" @@ -12,6 +13,36 @@ format: "tiff" bytes: 5659076 width: 2560 height: 1440 +colours: +- "#B6BCCF" +- "#2E3534" +- "#727787" +- "#212226" +- "#DFC608" +- "#22311C" +- "#667177" +- "#2E371C" +- "#192126" +- "#171C25" +- "#657740" +- "#CBBF61" +- "#CFC6B9" +- "#5B6884" +- "#30302A" +- "#C5C5B0" +- "#6E7A70" +- "#DCC575" +- "#7F8543" +- "#7C7F6D" +- "#8B8645" +- "#837C75" +- "#4D6271" +- "#8D810A" +- "#243406" +- "#B4BBC0" +- "#516C43" +- "#031B26" +- "#302D1B" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/rupert-clarissa.md b/site/content/photos/nature/rupert-clarissa.md similarity index 79% rename from site/content/photos/rupert-clarissa.md rename to site/content/photos/nature/rupert-clarissa.md index b32bd4e..a335f13 100644 --- a/site/content/photos/rupert-clarissa.md +++ b/site/content/photos/nature/rupert-clarissa.md @@ -1,5 +1,6 @@ --- title: "rupert-clarissa" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-07 14:05:12+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 6569048 width: 2560 height: 1440 +colours: +- "#785A45" +- "#38261A" +- "#CDC3BB" +- "#8A7F74" +- "#3F3426" +- "#C69A7A" +- "#715E47" +- "#322D29" +- "#C5C5BD" +- "#707181" +- "#B8BCCC" +- "#2E2C32" +- "#B9C8D1" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/schneedrop.md b/site/content/photos/nature/schneedrop.md similarity index 90% rename from site/content/photos/schneedrop.md rename to site/content/photos/nature/schneedrop.md index 99396ea..c64987d 100644 --- a/site/content/photos/schneedrop.md +++ b/site/content/photos/nature/schneedrop.md @@ -1,5 +1,6 @@ --- title: "schneedrop" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-01-18 17:18:04+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4618248 width: 2560 height: 1440 +colours: +- "#3F4249" +- "#515862" +- "#3F454A" +- "#515B65" exposure_mode: "Auto" program: "Program AE" aperture: "3.2" diff --git a/site/content/photos/spirit-of-folk-bird.md b/site/content/photos/nature/spirit-of-folk-bird.md similarity index 83% rename from site/content/photos/spirit-of-folk-bird.md rename to site/content/photos/nature/spirit-of-folk-bird.md index 0a1207c..5b53f8f 100644 --- a/site/content/photos/spirit-of-folk-bird.md +++ b/site/content/photos/nature/spirit-of-folk-bird.md @@ -1,5 +1,6 @@ --- title: "spirit-of-folk-bird" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 16:00:49+00:00" @@ -12,6 +13,17 @@ format: "tiff" bytes: 9860444 width: 2560 height: 1440 +colours: +- "#609B04" +- "#88B445" +- "#79AF0F" +- "#343C3A" +- "#657174" +- "#75A435" +- "#3A7E00" +- "#E9EEF0" +- "#717A73" +- "#C3C9B4" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "16.0" diff --git a/site/content/photos/aideens-rock-anna.md b/site/content/photos/people/aideens-rock-anna.md similarity index 73% rename from site/content/photos/aideens-rock-anna.md rename to site/content/photos/people/aideens-rock-anna.md index fe56e41..667a53b 100644 --- a/site/content/photos/aideens-rock-anna.md +++ b/site/content/photos/people/aideens-rock-anna.md @@ -1,5 +1,6 @@ --- title: "aideens-rock-anna" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-06 20:22:54+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 1867052 width: 810 height: 1440 +colours: +- "#191916" +- "#D9CFC6" +- "#69716B" +- "#778183" +- "#000104" +- "#897E75" +- "#6D6F65" +- "#404542" +- "#ACB7BD" +- "#0F1920" +- "#866E5B" +- "#272118" +- "#DADBD4" +- "#01070B" +- "#CDD4CE" +- "#1D2116" +- "#151E12" +- "#7E6C55" +- "#33261E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/alberto-blindfolded.md b/site/content/photos/people/alberto-blindfolded.md similarity index 70% rename from site/content/photos/alberto-blindfolded.md rename to site/content/photos/people/alberto-blindfolded.md index 5b9955a..d7dbc29 100644 --- a/site/content/photos/alberto-blindfolded.md +++ b/site/content/photos/people/alberto-blindfolded.md @@ -1,5 +1,6 @@ --- title: "alberto-blindfolded" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 09:45:55+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 1849448 width: 961 height: 1440 +colours: +- "#798F4D" +- "#1A2329" +- "#A4B965" +- "#6F777A" +- "#191F27" +- "#3B3731" +- "#756760" +- "#CDA18B" +- "#2E3437" +- "#2E3137" +- "#E0C1B8" +- "#5A606A" +- "#806451" +- "#B7BFC2" +- "#4A5E6E" +- "#888E5D" +- "#3F4826" +- "#526276" +- "#6B6E5B" +- "#BBC47B" +- "#747F76" +- "#7A6B51" +- "#3F322A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/alberto-david-unicorns.md b/site/content/photos/people/alberto-david-unicorns.md similarity index 78% rename from site/content/photos/alberto-david-unicorns.md rename to site/content/photos/people/alberto-david-unicorns.md index 89864b5..469acc7 100644 --- a/site/content/photos/alberto-david-unicorns.md +++ b/site/content/photos/people/alberto-david-unicorns.md @@ -1,5 +1,6 @@ --- title: "alberto-david-unicorns" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 19:44:29+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 3820968 width: 2158 height: 1440 +colours: +- "#0D140A" +- "#1A110C" +- "#040403" +- "#12160B" +- "#080A0F" +- "#010205" +- "#13110B" +- "#130703" +- "#7F4F37" +- "#D79574" +- "#000101" +- "#080D10" +- "#010407" +- "#171418" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/alberto-dschung.md b/site/content/photos/people/alberto-dschung.md similarity index 66% rename from site/content/photos/alberto-dschung.md rename to site/content/photos/people/alberto-dschung.md index 79a87ea..1253d36 100644 --- a/site/content/photos/alberto-dschung.md +++ b/site/content/photos/people/alberto-dschung.md @@ -1,5 +1,6 @@ --- title: "alberto-dschung" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 09:33:21+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 4941772 width: 2158 height: 1440 +colours: +- "#6C834A" +- "#5E8243" +- "#737560" +- "#99B768" +- "#162027" +- "#3E3C34" +- "#303735" +- "#756C62" +- "#6A797D" +- "#3D4629" +- "#1E252F" +- "#727652" +- "#283C1D" +- "#4C5E75" +- "#88B368" +- "#AFBDC3" +- "#DEC6C2" +- "#3C3729" +- "#7B5D4D" +- "#4A6376" +- "#392921" +- "#617062" +- "#28292E" +- "#777454" +- "#6B707E" +- "#0A1110" +- "#776C54" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/anna-candid.md b/site/content/photos/people/anna-candid.md similarity index 77% rename from site/content/photos/anna-candid.md rename to site/content/photos/people/anna-candid.md index 5ca4594..5fe7831 100644 --- a/site/content/photos/anna-candid.md +++ b/site/content/photos/people/anna-candid.md @@ -1,5 +1,6 @@ --- title: "anna-candid" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-20 15:54:51+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 3239032 width: 2158 height: 1440 +colours: +- "#776449" +- "#7E5D46" +- "#3B4322" +- "#3F3422" +- "#899144" +- "#3A281D" +- "#BD9074" +- "#5C6A2E" +- "#B4B856" +- "#C9C66A" +- "#36372D" +- "#81846C" +- "#949159" +- "#C6A47C" +- "#292F28" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/anna-cite-foche.md b/site/content/photos/people/anna-cite-foche.md similarity index 83% rename from site/content/photos/anna-cite-foche.md rename to site/content/photos/people/anna-cite-foche.md index ff6035f..383cd7f 100644 --- a/site/content/photos/anna-cite-foche.md +++ b/site/content/photos/people/anna-cite-foche.md @@ -1,5 +1,6 @@ --- title: "anna-cite-foche" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-21 18:56:23+00:00" @@ -12,6 +13,17 @@ format: "tiff" bytes: 1824672 width: 961 height: 1440 +colours: +- "#90684F" +- "#CBB5AF" +- "#B48B74" +- "#291C13" +- "#4A5E6E" +- "#171614" +- "#28333B" +- "#13100B" +- "#212527" +- "#232428" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/anna-grogans-pint.md b/site/content/photos/people/anna-grogans-pint.md similarity index 90% rename from site/content/photos/anna-grogans-pint.md rename to site/content/photos/people/anna-grogans-pint.md index 39eff5d..2600e51 100644 --- a/site/content/photos/anna-grogans-pint.md +++ b/site/content/photos/people/anna-grogans-pint.md @@ -1,5 +1,6 @@ --- title: "anna-grogans-pint" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-07 18:29:47+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 2296292 width: 2158 height: 1440 +colours: +- "#3A3A3A" +- "#7E7D7D" +- "#E5E5E5" +- "#727271" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/anna-light-museum.md b/site/content/photos/people/anna-light-museum.md similarity index 72% rename from site/content/photos/anna-light-museum.md rename to site/content/photos/people/anna-light-museum.md index 1385d73..c86d0dd 100644 --- a/site/content/photos/anna-light-museum.md +++ b/site/content/photos/people/anna-light-museum.md @@ -1,5 +1,6 @@ --- title: "anna-light-museum" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 16:55:50+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 5683360 width: 2560 height: 1440 +colours: +- "#01000E" +- "#020ADF" +- "#020202" +- "#FBF7F0" +- "#2E1F1D" +- "#E1CC92" +- "#1A0F17" +- "#F8F8EB" +- "#736142" +- "#392F1D" +- "#765948" +- "#1D1223" +- "#010189" +- "#0B0202" +- "#1D1431" +- "#08010C" +- "#090107" +- "#785055" +- "#C68F77" +- "#C88088" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/anna-portfolio-closeup.md b/site/content/photos/people/anna-portfolio-closeup.md similarity index 77% rename from site/content/photos/anna-portfolio-closeup.md rename to site/content/photos/people/anna-portfolio-closeup.md index fe9bb17..8f44d12 100644 --- a/site/content/photos/anna-portfolio-closeup.md +++ b/site/content/photos/people/anna-portfolio-closeup.md @@ -1,5 +1,6 @@ --- title: "anna-portfolio-closeup" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-05-26 20:25:56+00:00" @@ -12,6 +13,23 @@ format: "tiff" bytes: 4208464 width: 2158 height: 1440 +colours: +- "#D7D9E2" +- "#D7C4BC" +- "#897B77" +- "#DDB89D" +- "#EBF3EF" +- "#F2F6F7" +- "#79594C" +- "#D9D2D7" +- "#3D2925" +- "#8D8C96" +- "#342E2C" +- "#01070A" +- "#010307" +- "#0A0E15" +- "#080F15" +- "#000101" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/anna-portfolio-desk.md b/site/content/photos/people/anna-portfolio-desk.md similarity index 75% rename from site/content/photos/anna-portfolio-desk.md rename to site/content/photos/people/anna-portfolio-desk.md index cd9218e..d3c0e5f 100644 --- a/site/content/photos/anna-portfolio-desk.md +++ b/site/content/photos/people/anna-portfolio-desk.md @@ -1,5 +1,6 @@ --- title: "anna-portfolio-desk" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-05-26 18:04:33+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 5460628 width: 2158 height: 1440 +colours: +- "#7C766F" +- "#D6D3CF" +- "#CFD3D4" +- "#C3C6C4" +- "#C9C9C5" +- "#898982" +- "#DADBDE" +- "#47423C" +- "#939894" +- "#6A5546" +- "#453427" +- "#8E9394" +- "#E2E0E2" +- "#8C8C90" +- "#908C8F" +- "#6B5A48" +- "#382D1F" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/anna-portrait.md b/site/content/photos/people/anna-portrait.md similarity index 70% rename from site/content/photos/anna-portrait.md rename to site/content/photos/people/anna-portrait.md index c66efc7..2f6418f 100644 --- a/site/content/photos/anna-portrait.md +++ b/site/content/photos/people/anna-portrait.md @@ -1,5 +1,6 @@ --- title: "anna-portrait" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-05-21 19:28:23+00:00" @@ -12,6 +13,29 @@ format: "tiff" bytes: 1762448 width: 961 height: 1440 +colours: +- "#7D5D4B" +- "#111D21" +- "#CFB7AF" +- "#6D5B3B" +- "#3F3723" +- "#34231A" +- "#BF9584" +- "#393730" +- "#356573" +- "#2D3431" +- "#7A7540" +- "#766A5F" +- "#394123" +- "#0E1614" +- "#596932" +- "#6E713D" +- "#8A5555" +- "#172115" +- "#29390A" +- "#68685A" +- "#05151B" +- "#BD8685" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/anna-shoot-facing-camera.md b/site/content/photos/people/anna-shoot-facing-camera.md similarity index 67% rename from site/content/photos/anna-shoot-facing-camera.md rename to site/content/photos/people/anna-shoot-facing-camera.md index 631d23d..81812ae 100644 --- a/site/content/photos/anna-shoot-facing-camera.md +++ b/site/content/photos/people/anna-shoot-facing-camera.md @@ -1,5 +1,6 @@ --- title: "anna-shoot-facing-camera" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-30 19:03:08+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 2336864 width: 961 height: 1440 +colours: +- "#E4D5CA" +- "#877974" +- "#2C331C" +- "#BBC3D4" +- "#3A3731" +- "#77796A" +- "#2A271A" +- "#DDB291" +- "#7D6150" +- "#DFBE92" +- "#5C6F8C" +- "#788179" +- "#526F85" +- "#B9C3C8" +- "#839ABA" +- "#BFB0BB" +- "#3B2A23" +- "#837053" +- "#566138" +- "#7B878C" +- "#7D7E8B" +- "#202D18" +- "#8E7C8A" +- "#D2D3C9" +- "#81A7C4" +- "#383E38" +- "#B4BBB6" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/anna-shoot-flowers.md b/site/content/photos/people/anna-shoot-flowers.md similarity index 74% rename from site/content/photos/anna-shoot-flowers.md rename to site/content/photos/people/anna-shoot-flowers.md index e07913d..185772c 100644 --- a/site/content/photos/anna-shoot-flowers.md +++ b/site/content/photos/people/anna-shoot-flowers.md @@ -1,5 +1,6 @@ --- title: "anna-shoot-flowers" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-30 15:42:00+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 5450280 width: 2560 height: 1440 +colours: +- "#7E5A40" +- "#CEC0B7" +- "#867A71" +- "#77684D" +- "#B7B4C6" +- "#C59A7B" +- "#CABBC7" +- "#402B1E" +- "#898295" +- "#433725" +- "#80816F" +- "#878357" +- "#8D7C8A" +- "#78854D" +- "#848B53" +- "#413C36" +- "#C3C2B4" +- "#C0A078" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/anna-shoot-hair-swirl.md b/site/content/photos/people/anna-shoot-hair-swirl.md similarity index 74% rename from site/content/photos/anna-shoot-hair-swirl.md rename to site/content/photos/people/anna-shoot-hair-swirl.md index 95a1911..02062bf 100644 --- a/site/content/photos/anna-shoot-hair-swirl.md +++ b/site/content/photos/people/anna-shoot-hair-swirl.md @@ -1,5 +1,6 @@ --- title: "anna-shoot-hair-swirl" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-03-30 19:05:26+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 1543724 width: 961 height: 1440 +colours: +- "#7E6E69" +- "#C1C9CD" +- "#808B8D" +- "#C7B5AF" +- "#B4BCCD" +- "#787F7A" +- "#776053" +- "#44423B" +- "#3C433F" +- "#787971" +- "#483A30" +- "#596C86" +- "#B89381" +- "#242A1B" +- "#547084" +- "#7E8494" +- "#B4B9B7" +- "#889FBE" +- "#182214" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/anna_pier.md b/site/content/photos/people/anna_pier.md similarity index 72% rename from site/content/photos/anna_pier.md rename to site/content/photos/people/anna_pier.md index f2ffec9..3758fe3 100644 --- a/site/content/photos/anna_pier.md +++ b/site/content/photos/people/anna_pier.md @@ -1,5 +1,6 @@ --- title: "anna_pier" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-04-14 20:14:24" @@ -12,6 +13,26 @@ format: "tiff" bytes: 6668880 width: 2158 height: 1440 +colours: +- "#8FB0CB" +- "#B9D2E3" +- "#8EA8C7" +- "#AEBFD6" +- "#7D7E89" +- "#527A95" +- "#7A878B" +- "#7D8A82" +- "#898282" +- "#627997" +- "#867D84" +- "#85877F" +- "#AFBDB6" +- "#02091B" +- "#191A29" +- "#161514" +- "#36333B" +- "#031B26" +- "#192C1B" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: undefined diff --git a/site/content/photos/canal.md b/site/content/photos/people/canal.md similarity index 65% rename from site/content/photos/canal.md rename to site/content/photos/people/canal.md index ddf46cc..349c102 100644 --- a/site/content/photos/canal.md +++ b/site/content/photos/people/canal.md @@ -1,5 +1,6 @@ --- title: "canal" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-20 18:19:34+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 3264888 width: 961 height: 1440 +colours: +- "#D4C7BB" +- "#65783D" +- "#35401E" +- "#847B73" +- "#2C4120" +- "#527042" +- "#82624E" +- "#332F1F" +- "#383530" +- "#777D40" +- "#C89B7F" +- "#7F6B4C" +- "#D2D4BE" +- "#A6B86C" +- "#3B2921" +- "#293808" +- "#7E8073" +- "#798579" +- "#B4BE6B" +- "#7C7846" +- "#303734" +- "#D6B27D" +- "#7E8789" +- "#58770E" +- "#7C4341" +- "#797B83" +- "#2C2B30" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.0" diff --git a/site/content/photos/chloe.md b/site/content/photos/people/chloe.md similarity index 83% rename from site/content/photos/chloe.md rename to site/content/photos/people/chloe.md index 65ab9a0..ccb022f 100644 --- a/site/content/photos/chloe.md +++ b/site/content/photos/people/chloe.md @@ -1,5 +1,6 @@ --- title: "chloe" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-25 15:02:26+00:00" @@ -12,6 +13,16 @@ format: "tiff" bytes: 3844928 width: 1321 height: 1440 +colours: +- "#35231A" +- "#775445" +- "#866F6A" +- "#CFB4B3" +- "#7F575A" +- "#C69582" +- "#C18B8F" +- "#BB7FA6" +- "#D6B7CA" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.0" diff --git a/site/content/photos/christina-berlin.md b/site/content/photos/people/christina-berlin.md similarity index 73% rename from site/content/photos/christina-berlin.md rename to site/content/photos/people/christina-berlin.md index 361b609..c83b7a7 100644 --- a/site/content/photos/christina-berlin.md +++ b/site/content/photos/people/christina-berlin.md @@ -1,5 +1,6 @@ --- title: "christina-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 15:29:32+00:00" @@ -12,6 +13,26 @@ format: "tiff" bytes: 1693840 width: 810 height: 1440 +colours: +- "#7E6C53" +- "#76786C" +- "#D2DADE" +- "#84776E" +- "#C6BAB4" +- "#805F47" +- "#C2C7D3" +- "#3D3426" +- "#CD936D" +- "#39251D" +- "#777E78" +- "#B99E78" +- "#393732" +- "#747883" +- "#748085" +- "#7B4052" +- "#181D26" +- "#242429" +- "#311425" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.0" diff --git a/site/content/photos/christina-light-museum.md b/site/content/photos/people/christina-light-museum.md similarity index 76% rename from site/content/photos/christina-light-museum.md rename to site/content/photos/people/christina-light-museum.md index e0c4ce0..b278b76 100644 --- a/site/content/photos/christina-light-museum.md +++ b/site/content/photos/people/christina-light-museum.md @@ -1,5 +1,6 @@ --- title: "christina-light-museum" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 17:00:35+00:00" @@ -12,6 +13,23 @@ format: "tiff" bytes: 6499376 width: 2560 height: 1440 +colours: +- "#02011E" +- "#021392" +- "#010FC6" +- "#181025" +- "#1F1225" +- "#FEFEFA" +- "#342623" +- "#261723" +- "#756037" +- "#E9CD8F" +- "#372D2D" +- "#443721" +- "#866350" +- "#2E252D" +- "#14051C" +- "#383199" exposure_mode: "Manual" program: "Manual" aperture: "11.0" diff --git a/site/content/photos/christina-matt-berlin.md b/site/content/photos/people/christina-matt-berlin.md similarity index 73% rename from site/content/photos/christina-matt-berlin.md rename to site/content/photos/people/christina-matt-berlin.md index bd89a18..dfa87b5 100644 --- a/site/content/photos/christina-matt-berlin.md +++ b/site/content/photos/people/christina-matt-berlin.md @@ -1,5 +1,6 @@ --- title: "christina-matt-berlin" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 15:31:31+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 4352156 width: 2158 height: 1440 +colours: +- "#82786E" +- "#CFC0B5" +- "#7E6D52" +- "#2A2826" +- "#876754" +- "#C39378" +- "#CCAE7F" +- "#3E3426" +- "#2A292D" +- "#757880" +- "#70777B" +- "#382520" +- "#2F3333" +- "#7D7E74" +- "#C7C7CE" +- "#757E75" +- "#C5D0D4" +- "#4B607A" +- "#783A46" +- "#C7C8BD" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/crew-camera-checking.md b/site/content/photos/people/crew-camera-checking.md similarity index 70% rename from site/content/photos/crew-camera-checking.md rename to site/content/photos/people/crew-camera-checking.md index 5271d84..9b6273e 100644 --- a/site/content/photos/crew-camera-checking.md +++ b/site/content/photos/people/crew-camera-checking.md @@ -1,5 +1,6 @@ --- title: "crew-camera-checking" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 18:08:23+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 4941520 width: 2158 height: 1440 +colours: +- "#162730" +- "#8EC66C" +- "#316687" +- "#D1C2B6" +- "#A8CA71" +- "#4E8FBA" +- "#806553" +- "#5E9345" +- "#877B6F" +- "#3A3121" +- "#E4EBF1" +- "#7D6B52" +- "#2E3535" +- "#382A22" +- "#3B3833" +- "#C09A83" +- "#E1E6EE" +- "#C4C8A7" +- "#C0A985" +- "#759049" +- "#C1C983" +- "#101A19" +- "#808172" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/dad-lauren.md b/site/content/photos/people/dad-lauren.md similarity index 90% rename from site/content/photos/dad-lauren.md rename to site/content/photos/people/dad-lauren.md index 082d5cf..2a08b2c 100644 --- a/site/content/photos/dad-lauren.md +++ b/site/content/photos/people/dad-lauren.md @@ -1,5 +1,6 @@ --- title: "dad-lauren" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-02-19 14:04:33+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 2929704 width: 2158 height: 1440 +colours: +- "#272727" +- "#7D7D7D" +- "#D8D8D8" +- "#777776" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/dan_and_luke_kitchen.md b/site/content/photos/people/dan_and_luke_kitchen.md similarity index 68% rename from site/content/photos/dan_and_luke_kitchen.md rename to site/content/photos/people/dan_and_luke_kitchen.md index 4ff6277..4892b54 100644 --- a/site/content/photos/dan_and_luke_kitchen.md +++ b/site/content/photos/people/dan_and_luke_kitchen.md @@ -1,5 +1,6 @@ --- title: "dan_and_luke_kitchen" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-25 15:07:07+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 9296220 width: 2561 height: 1440 +colours: +- "#F1DDD4" +- "#7F523C" +- "#DDA27B" +- "#35221D" +- "#773B0A" +- "#10111C" +- "#011026" +- "#3A1A07" +- "#DADCE5" +- "#221D1C" +- "#8D4C06" +- "#CF780C" +- "#28242B" +- "#E4EAED" +- "#40517D" +- "#EBB370" +- "#826F6D" +- "#C66D20" +- "#774642" +- "#DCD3DA" +- "#181016" +- "#01477C" +- "#130E15" +- "#6F6E7F" +- "#011A32" +- "#846743" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/dan_sophie.md b/site/content/photos/people/dan_sophie.md similarity index 67% rename from site/content/photos/dan_sophie.md rename to site/content/photos/people/dan_sophie.md index 28c8223..529f244 100644 --- a/site/content/photos/dan_sophie.md +++ b/site/content/photos/people/dan_sophie.md @@ -1,5 +1,6 @@ --- title: "dan_sophie" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-01 14:07:46+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 2137540 width: 810 height: 1440 +colours: +- "#85553A" +- "#BC8964" +- "#8A8080" +- "#43281D" +- "#979096" +- "#6A3A16" +- "#222937" +- "#E1C5BB" +- "#3E597F" +- "#5E96C6" +- "#C7C9D8" +- "#401610" +- "#003A82" +- "#0078D5" +- "#313139" +- "#005ABD" +- "#011532" +- "#7C4747" +- "#C39667" +- "#638CBE" +- "#7E7C8B" +- "#CE8D8B" +- "#3E351E" +- "#362E2D" +- "#021F38" +- "#C8D160" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/david-oliveira.md b/site/content/photos/people/david-oliveira.md similarity index 69% rename from site/content/photos/david-oliveira.md rename to site/content/photos/people/david-oliveira.md index c5170fa..42240af 100644 --- a/site/content/photos/david-oliveira.md +++ b/site/content/photos/people/david-oliveira.md @@ -1,5 +1,6 @@ --- title: "david-oliveira" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 18:45:21+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 6419976 width: 2158 height: 1440 +colours: +- "#AFB745" +- "#2C2314" +- "#886243" +- "#83683E" +- "#C0B94F" +- "#909934" +- "#C9976E" +- "#838E13" +- "#C8A669" +- "#928C37" +- "#201805" +- "#3C2819" +- "#2E2D27" +- "#7A8E33" +- "#7C726C" +- "#898313" +- "#677D10" +- "#171A0D" +- "#261406" +- "#232903" +- "#2A2F2E" +- "#A6B020" +- "#BDB31E" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/dschung-hand.md b/site/content/photos/people/dschung-hand.md similarity index 75% rename from site/content/photos/dschung-hand.md rename to site/content/photos/people/dschung-hand.md index ae5f3a6..d372cf5 100644 --- a/site/content/photos/dschung-hand.md +++ b/site/content/photos/people/dschung-hand.md @@ -1,5 +1,6 @@ --- title: "dschung-hand" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 09:45:27+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 1079264 width: 810 height: 1440 +colours: +- "#7A8F47" +- "#393E3B" +- "#615750" +- "#6A6F6C" +- "#7A5B49" +- "#3D3A35" +- "#777F7F" +- "#9EB358" +- "#8D9354" +- "#3F2D22" +- "#BE8C76" +- "#7E6F52" +- "#EAD0CC" +- "#312618" +- "#928D5A" +- "#77796E" +- "#ADBB5B" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/dschung-nori.md b/site/content/photos/people/dschung-nori.md similarity index 71% rename from site/content/photos/dschung-nori.md rename to site/content/photos/people/dschung-nori.md index 2ff5ebd..78c4775 100644 --- a/site/content/photos/dschung-nori.md +++ b/site/content/photos/people/dschung-nori.md @@ -1,5 +1,6 @@ --- title: "dschung-nori" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 19:17:39+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 6304396 width: 2560 height: 1440 +colours: +- "#C8D26F" +- "#C2A086" +- "#B2C867" +- "#222927" +- "#826C4B" +- "#0A100A" +- "#D6C1AB" +- "#C3A981" +- "#0F1715" +- "#757B39" +- "#8F7158" +- "#6A7B38" +- "#39311D" +- "#C5BF72" +- "#2D3219" +- "#6A890A" +- "#888449" +- "#1B2528" +- "#32332B" +- "#A8BC11" +- "#020701" exposure_mode: "Auto" program: "Program AE" aperture: "4.5" diff --git a/site/content/photos/dschung-standing.md b/site/content/photos/people/dschung-standing.md similarity index 71% rename from site/content/photos/dschung-standing.md rename to site/content/photos/people/dschung-standing.md index 0376bcc..68ca7f9 100644 --- a/site/content/photos/dschung-standing.md +++ b/site/content/photos/people/dschung-standing.md @@ -1,5 +1,6 @@ --- title: "dschung-standing" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 09:41:01+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 2400744 width: 810 height: 1440 +colours: +- "#857870" +- "#788E4A" +- "#46403C" +- "#ADC36E" +- "#CCD585" +- "#BDA99E" +- "#8C7160" +- "#CAD0D1" +- "#C29A84" +- "#7B827D" +- "#797A6B" +- "#12171B" +- "#181C22" +- "#BDC3C0" +- "#868C59" +- "#747D7F" +- "#2E3332" +- "#87765C" +- "#C3BF85" +- "#25262B" +- "#BDAA83" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/eavan.md b/site/content/photos/people/eavan.md similarity index 65% rename from site/content/photos/eavan.md rename to site/content/photos/people/eavan.md index 23fbd20..f8acaa7 100644 --- a/site/content/photos/eavan.md +++ b/site/content/photos/people/eavan.md @@ -1,5 +1,6 @@ --- title: "eavan" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 15:33:16+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 1938192 width: 810 height: 1440 +colours: +- "#7E7168" +- "#101C25" +- "#DAC2B2" +- "#CCAB91" +- "#56790B" +- "#3C3935" +- "#141A23" +- "#867359" +- "#627D2E" +- "#89705F" +- "#031018" +- "#362521" +- "#C9AD8A" +- "#426579" +- "#010307" +- "#2D2D32" +- "#323635" +- "#324709" +- "#333F19" +- "#68685C" +- "#373123" +- "#646874" +- "#7F8640" +- "#BFB1BC" +- "#76A3BE" +- "#868250" +- "#4A5971" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/finucane-family.md b/site/content/photos/people/finucane-family.md similarity index 90% rename from site/content/photos/finucane-family.md rename to site/content/photos/people/finucane-family.md index 32fd0aa..97a80a9 100644 --- a/site/content/photos/finucane-family.md +++ b/site/content/photos/people/finucane-family.md @@ -1,5 +1,6 @@ --- title: "finucane-family" +type: "photos" mediatype: "upload" description: "TBC" date: "2017-02-19 14:25:31+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3006772 width: 2560 height: 1440 +colours: +- "#E3E3E3" +- "#262626" +- "#7F7F7F" +- "#E6E6E5" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/francis-wine-glass.md b/site/content/photos/people/francis-wine-glass.md similarity index 92% rename from site/content/photos/francis-wine-glass.md rename to site/content/photos/people/francis-wine-glass.md index 58cacf3..b436094 100644 --- a/site/content/photos/francis-wine-glass.md +++ b/site/content/photos/people/francis-wine-glass.md @@ -1,5 +1,6 @@ --- title: "francis-wine-glass" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-20 01:34:34+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 2398176 width: 1269 height: 1440 +colours: +- "#1F1F1F" +- "#777777" +- "#6D6D6C" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/german-actress-forest.md b/site/content/photos/people/german-actress-forest.md similarity index 77% rename from site/content/photos/german-actress-forest.md rename to site/content/photos/people/german-actress-forest.md index 12a1b67..2f808c2 100644 --- a/site/content/photos/german-actress-forest.md +++ b/site/content/photos/people/german-actress-forest.md @@ -1,5 +1,6 @@ --- title: "german-actress-forest" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 18:37:23+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 1849760 width: 810 height: 1440 +colours: +- "#C49774" +- "#7C8633" +- "#2A2925" +- "#806D4D" +- "#CFAD7E" +- "#B3B84F" +- "#687927" +- "#282216" +- "#1A1D1B" +- "#ECDCC4" +- "#7E7941" +- "#15170B" +- "#8D674A" +- "#BBB66F" +- "#746C5F" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/grogans-finger-chomp.md b/site/content/photos/people/grogans-finger-chomp.md similarity index 70% rename from site/content/photos/grogans-finger-chomp.md rename to site/content/photos/people/grogans-finger-chomp.md index 08bed82..d5be592 100644 --- a/site/content/photos/grogans-finger-chomp.md +++ b/site/content/photos/people/grogans-finger-chomp.md @@ -1,5 +1,6 @@ --- title: "grogans-finger-chomp" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-16 17:35:41+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 5232548 width: 2151 height: 1440 +colours: +- "#0F131B" +- "#DACACE" +- "#2D191B" +- "#836E70" +- "#170306" +- "#29262C" +- "#0D141A" +- "#7B5255" +- "#362F2F" +- "#020409" +- "#120B10" +- "#8F6B60" +- "#0A070B" +- "#BE8E7E" +- "#666874" +- "#3D5472" +- "#2A2F2F" +- "#04101A" +- "#B6C4CA" +- "#7F8680" +- "#B4BBC9" +- "#758083" +- "#020002" exposure_mode: "Manual" program: "Manual" aperture: "8.0" diff --git a/site/content/photos/jonathan-cliffs.md b/site/content/photos/people/jonathan-cliffs.md similarity index 68% rename from site/content/photos/jonathan-cliffs.md rename to site/content/photos/people/jonathan-cliffs.md index 61014e4..878c99c 100644 --- a/site/content/photos/jonathan-cliffs.md +++ b/site/content/photos/people/jonathan-cliffs.md @@ -1,5 +1,6 @@ --- title: "jonathan-cliffs" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-01 18:25:05+00:00" @@ -12,6 +13,32 @@ format: "tiff" bytes: 4324200 width: 2158 height: 1440 +colours: +- "#8A7E5C" +- "#7B774F" +- "#5B693A" +- "#3E4822" +- "#6A6E43" +- "#23301E" +- "#BBC9DB" +- "#49442A" +- "#826355" +- "#C9ADA5" +- "#315079" +- "#794252" +- "#095277" +- "#14222D" +- "#84766A" +- "#47423E" +- "#323C35" +- "#182536" +- "#6D7C82" +- "#05233B" +- "#376882" +- "#B8907E" +- "#A8B9C7" +- "#2D400B" +- "#7594BD" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/jonathan-mum.md b/site/content/photos/people/jonathan-mum.md similarity index 68% rename from site/content/photos/jonathan-mum.md rename to site/content/photos/people/jonathan-mum.md index bc3dfa3..ec61e2c 100644 --- a/site/content/photos/jonathan-mum.md +++ b/site/content/photos/people/jonathan-mum.md @@ -1,5 +1,6 @@ --- title: "jonathan-mum" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-01 18:47:48+00:00" @@ -12,6 +13,32 @@ format: "tiff" bytes: 4551212 width: 2158 height: 1440 +colours: +- "#805C48" +- "#715E44" +- "#477A94" +- "#37241C" +- "#80776C" +- "#101927" +- "#071527" +- "#365174" +- "#33291B" +- "#77550D" +- "#BC8675" +- "#0D4E7F" +- "#383330" +- "#082036" +- "#7C808D" +- "#707D82" +- "#5A95B1" +- "#280E08" +- "#ADB0BA" +- "#BCABA3" +- "#845253" +- "#BE847C" +- "#B4B9BC" +- "#14222C" +- "#808077" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/jonathan.md b/site/content/photos/people/jonathan.md similarity index 70% rename from site/content/photos/jonathan.md rename to site/content/photos/people/jonathan.md index 20eacd3..98f5819 100644 --- a/site/content/photos/jonathan.md +++ b/site/content/photos/people/jonathan.md @@ -1,5 +1,6 @@ --- title: "jonathan" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-01 18:03:00+00:00" @@ -12,6 +13,29 @@ format: "tiff" bytes: 2554920 width: 961 height: 1440 +colours: +- "#203518" +- "#2F3A1D" +- "#416132" +- "#0C1E05" +- "#4C6030" +- "#22211C" +- "#0A4774" +- "#3A5780" +- "#1F2521" +- "#315E7F" +- "#88736E" +- "#202E41" +- "#BFABA4" +- "#322F1F" +- "#8A5362" +- "#1C2D39" +- "#637869" +- "#04253F" +- "#83675A" +- "#203009" +- "#8B5576" +- "#5499BF" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/jumper.md b/site/content/photos/people/jumper.md similarity index 75% rename from site/content/photos/jumper.md rename to site/content/photos/people/jumper.md index dc3c108..149a0bf 100644 --- a/site/content/photos/jumper.md +++ b/site/content/photos/people/jumper.md @@ -1,5 +1,6 @@ --- title: "jumper" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-27 19:48:57+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 1547556 width: 810 height: 1440 +colours: +- "#F8F5F4" +- "#20332F" +- "#C2CFD7" +- "#526E7A" +- "#B8C4D5" +- "#2F474A" +- "#19281E" +- "#F4F4F2" +- "#7A4E3F" +- "#415C60" +- "#748890" +- "#84A4B8" +- "#E8EAE9" +- "#111803" +- "#6D7283" +- "#3C251D" +- "#899EBB" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/karneval-der-kulturen-group.md b/site/content/photos/people/karneval-der-kulturen-group.md similarity index 59% rename from site/content/photos/karneval-der-kulturen-group.md rename to site/content/photos/people/karneval-der-kulturen-group.md index fd56e76..e4dd798 100644 --- a/site/content/photos/karneval-der-kulturen-group.md +++ b/site/content/photos/people/karneval-der-kulturen-group.md @@ -1,5 +1,6 @@ --- title: "karneval-der-kulturen-group" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-07 17:27:55+00:00" @@ -12,6 +13,47 @@ format: "tiff" bytes: 5890132 width: 2158 height: 1440 +colours: +- "#E1D5D0" +- "#865F4B" +- "#E7F0F1" +- "#D2E3D6" +- "#507442" +- "#69813A" +- "#171B27" +- "#E6E8EF" +- "#BC8F79" +- "#3B2222" +- "#284023" +- "#DEE3CC" +- "#774248" +- "#2E2A31" +- "#85756F" +- "#36302F" +- "#C7D063" +- "#A9C269" +- "#660E26" +- "#14212B" +- "#470A1B" +- "#BBC710" +- "#36441E" +- "#696979" +- "#748877" +- "#617C0F" +- "#E1DD71" +- "#497858" +- "#485670" +- "#718185" +- "#828B40" +- "#808E0B" +- "#2F4107" +- "#CA7183" +- "#CDB07E" +- "#281924" +- "#426276" +- "#313836" +- "#4E8370" +- "#DDD2DA" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/karneval-der-kulturen.md b/site/content/photos/people/karneval-der-kulturen.md similarity index 68% rename from site/content/photos/karneval-der-kulturen.md rename to site/content/photos/people/karneval-der-kulturen.md index c74db8f..f5c04de 100644 --- a/site/content/photos/karneval-der-kulturen.md +++ b/site/content/photos/people/karneval-der-kulturen.md @@ -1,5 +1,6 @@ --- title: "karneval-der-kulturen" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-07 17:27:33+00:00" @@ -12,6 +13,32 @@ format: "tiff" bytes: 5646964 width: 2158 height: 1440 +colours: +- "#F2F6F8" +- "#CFBFB7" +- "#F8F9FC" +- "#C8D8C9" +- "#618055" +- "#793B43" +- "#D6DCC0" +- "#CAD172" +- "#876657" +- "#788E4F" +- "#A8BC73" +- "#18202E" +- "#33472E" +- "#937F78" +- "#442328" +- "#E8E78D" +- "#BA8F78" +- "#748F74" +- "#BC7A82" +- "#92B27E" +- "#1C2B37" +- "#021027" +- "#42536C" +- "#322F36" +- "#044F7E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/kluner-kranich-visitors.md b/site/content/photos/people/kluner-kranich-visitors.md similarity index 70% rename from site/content/photos/kluner-kranich-visitors.md rename to site/content/photos/people/kluner-kranich-visitors.md index e9b73f5..720dc62 100644 --- a/site/content/photos/kluner-kranich-visitors.md +++ b/site/content/photos/people/kluner-kranich-visitors.md @@ -1,5 +1,6 @@ --- title: "kluner-kranich-visitors" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-25 20:24:08+00:00" @@ -12,6 +13,30 @@ format: "tiff" bytes: 6423308 width: 2560 height: 1440 +colours: +- "#F3ECEA" +- "#845444" +- "#090B0F" +- "#CB907B" +- "#37221E" +- "#EAE8EF" +- "#CB7E76" +- "#804A45" +- "#070B0D" +- "#1C1B20" +- "#E9E2E7" +- "#006170" +- "#012D37" +- "#836E6E" +- "#80717E" +- "#221D1D" +- "#F1F1E8" +- "#010815" +- "#DCBD57" +- "#80390A" +- "#787081" +- "#00586C" +- "#050A09" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md b/site/content/photos/people/knonigs-wusterhausen-ruairi-fionn.md similarity index 66% rename from site/content/photos/knonigs-wusterhausen-ruairi-fionn.md rename to site/content/photos/people/knonigs-wusterhausen-ruairi-fionn.md index dbf65e3..e0844e8 100644 --- a/site/content/photos/knonigs-wusterhausen-ruairi-fionn.md +++ b/site/content/photos/people/knonigs-wusterhausen-ruairi-fionn.md @@ -1,5 +1,6 @@ --- title: "knonigs-wusterhausen-ruairi-fionn" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-27 19:33:21+00:00" @@ -12,6 +13,37 @@ format: "tiff" bytes: 2702220 width: 961 height: 1440 +colours: +- "#F3F0EE" +- "#313A20" +- "#283722" +- "#36271F" +- "#725448" +- "#877A75" +- "#5B6F3A" +- "#001031" +- "#283029" +- "#33312B" +- "#002A49" +- "#506841" +- "#687969" +- "#2C271B" +- "#003C63" +- "#D6D7CA" +- "#7E826E" +- "#DBB875" +- "#C5C8CF" +- "#D2D9DD" +- "#774F50" +- "#0B100F" +- "#101519" +- "#C8D0C8" +- "#847350" +- "#7B7E88" +- "#1A1E27" +- "#C6C1C5" +- "#768387" +- "#252529" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "8.0" diff --git a/site/content/photos/lakeside-konigs-wusterhausen.md b/site/content/photos/people/lakeside-konigs-wusterhausen.md similarity index 72% rename from site/content/photos/lakeside-konigs-wusterhausen.md rename to site/content/photos/people/lakeside-konigs-wusterhausen.md index 9779617..78ccc5a 100644 --- a/site/content/photos/lakeside-konigs-wusterhausen.md +++ b/site/content/photos/people/lakeside-konigs-wusterhausen.md @@ -1,5 +1,6 @@ --- title: "lakeside-konigs-wusterhausen" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-27 20:13:48+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 1876348 width: 961 height: 1440 +colours: +- "#F9F6F5" +- "#EAEFF2" +- "#E7EBF2" +- "#4F6A7A" +- "#1B2730" +- "#343B3C" +- "#303138" +- "#606774" +- "#222A36" +- "#616E76" +- "#516279" +- "#897372" +- "#F9F9F7" +- "#669DC0" +- "#84A4CC" +- "#3A2724" +- "#080D08" +- "#35322F" +- "#7B4A50" +- "#DD5C7A" +- "#74564D" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/li-behind-paper.md b/site/content/photos/people/li-behind-paper.md similarity index 74% rename from site/content/photos/li-behind-paper.md rename to site/content/photos/people/li-behind-paper.md index 20bf2c9..aa4493b 100644 --- a/site/content/photos/li-behind-paper.md +++ b/site/content/photos/people/li-behind-paper.md @@ -1,5 +1,6 @@ --- title: "li-behind-paper" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-15 14:05:50+00:00" @@ -12,6 +13,25 @@ format: "tiff" bytes: 6089496 width: 2560 height: 1440 +colours: +- "#C4CCE0" +- "#2D1C15" +- "#2C1505" +- "#874812" +- "#714831" +- "#D99D6B" +- "#E5B275" +- "#B9661F" +- "#E9DDD5" +- "#81490B" +- "#988083" +- "#998996" +- "#241C10" +- "#B7A9B4" +- "#BD7121" +- "#3C2306" +- "#FEFDF7" +- "#958C9F" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.2" diff --git a/site/content/photos/li-tempelhof.md b/site/content/photos/people/li-tempelhof.md similarity index 77% rename from site/content/photos/li-tempelhof.md rename to site/content/photos/people/li-tempelhof.md index 7b85c12..aa108d8 100644 --- a/site/content/photos/li-tempelhof.md +++ b/site/content/photos/people/li-tempelhof.md @@ -1,5 +1,6 @@ --- title: "li-tempelhof" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-02-15 14:51:17+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 5042088 width: 2174 height: 1440 +colours: +- "#C64B76" +- "#B5245C" +- "#8D674A" +- "#DFE2EA" +- "#BA9174" +- "#961247" +- "#C6ABA2" +- "#352217" +- "#09090D" +- "#877C74" +- "#7A8388" +- "#CFD8DE" +- "#7A7E88" +- "#161519" +- "#886D50" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/li.md b/site/content/photos/people/li.md similarity index 67% rename from site/content/photos/li.md rename to site/content/photos/people/li.md index 03c91d1..5b1e43e 100644 --- a/site/content/photos/li.md +++ b/site/content/photos/people/li.md @@ -1,5 +1,6 @@ --- title: "li" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-06-28 18:21:16+00:00" @@ -12,6 +13,32 @@ format: "tiff" bytes: 5056044 width: 2560 height: 1440 +colours: +- "#273C25" +- "#516C45" +- "#7D5748" +- "#E2D6CE" +- "#647A68" +- "#1B2D26" +- "#677A4A" +- "#815351" +- "#333F1E" +- "#647679" +- "#462D24" +- "#384640" +- "#B7C8BB" +- "#6D697C" +- "#C4C6B2" +- "#DBE3E5" +- "#C0947E" +- "#D1CDDD" +- "#8A7A77" +- "#754D68" +- "#7A6576" +- "#3B3640" +- "#8F9779" +- "#4F5475" +- "#302F43" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/lunchtime.md b/site/content/photos/people/lunchtime.md similarity index 89% rename from site/content/photos/lunchtime.md rename to site/content/photos/people/lunchtime.md index 3d45c2e..8ed5bd0 100644 --- a/site/content/photos/lunchtime.md +++ b/site/content/photos/people/lunchtime.md @@ -1,5 +1,6 @@ --- title: "lunchtime" +type: "photos" mediatype: "upload" description: "TBC" date: "2004-01-28 13:54:22+00:00" @@ -12,6 +13,12 @@ format: "tiff" bytes: 2562124 width: 1916 height: 1440 +colours: +- "#191919" +- "#757575" +- "#D9D9D9" +- "#B4B5B4" +- "#969796" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/mick-beach.md b/site/content/photos/people/mick-beach.md similarity index 80% rename from site/content/photos/mick-beach.md rename to site/content/photos/people/mick-beach.md index 120b24f..6d559b8 100644 --- a/site/content/photos/mick-beach.md +++ b/site/content/photos/people/mick-beach.md @@ -1,5 +1,6 @@ --- title: "mick-beach" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-31 13:47:33+00:00" @@ -12,6 +13,19 @@ format: "tiff" bytes: 2729756 width: 1115 height: 1440 +colours: +- "#473F3D" +- "#625956" +- "#A9B0BD" +- "#828A99" +- "#0C131D" +- "#353035" +- "#0E1821" +- "#3A2C28" +- "#02050A" +- "#7C5B51" +- "#717C82" +- "#C6CBCF" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.5" diff --git a/site/content/photos/model-airplane.md b/site/content/photos/people/model-airplane.md similarity index 78% rename from site/content/photos/model-airplane.md rename to site/content/photos/people/model-airplane.md index 2482410..4b49255 100644 --- a/site/content/photos/model-airplane.md +++ b/site/content/photos/people/model-airplane.md @@ -1,5 +1,6 @@ --- title: "model-airplane" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-01-26 12:33:28+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 6581212 width: 2560 height: 1440 +colours: +- "#748C4C" +- "#38392F" +- "#C4D1E0" +- "#8D935E" +- "#658847" +- "#2F3530" +- "#303523" +- "#191F2E" +- "#5F5952" +- "#737E83" +- "#141C1F" +- "#BDCAD5" +- "#908D5B" +- "#151F1E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/mossy-laura.md b/site/content/photos/people/mossy-laura.md similarity index 71% rename from site/content/photos/mossy-laura.md rename to site/content/photos/people/mossy-laura.md index 291090a..d8bc43f 100644 --- a/site/content/photos/mossy-laura.md +++ b/site/content/photos/people/mossy-laura.md @@ -1,5 +1,6 @@ --- title: "mossy-laura" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 15:39:11+00:00" @@ -12,6 +13,28 @@ format: "tiff" bytes: 3005136 width: 954 height: 1440 +colours: +- "#DECDCD" +- "#DBCCD7" +- "#073675" +- "#241516" +- "#302A29" +- "#7E3A50" +- "#D58C8F" +- "#2B262C" +- "#031841" +- "#CE9F8A" +- "#6D6D7A" +- "#110A0F" +- "#044D91" +- "#2F477F" +- "#7F7371" +- "#1F2439" +- "#280811" +- "#C6C0CE" +- "#A8B9C6" +- "#815944" +- "#4979B8" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "4.0" diff --git a/site/content/photos/norwegian-actress-forest-shoot.md b/site/content/photos/people/norwegian-actress-forest-shoot.md similarity index 78% rename from site/content/photos/norwegian-actress-forest-shoot.md rename to site/content/photos/people/norwegian-actress-forest-shoot.md index 9e32272..6bb360f 100644 --- a/site/content/photos/norwegian-actress-forest-shoot.md +++ b/site/content/photos/people/norwegian-actress-forest-shoot.md @@ -1,5 +1,6 @@ --- title: "norwegian-actress-forest-shoot" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 18:18:09+00:00" @@ -12,6 +13,22 @@ format: "tiff" bytes: 2285596 width: 810 height: 1440 +colours: +- "#354406" +- "#5C7028" +- "#735E36" +- "#423A1A" +- "#4F630C" +- "#CBC2B5" +- "#434B18" +- "#626926" +- "#C38D69" +- "#865B3B" +- "#6B662D" +- "#372B08" +- "#59640B" +- "#BE9868" +- "#B9B9AC" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/norwegian-actress-profile.md b/site/content/photos/people/norwegian-actress-profile.md similarity index 78% rename from site/content/photos/norwegian-actress-profile.md rename to site/content/photos/people/norwegian-actress-profile.md index 75e3d3d..dbcde4e 100644 --- a/site/content/photos/norwegian-actress-profile.md +++ b/site/content/photos/people/norwegian-actress-profile.md @@ -1,5 +1,6 @@ --- title: "norwegian-actress-profile" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 18:52:22+00:00" @@ -12,6 +13,21 @@ format: "tiff" bytes: 1996236 width: 961 height: 1440 +colours: +- "#1E3118" +- "#362419" +- "#78513C" +- "#C0866C" +- "#211105" +- "#2D351F" +- "#302618" +- "#767788" +- "#AAB1C8" +- "#C38D87" +- "#322D2A" +- "#7A6A67" +- "#C7A3A0" +- "#2B2A2F" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/overcooked_anna.md b/site/content/photos/people/overcooked_anna.md similarity index 90% rename from site/content/photos/overcooked_anna.md rename to site/content/photos/people/overcooked_anna.md index 8b83811..a57abe1 100644 --- a/site/content/photos/overcooked_anna.md +++ b/site/content/photos/people/overcooked_anna.md @@ -1,5 +1,6 @@ --- title: "overcooked_anna" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-19 22:06:51+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 1219184 width: 961 height: 1440 +colours: +- "#2D2D2D" +- "#787777" +- "#CBCACA" +- "#6C6C6B" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "1.4" diff --git a/site/content/photos/paul-and-luke.md b/site/content/photos/people/paul-and-luke.md similarity index 90% rename from site/content/photos/paul-and-luke.md rename to site/content/photos/people/paul-and-luke.md index 6677e91..b666216 100644 --- a/site/content/photos/paul-and-luke.md +++ b/site/content/photos/people/paul-and-luke.md @@ -1,5 +1,6 @@ --- title: "paul-and-luke" +type: "photos" mediatype: "upload" description: "TBC" date: "2015-12-25 15:04:08+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 1695292 width: 886 height: 1440 +colours: +- "#262626" +- "#818181" +- "#D6D5D5" +- "#CBCBCA" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/paul-james-beach.md b/site/content/photos/people/paul-james-beach.md similarity index 79% rename from site/content/photos/paul-james-beach.md rename to site/content/photos/people/paul-james-beach.md index cea2753..44b6366 100644 --- a/site/content/photos/paul-james-beach.md +++ b/site/content/photos/people/paul-james-beach.md @@ -1,5 +1,6 @@ --- title: "paul-james-beach" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-07-31 13:45:33+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 3076112 width: 1352 height: 1440 +colours: +- "#444346" +- "#5A5B60" +- "#607994" +- "#413D3D" +- "#0C0E13" +- "#8098B3" +- "#5B7389" +- "#353A3A" +- "#A4B6CA" +- "#6C5A5B" +- "#11171B" +- "#5C6266" +- "#AEBECE" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "11.0" diff --git a/site/content/photos/peter-coonan-redline.md b/site/content/photos/people/peter-coonan-redline.md similarity index 90% rename from site/content/photos/peter-coonan-redline.md rename to site/content/photos/people/peter-coonan-redline.md index e1fdc98..bb54e90 100644 --- a/site/content/photos/peter-coonan-redline.md +++ b/site/content/photos/people/peter-coonan-redline.md @@ -1,5 +1,6 @@ --- title: "peter-coonan-redline" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-01-13 15:33:03+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 3699608 width: 2560 height: 1440 +colours: +- "#828282" +- "#262626" +- "#CCCCCC" +- "#787877" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "5.0" diff --git a/site/content/photos/phil-bans-donegal.md b/site/content/photos/people/phil-bans-donegal.md similarity index 90% rename from site/content/photos/phil-bans-donegal.md rename to site/content/photos/people/phil-bans-donegal.md index d89b4bd..8c747b9 100644 --- a/site/content/photos/phil-bans-donegal.md +++ b/site/content/photos/people/phil-bans-donegal.md @@ -1,5 +1,6 @@ --- title: "phil-bans-donegal" +type: "photos" mediatype: "upload" description: "TBC" date: "2010-06-06 23:56:24+00:00" @@ -12,6 +13,11 @@ format: "tiff" bytes: 4188284 width: 2151 height: 1440 +colours: +- "#232323" +- "#818181" +- "#D2D2D2" +- "#D9D9D8" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/phoenix-park-training.md b/site/content/photos/people/phoenix-park-training.md similarity index 80% rename from site/content/photos/phoenix-park-training.md rename to site/content/photos/people/phoenix-park-training.md index 452ebc8..f9ba017 100644 --- a/site/content/photos/phoenix-park-training.md +++ b/site/content/photos/people/phoenix-park-training.md @@ -1,5 +1,6 @@ --- title: "phoenix-park-training" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-01-26 11:34:55+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 4717212 width: 2174 height: 1440 +colours: +- "#E5EAF1" +- "#829A51" +- "#E5EBF1" +- "#90965C" +- "#98AE64" +- "#918D5B" +- "#151926" +- "#CAB2A8" +- "#A9AF76" +- "#222127" +- "#BABB9C" +- "#8D7F56" +- "#866457" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/photographer.md b/site/content/photos/people/photographer.md similarity index 75% rename from site/content/photos/photographer.md rename to site/content/photos/people/photographer.md index 7eb3c2b..28e1ad0 100644 --- a/site/content/photos/photographer.md +++ b/site/content/photos/people/photographer.md @@ -1,5 +1,6 @@ --- title: "photographer" +type: "photos" mediatype: "upload" description: "TBC" date: "2013-01-26 12:59:49+00:00" @@ -12,6 +13,24 @@ format: "tiff" bytes: 7739396 width: 2560 height: 1440 +colours: +- "#2E2C1E" +- "#78796A" +- "#303028" +- "#848984" +- "#DFE2E3" +- "#2F3120" +- "#7B7566" +- "#DEDFE3" +- "#6B7380" +- "#666345" +- "#665E48" +- "#D7D9D7" +- "#DCD9D5" +- "#7C8386" +- "#D6D6D1" +- "#1D2633" +- "#2B302E" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "6.3" diff --git a/site/content/photos/portugal-guitarist.md b/site/content/photos/people/portugal-guitarist.md similarity index 64% rename from site/content/photos/portugal-guitarist.md rename to site/content/photos/people/portugal-guitarist.md index c14f50d..e613658 100644 --- a/site/content/photos/portugal-guitarist.md +++ b/site/content/photos/people/portugal-guitarist.md @@ -1,5 +1,6 @@ --- title: "portugal-guitarist" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-05-15 19:30:52+00:00" @@ -12,6 +13,37 @@ format: "tiff" bytes: 3425436 width: 954 height: 1440 +colours: +- "#D4C7B5" +- "#5E854C" +- "#778C50" +- "#8B7953" +- "#9EB96F" +- "#C0C4A7" +- "#C9AA74" +- "#89B56C" +- "#B4C6B0" +- "#878D57" +- "#8B8658" +- "#2F381C" +- "#C0C9D7" +- "#342E1A" +- "#798F77" +- "#2A3E25" +- "#91957A" +- "#BFC9CF" +- "#918578" +- "#2F1C18" +- "#C6987F" +- "#85604B" +- "#AFB578" +- "#3B8011" +- "#24211E" +- "#B5B17C" +- "#86474A" +- "#54840E" +- "#1F0805" +- "#253306" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.2" diff --git a/site/content/photos/pppb.md b/site/content/photos/people/pppb.md similarity index 88% rename from site/content/photos/pppb.md rename to site/content/photos/people/pppb.md index a8a0ba0..8a204e9 100644 --- a/site/content/photos/pppb.md +++ b/site/content/photos/people/pppb.md @@ -1,5 +1,6 @@ --- title: "pppb" +type: "photos" mediatype: "upload" description: "TBC" date: "2005-08-13 20:08:07+00:00" @@ -12,6 +13,12 @@ format: "tiff" bytes: 2772000 width: 1920 height: 1440 +colours: +- "#1B1B1B" +- "#767676" +- "#D8D8D8" +- "#949594" +- "#B8B9B8" exposure_mode: "Auto" program: "Program AE" aperture: "3.2" diff --git a/site/content/photos/ruairi-fionn.md b/site/content/photos/people/ruairi-fionn.md similarity index 60% rename from site/content/photos/ruairi-fionn.md rename to site/content/photos/people/ruairi-fionn.md index 280b60d..1c37313 100644 --- a/site/content/photos/ruairi-fionn.md +++ b/site/content/photos/people/ruairi-fionn.md @@ -1,5 +1,6 @@ --- title: "ruairi-fionn" +type: "photos" mediatype: "upload" description: "TBC" date: "2016-08-27 19:34:22+00:00" @@ -12,6 +13,43 @@ format: "tiff" bytes: 2669160 width: 961 height: 1440 +colours: +- "#EEDED9" +- "#854753" +- "#C6778A" +- "#875F51" +- "#381D21" +- "#004E8E" +- "#203219" +- "#CA9582" +- "#6C8542" +- "#252E14" +- "#D6E0E4" +- "#5F7D4F" +- "#697C6A" +- "#028ECE" +- "#292523" +- "#071102" +- "#83726D" +- "#BECFBD" +- "#232125" +- "#0B1115" +- "#00336E" +- "#D1D5BE" +- "#9DB76D" +- "#DDE0E7" +- "#2B0812" +- "#182406" +- "#797E69" +- "#001025" +- "#343D35" +- "#292616" +- "#01101C" +- "#12151B" +- "#78888A" +- "#E1C072" +- "#5F7E12" +- "#7E6F4F" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.8" diff --git a/site/content/photos/singer.md b/site/content/photos/people/singer.md similarity index 91% rename from site/content/photos/singer.md rename to site/content/photos/people/singer.md index 68dc1eb..b44c839 100644 --- a/site/content/photos/singer.md +++ b/site/content/photos/people/singer.md @@ -1,5 +1,6 @@ --- title: "singer" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-05-05 21:36:13+00:00" @@ -12,6 +13,10 @@ format: "tiff" bytes: 2731956 width: 2174 height: 1440 +colours: +- "#0E0E0E" +- "#7A7979" +- "#D2D1D1" exposure_mode: "Manual" program: "Manual" aperture: "2.8" diff --git a/site/content/photos/smartphones.md b/site/content/photos/people/smartphones.md similarity index 76% rename from site/content/photos/smartphones.md rename to site/content/photos/people/smartphones.md index b1873ac..0763676 100644 --- a/site/content/photos/smartphones.md +++ b/site/content/photos/people/smartphones.md @@ -1,5 +1,6 @@ --- title: "smartphones" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-02-09 15:17:37+00:00" @@ -12,6 +13,23 @@ format: "tiff" bytes: 5477468 width: 2560 height: 1440 +colours: +- "#DED0C6" +- "#2B1B1B" +- "#876E4C" +- "#CF9F7F" +- "#C5A77E" +- "#8D8078" +- "#82614C" +- "#CFD7D9" +- "#403423" +- "#78394B" +- "#2D2626" +- "#DB8793" +- "#D9DADE" +- "#2C0913" +- "#D2D2C4" +- "#6C445C" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.0" diff --git a/site/content/photos/spwc-performer.md b/site/content/photos/people/spwc-performer.md similarity index 62% rename from site/content/photos/spwc-performer.md rename to site/content/photos/people/spwc-performer.md index 27f8a02..0da1c7c 100644 --- a/site/content/photos/spwc-performer.md +++ b/site/content/photos/people/spwc-performer.md @@ -1,5 +1,6 @@ --- title: "spwc-performer" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-06-18 14:04:44+00:00" @@ -12,6 +13,40 @@ format: "tiff" bytes: 6118604 width: 2560 height: 1440 +colours: +- "#EAD9CA" +- "#DEA98B" +- "#312D2B" +- "#262D13" +- "#1E2606" +- "#2A2417" +- "#82573F" +- "#281A13" +- "#6C7C40" +- "#C9CBB3" +- "#7C8341" +- "#26252A" +- "#252835" +- "#7A7167" +- "#CDD5D6" +- "#C0CAC3" +- "#7E6744" +- "#788878" +- "#888A73" +- "#1C2716" +- "#696878" +- "#C4C5D2" +- "#86824E" +- "#212522" +- "#C5C079" +- "#241107" +- "#C6A578" +- "#566C0D" +- "#1B1505" +- "#050C01" +- "#657112" +- "#0F090D" +- "#55704A" exposure_mode: "Auto" program: "Aperture-priority AE" aperture: "2.0" diff --git a/site/content/photos/street-performer.md b/site/content/photos/people/street-performer.md similarity index 79% rename from site/content/photos/street-performer.md rename to site/content/photos/people/street-performer.md index 874d308..60ed69f 100644 --- a/site/content/photos/street-performer.md +++ b/site/content/photos/people/street-performer.md @@ -1,5 +1,6 @@ --- title: "street-performer" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-03-20 22:23:11+00:00" @@ -12,6 +13,20 @@ format: "tiff" bytes: 2844052 width: 964 height: 1440 +colours: +- "#F19200" +- "#2E1919" +- "#E08C5F" +- "#180605" +- "#FDFBF9" +- "#814E3A" +- "#803C0D" +- "#010004" +- "#030004" +- "#010101" +- "#070105" +- "#BB5C13" +- "#130910" exposure_mode: "Manual" program: "Manual" aperture: "4.0" diff --git a/site/content/photos/tree-howth.md b/site/content/photos/people/tree-howth.md similarity index 60% rename from site/content/photos/tree-howth.md rename to site/content/photos/people/tree-howth.md index 927c816..31b7e24 100644 --- a/site/content/photos/tree-howth.md +++ b/site/content/photos/people/tree-howth.md @@ -1,5 +1,6 @@ --- title: "tree-howth" +type: "photos" mediatype: "upload" description: "TBC" date: "2010-06-27 06:06:50+00:00" @@ -12,6 +13,41 @@ format: "tiff" bytes: 3108432 width: 810 height: 1440 +colours: +- "#B2D46E" +- "#F2EAE5" +- "#E7EED0" +- "#5C7D0C" +- "#2D331A" +- "#373322" +- "#6B8638" +- "#392A25" +- "#795A4C" +- "#3B3731" +- "#18202D" +- "#2D3F06" +- "#717361" +- "#CCD1DE" +- "#7C7068" +- "#92BF1C" +- "#C5D9C0" +- "#76674B" +- "#C59A86" +- "#42546F" +- "#607F4E" +- "#737684" +- "#C5D2D7" +- "#303533" +- "#777D44" +- "#141F27" +- "#748575" +- "#C3CC7C" +- "#757147" +- "#27272C" +- "#659FC8" +- "#40627C" +- "#727D82" +- "#9FC682" exposure_mode: "Manual" program: "Manual" aperture: "3.5" diff --git a/site/content/photos/unicorns.md b/site/content/photos/people/unicorns.md similarity index 71% rename from site/content/photos/unicorns.md rename to site/content/photos/people/unicorns.md index 0ff8e79..a09a652 100644 --- a/site/content/photos/unicorns.md +++ b/site/content/photos/people/unicorns.md @@ -1,5 +1,6 @@ --- title: "unicorns" +type: "photos" mediatype: "upload" description: "TBC" date: "2014-04-19 18:57:58+00:00" @@ -12,6 +13,27 @@ format: "tiff" bytes: 5224288 width: 2158 height: 1440 +colours: +- "#76513B" +- "#496D3D" +- "#3D2A1E" +- "#C88260" +- "#354B2B" +- "#6A7C4D" +- "#3E492D" +- "#0F1B24" +- "#302619" +- "#C6D2E7" +- "#292523" +- "#301A09" +- "#212125" +- "#766560" +- "#05121B" +- "#181F29" +- "#CEB2AD" +- "#6B5C46" +- "#272D28" +- "#5D634E" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/vantastival-rochelle.md b/site/content/photos/people/vantastival-rochelle.md similarity index 76% rename from site/content/photos/vantastival-rochelle.md rename to site/content/photos/people/vantastival-rochelle.md index d1df3ab..ccef443 100644 --- a/site/content/photos/vantastival-rochelle.md +++ b/site/content/photos/people/vantastival-rochelle.md @@ -1,5 +1,6 @@ --- title: "vantastival-rochelle" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-30 19:51:04+00:00" @@ -12,6 +13,23 @@ format: "tiff" bytes: 5121140 width: 2560 height: 1440 +colours: +- "#271C1A" +- "#777E91" +- "#4E6185" +- "#1E1C21" +- "#7A90B3" +- "#A3AFC5" +- "#13151C" +- "#261E1F" +- "#E2A28D" +- "#857070" +- "#87845E" +- "#0B3D7E" +- "#7A5553" +- "#785244" +- "#D3958F" +- "#787B58" exposure_mode: "Manual" program: "Manual" aperture: "4.8" diff --git a/site/content/photos/vantastival-ross.md b/site/content/photos/people/vantastival-ross.md similarity index 65% rename from site/content/photos/vantastival-ross.md rename to site/content/photos/people/vantastival-ross.md index 29bc58e..b77e566 100644 --- a/site/content/photos/vantastival-ross.md +++ b/site/content/photos/people/vantastival-ross.md @@ -1,5 +1,6 @@ --- title: "vantastival-ross" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-30 19:50:44+00:00" @@ -12,6 +13,36 @@ format: "tiff" bytes: 6238272 width: 2560 height: 1440 +colours: +- "#CFBEA9" +- "#DCC4A2" +- "#D4D8E1" +- "#392923" +- "#6C4D3F" +- "#03568B" +- "#9BA18A" +- "#423534" +- "#7D6C43" +- "#968A7F" +- "#C99381" +- "#43537A" +- "#1B2031" +- "#6198BF" +- "#29262E" +- "#B1B39E" +- "#8B9787" +- "#7B7437" +- "#6780BA" +- "#7C4C4F" +- "#798E90" +- "#7B720A" +- "#D5928C" +- "#473E1D" +- "#757386" +- "#B4C1CB" +- "#1079B2" +- "#3F7295" +- "#03152E" exposure_mode: "Manual" program: "Manual" aperture: "4.8" diff --git a/site/content/photos/vantastival-vin.md b/site/content/photos/people/vantastival-vin.md similarity index 68% rename from site/content/photos/vantastival-vin.md rename to site/content/photos/people/vantastival-vin.md index 4f70a6a..0a6dc63 100644 --- a/site/content/photos/vantastival-vin.md +++ b/site/content/photos/people/vantastival-vin.md @@ -1,5 +1,6 @@ --- title: "vantastival-vin" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-04-30 19:50:50+00:00" @@ -12,6 +13,32 @@ format: "tiff" bytes: 5719808 width: 2560 height: 1440 +colours: +- "#C6D2D8" +- "#E1D1CD" +- "#12161D" +- "#8A7677" +- "#748450" +- "#252328" +- "#4D607B" +- "#3D452C" +- "#8D9356" +- "#C7CCD5" +- "#727888" +- "#AAB06C" +- "#393430" +- "#8E7D88" +- "#323E2A" +- "#7A7B66" +- "#7B6055" +- "#B4A2AF" +- "#2A312A" +- "#413E27" +- "#D5D6CB" +- "#5A7346" +- "#754E57" +- "#3E2C2C" +- "#7F7D4E" exposure_mode: "Manual" program: "Manual" aperture: "4.8" diff --git a/site/content/photos/viking-renactor.md b/site/content/photos/people/viking-renactor.md similarity index 76% rename from site/content/photos/viking-renactor.md rename to site/content/photos/people/viking-renactor.md index 54d4888..8e126c7 100644 --- a/site/content/photos/viking-renactor.md +++ b/site/content/photos/people/viking-renactor.md @@ -1,5 +1,6 @@ --- title: "viking-renactor" +type: "photos" mediatype: "upload" description: "TBC" date: "2011-09-24 17:19:06+00:00" @@ -12,6 +13,23 @@ format: "tiff" bytes: 7160664 width: 2174 height: 1440 +colours: +- "#D7CBB3" +- "#E2EEF5" +- "#CCB68C" +- "#82614D" +- "#8A7857" +- "#D6A17F" +- "#CFCDBC" +- "#34221A" +- "#8F8374" +- "#3D341E" +- "#8D8D79" +- "#1A0A04" +- "#BFCCC3" +- "#403835" +- "#736F46" +- "#7A8A7E" exposure_mode: "Manual" program: "Manual" aperture: "9.0" diff --git a/site/content/photos/xha-xhu-zhi.md b/site/content/photos/people/xha-xhu-zhi.md similarity index 67% rename from site/content/photos/xha-xhu-zhi.md rename to site/content/photos/people/xha-xhu-zhi.md index 1e44290..4ad8161 100644 --- a/site/content/photos/xha-xhu-zhi.md +++ b/site/content/photos/people/xha-xhu-zhi.md @@ -1,5 +1,6 @@ --- title: "xha-xhu-zhi" +type: "photos" mediatype: "upload" description: "TBC" date: "2006-07-24 08:43:08+00:00" @@ -12,6 +13,33 @@ format: "tiff" bytes: 4898044 width: 1920 height: 1440 +colours: +- "#C89D86" +- "#8B644D" +- "#3E677B" +- "#853232" +- "#182A32" +- "#7C7468" +- "#747668" +- "#393931" +- "#DCC1B4" +- "#77674D" +- "#302B1D" +- "#162116" +- "#242718" +- "#69776B" +- "#313833" +- "#3D231F" +- "#BA4B48" +- "#12201D" +- "#83211C" +- "#08212C" +- "#1A212F" +- "#6A7A7C" +- "#302F34" +- "#87BBAC" +- "#50797E" +- "#B5D2BB" exposure_mode: "Auto" program: "Program AE" aperture: "2.8" diff --git a/site/content/photos/yves.md b/site/content/photos/people/yves.md similarity index 65% rename from site/content/photos/yves.md rename to site/content/photos/people/yves.md index 23c4298..89634f1 100644 --- a/site/content/photos/yves.md +++ b/site/content/photos/people/yves.md @@ -1,5 +1,6 @@ --- title: "yves" +type: "photos" mediatype: "upload" description: "TBC" date: "2012-01-01 01:00:04+00:00" @@ -12,6 +13,34 @@ format: "tiff" bytes: 6744820 width: 2174 height: 1440 +colours: +- "#786643" +- "#3A2F1B" +- "#281913" +- "#8D837A" +- "#845C44" +- "#0F1119" +- "#C3937B" +- "#C1B8B1" +- "#787B85" +- "#201D1B" +- "#220E06" +- "#1E1D21" +- "#C9CACF" +- "#090508" +- "#C8C9C3" +- "#C3C9CD" +- "#899194" +- "#080509" +- "#151E23" +- "#CBAB7C" +- "#080E0D" +- "#86877A" +- "#1D2120" +- "#C5C9C6" +- "#322108" +- "#D2CED1" +- "#010001" exposure_mode: "Auto" program: "Not Defined" aperture: "4.0" diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index c384ea7..f04867a 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -1,11 +1,32 @@ {{ $base := .Site.Params.cl_media_base }} -
- + - {{ .Date.Format "January 2006" }} +
\ No newline at end of file From f02dbce71bbcab0d9ae4c1a40fa9b61066fbf55f Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sun, 11 Jun 2017 18:07:28 +0200 Subject: [PATCH 15/66] Adding linear gradients for colours and removing bars. --- assets/sass/cards.sass | 21 +-------------------- assets/scripts/main.js | 10 +++------- site/layouts/photos/card.html | 28 ++-------------------------- 3 files changed, 6 insertions(+), 53 deletions(-) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index fb05520..975ffad 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -2,24 +2,5 @@ * Photo card */ figure.photo-card - z-index: $z-middle - display: grid - width: 40vw + width: 33vw height: 180px - overflow: hidden - grid-template-columns: 1fr - - .bar - opacity: 1 - +transitionWithProperties((transform, opacity), 500ms) - transform: translate3d(0, 0, 0) - - - &.loaded - .bar - opacity: 0 - &:nth-child(even) - transform: translate3d(100%, 0, 0) - &:nth-child(odd) - transform: translate3d(-100%, 0, 0) - \ No newline at end of file diff --git a/assets/scripts/main.js b/assets/scripts/main.js index 40979ee..7197220 100644 --- a/assets/scripts/main.js +++ b/assets/scripts/main.js @@ -9,13 +9,9 @@ onload = () => { }; const addBars = (photo_card) => { - let colours = photo_card.getAttribute('data-colours').split(','); - colours.map(colour => { - let node = document.createElement('div'); - node.classList.add('bar'); - node.style.background = `${colour}`; - return node; - }).forEach(node => photo_card.appendChild(node)); + let colours = photo_card.getAttribute('data-colours'); + photo_card.removeAttribute('data-colours'); + photo_card.style.backgroundImage = `linear-gradient(to right, ${colours})`; }; const makeBars = () => { diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index f04867a..db63d58 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -1,32 +1,8 @@ {{ $base := .Site.Params.cl_media_base }}
- - - - + />
\ No newline at end of file From 13c919dccbf22d2c2dc3bf43cbfc22f3a4eba99b Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sun, 11 Jun 2017 19:26:22 +0200 Subject: [PATCH 16/66] Function to generate gradients fixed to deliver solid gradients. --- assets/scripts/main.js | 11 ++++++++++- site/layouts/photos/card.html | 3 ++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/assets/scripts/main.js b/assets/scripts/main.js index 7197220..378ceee 100644 --- a/assets/scripts/main.js +++ b/assets/scripts/main.js @@ -14,7 +14,16 @@ const addBars = (photo_card) => { photo_card.style.backgroundImage = `linear-gradient(to right, ${colours})`; }; +const addGradients = (photo_card) => { + let colours = photo_card.getAttribute('data-colours').split(','), + step = 100 / colours.length; + + let gradient = colours.map((colour, index) => `${colour} ${index * step}%, ${colour} ${++index * step}%`).join(','); + photo_card.style.backgroundImage = `linear-gradient(to right, ${gradient})`; +}; + const makeBars = () => { let cards = [...document.querySelectorAll('figure.photo-card')]; - cards.forEach(card => addBars(card)); + // cards.forEach(card => addBars(card)); + cards.forEach(addGradients); }; \ No newline at end of file diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index db63d58..d374ac4 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -1,5 +1,6 @@ {{ $base := .Site.Params.cl_media_base }} -
+{{ $colours := first 5 .Params.colours }} +
Date: Sun, 11 Jun 2017 21:10:21 +0200 Subject: [PATCH 17/66] Adding layout for the photo grid on the landing page. --- assets/sass/cards.sass | 4 ++-- assets/sass/constants.sass | 6 ++++-- assets/sass/layouts/landing.sass | 27 +++++++++++++++++++++++---- assets/sass/setup.sass | 2 +- site/layouts/photos/card.html | 1 - 5 files changed, 30 insertions(+), 10 deletions(-) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index 975ffad..0c67590 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -2,5 +2,5 @@ * Photo card */ figure.photo-card - width: 33vw - height: 180px + // width: 33vw + // height: 180px diff --git a/assets/sass/constants.sass b/assets/sass/constants.sass index afb6503..978bb59 100644 --- a/assets/sass/constants.sass +++ b/assets/sass/constants.sass @@ -1,10 +1,12 @@ /** * Breakpoints */ -$break-0: 40rem +$break-0: 30rem $break-1: 48rem $break-2: 64rem -$break-3: 80rem +$break-3: 100rem +$break-4: 120rem +$break-5: 160rem /** * Layers diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index 8fc2171..7ac77d6 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -1,6 +1,25 @@ main.albums display: grid - grid-template-columns: 1fr 1fr 1fr - grid-template-rows: 1fr 1fr 1fr - grid-column-gap: $units - grid-row-gap: $units \ No newline at end of file + grid-column-gap: $units / 2 + grid-row-gap: $units / 2 + + +break(min-max, 0, $break-0) + grid-template-columns: 1fr + + +break(min-max, $break-0, $break-1) + grid-template-columns: repeat(2, 1fr) + + +break(min-max, $break-1, $break-2) + grid-template-columns: repeat(3, 1fr) + + +break(min-max, $break-2, $break-3) + grid-template-columns: repeat(4, 1fr) + + +break(min-max, $break-3, $break-4) + grid-template-columns: repeat(5, 1fr) + + +break(min-max, $break-4, $break-5) + grid-template-columns: repeat(6, 1fr) + + +break(min, $break-5) + grid-template-columns: repeat(8, 1fr) diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index bd96053..00dcc50 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -1,4 +1,4 @@ * padding: 0 margin: 0 - box-sizing: border-box + box-sizing: border-box \ No newline at end of file diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index d374ac4..acfa847 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -4,6 +4,5 @@ {{ .Title }}
\ No newline at end of file From aafbd321ad6acfa50cc5d52069aec14863a213e4 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sun, 11 Jun 2017 22:50:35 +0200 Subject: [PATCH 18/66] Using column layout for the photo cards on the landing page. --- assets/sass/cards.sass | 9 +++++++-- assets/sass/layouts/landing.sass | 18 ++++++++---------- assets/sass/setup.sass | 5 ++++- site/layouts/index.html | 2 +- site/layouts/photos/card.html | 10 ++++++---- 5 files changed, 26 insertions(+), 18 deletions(-) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index 0c67590..14cd30f 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -2,5 +2,10 @@ * Photo card */ figure.photo-card - // width: 33vw - // height: 180px + margin-bottom: $units + + img + display: block + width: 100% + height: auto + diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index 7ac77d6..d65209b 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -1,25 +1,23 @@ main.albums - display: grid - grid-column-gap: $units / 2 - grid-row-gap: $units / 2 + column-gap: $units +break(min-max, 0, $break-0) - grid-template-columns: 1fr + column-count: 1 +break(min-max, $break-0, $break-1) - grid-template-columns: repeat(2, 1fr) + column-count: 2 +break(min-max, $break-1, $break-2) - grid-template-columns: repeat(3, 1fr) + column-count: 3 +break(min-max, $break-2, $break-3) - grid-template-columns: repeat(4, 1fr) + column-count: 4 +break(min-max, $break-3, $break-4) - grid-template-columns: repeat(5, 1fr) + column-count: 5 +break(min-max, $break-4, $break-5) - grid-template-columns: repeat(6, 1fr) + column-count: 6 +break(min, $break-5) - grid-template-columns: repeat(8, 1fr) + column-count: 8 \ No newline at end of file diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index 00dcc50..181b8f0 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -1,4 +1,7 @@ * padding: 0 margin: 0 - box-sizing: border-box \ No newline at end of file + box-sizing: border-box + +body + padding: $units \ No newline at end of file diff --git a/site/layouts/index.html b/site/layouts/index.html index 3149d6a..033c04f 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -7,7 +7,7 @@ {{ partial "header" . }}
{{ $photos := where .Data.Pages "Section" "photos" }} - {{ range $photos }} + {{ range first 50 $photos }} {{ .Render "card" }} {{ end }}
diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index acfa847..c038e0d 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -1,8 +1,10 @@ -{{ $base := .Site.Params.cl_media_base }} +{{ $base := .Site.Params.cl_media_base }} {{ $colours := first 5 .Params.colours }} -
+{{ $width := .Params.width }} +{{ $height := .Params.height }} +
\ No newline at end of file From 62e4e501a8ec5863d4a15f6da51fae74a0055cb5 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Sun, 11 Jun 2017 23:20:22 +0200 Subject: [PATCH 19/66] Adding JS to load images. --- assets/sass/cards.sass | 7 ++++++- assets/scripts/main.js | 23 ++-------------------- assets/scripts/utils.js | 37 +++++++++++++++++++++++++++++++++++ site/layouts/index.html | 2 +- site/layouts/photos/card.html | 4 ++-- 5 files changed, 48 insertions(+), 25 deletions(-) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index 14cd30f..a80f40b 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -2,8 +2,13 @@ * Photo card */ figure.photo-card - margin-bottom: $units + height: $units * 12 + margin-bottom: $units + + &.loaded + height: unset + img display: block width: 100% diff --git a/assets/scripts/main.js b/assets/scripts/main.js index 378ceee..c859659 100644 --- a/assets/scripts/main.js +++ b/assets/scripts/main.js @@ -5,25 +5,6 @@ if(window.cinematt == null) { } onload = () => { - makeBars(); -}; - -const addBars = (photo_card) => { - let colours = photo_card.getAttribute('data-colours'); - photo_card.removeAttribute('data-colours'); - photo_card.style.backgroundImage = `linear-gradient(to right, ${colours})`; -}; - -const addGradients = (photo_card) => { - let colours = photo_card.getAttribute('data-colours').split(','), - step = 100 / colours.length; - - let gradient = colours.map((colour, index) => `${colour} ${index * step}%, ${colour} ${++index * step}%`).join(','); - photo_card.style.backgroundImage = `linear-gradient(to right, ${gradient})`; -}; - -const makeBars = () => { - let cards = [...document.querySelectorAll('figure.photo-card')]; - // cards.forEach(card => addBars(card)); - cards.forEach(addGradients); + cinematt.utils.makeBars(); + cinematt.utils.loadThumbnails(); }; \ No newline at end of file diff --git a/assets/scripts/utils.js b/assets/scripts/utils.js index ed4faa6..0ef120e 100644 --- a/assets/scripts/utils.js +++ b/assets/scripts/utils.js @@ -5,4 +5,41 @@ if(window.cinematt == null) { } window.cinematt.utils = { + + addGradients: (photo_card) => { + let colours = photo_card.getAttribute('data-colours').split(','), + step = 100 / colours.length; + + let gradient = colours.map((colour, index) => `${colour} ${index * step}%, ${colour} ${++index * step}%`).join(','); + photo_card.style.backgroundImage = `linear-gradient(to right, ${gradient})`; + }, + + makeBars: () => { + let cards = [...document.querySelectorAll('figure.photo-card')]; + cards.forEach(window.cinematt.utils.addGradients); + }, + + primeImage: (img) => { + let src = img.getAttribute('data-src'), + srcset = img.getAttribute('data-srcset'); + + img.removeAttribute('data-src'); + img.removeAttribute('data-srcset'); + img.setAttribute('src', src); + img.setAttribute('srcset', srcset); + img.addEventListener('load', cinematt.utils.imageLoaded); + }, + + loadThumbnails: () => { + let images = [...document.querySelectorAll('figure img')]; + images.forEach(cinematt.utils.primeImage); + }, + + imageLoaded: (evt) => { + let figure = evt.target.parentNode; + figure.removeAttribute('data-colours'); + figure.style.backgroundImage = 'none'; + figure.classList.add('loaded'); + } + }; \ No newline at end of file diff --git a/site/layouts/index.html b/site/layouts/index.html index 033c04f..29c765e 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -7,7 +7,7 @@ {{ partial "header" . }}
{{ $photos := where .Data.Pages "Section" "photos" }} - {{ range first 50 $photos }} + {{ range first 30 $photos }} {{ .Render "card" }} {{ end }}
diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index c038e0d..8cc0390 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -4,7 +4,7 @@ {{ $height := .Params.height }}
\ No newline at end of file From df3e6a904e6654211636a3b443c48f18bdfe0bca Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 10:12:21 +0200 Subject: [PATCH 20/66] Reintroducing grid and image object fit for photo card styling. --- assets/sass/cards.sass | 12 +++------ assets/sass/constants.sass | 2 +- assets/sass/layouts/landing.sass | 46 ++++++++++++++++++++++++++------ assets/sass/setup.sass | 2 +- site/layouts/photos/card.html | 1 + 5 files changed, 45 insertions(+), 18 deletions(-) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index a80f40b..dae2ca7 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -2,15 +2,11 @@ * Photo card */ figure.photo-card - - height: $units * 12 - margin-bottom: $units - - &.loaded - height: unset + &.orientation-portrait + grid-row-end: span 2 img display: block width: 100% - height: auto - + height: 100% + object-fit: cover \ No newline at end of file diff --git a/assets/sass/constants.sass b/assets/sass/constants.sass index 978bb59..09e548f 100644 --- a/assets/sass/constants.sass +++ b/assets/sass/constants.sass @@ -2,7 +2,7 @@ * Breakpoints */ $break-0: 30rem -$break-1: 48rem +$break-1: 50rem $break-2: 64rem $break-3: 100rem $break-4: 120rem diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index d65209b..4377d27 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -1,23 +1,53 @@ main.albums - column-gap: $units + display: grid + grid-column-gap: $units / 4 + grid-row-gap: $units / 4 +break(min-max, 0, $break-0) - column-count: 1 + grid-template-columns: 1fr +break(min-max, $break-0, $break-1) - column-count: 2 + grid-template-columns: repeat(2, 1fr) +break(min-max, $break-1, $break-2) - column-count: 3 + grid-template-columns: repeat(3, 1fr) +break(min-max, $break-2, $break-3) - column-count: 4 + grid-template-columns: repeat(4, 1fr) +break(min-max, $break-3, $break-4) - column-count: 5 + grid-template-columns: repeat(5, 1fr) +break(min-max, $break-4, $break-5) - column-count: 6 + grid-template-columns: repeat(6, 1fr) +break(min, $break-5) - column-count: 8 \ No newline at end of file + grid-template-columns: repeat(8, 1fr) + + // display: flex + // flex-direction: row + // flex-wrap: wrap + +// main.albums +// column-gap: $units + +// +break(min-max, 0, $break-0) +// column-count: 1 + +// +break(min-max, $break-0, $break-1) +// column-count: 2 + +// +break(min-max, $break-1, $break-2) +// column-count: 3 + +// +break(min-max, $break-2, $break-3) +// column-count: 4 + +// +break(min-max, $break-3, $break-4) +// column-count: 5 + +// +break(min-max, $break-4, $break-5) +// column-count: 6 + +// +break(min, $break-5) +// column-count: 8 \ No newline at end of file diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index 181b8f0..19fc313 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -4,4 +4,4 @@ box-sizing: border-box body - padding: $units \ No newline at end of file + padding: $units / 4 \ No newline at end of file diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index 8cc0390..338c5b8 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -7,4 +7,5 @@ data-src="{{ $base }}/image/upload/w_320/v{{ .Params.cl_version }}/{{ .Params.cl_public_id }}.jpg" data-srcset="{{ $base }}/image/upload/w_320/v{{ .Params.cl_version }}/{{ .Params.cl_public_id }}.jpg 1x, {{ $base }}/image/upload/w_640/v{{ .Params.cl_version }}/{{ .Params.cl_public_id }}.jpg 2x" /> +
\ No newline at end of file From 1593a97a36bdf9151abecb92afa5399c8a9bbe2a Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 10:35:59 +0200 Subject: [PATCH 21/66] Tweaking the layout for the photo cards --- assets/sass/constants.sass | 7 +++--- assets/sass/layouts/landing.sass | 43 +++----------------------------- assets/sass/setup.sass | 8 +++++- site/layouts/index.html | 2 +- 4 files changed, 14 insertions(+), 46 deletions(-) diff --git a/assets/sass/constants.sass b/assets/sass/constants.sass index 09e548f..de37627 100644 --- a/assets/sass/constants.sass +++ b/assets/sass/constants.sass @@ -2,11 +2,9 @@ * Breakpoints */ $break-0: 30rem -$break-1: 50rem +$break-1: 48rem $break-2: 64rem -$break-3: 100rem -$break-4: 120rem -$break-5: 160rem +$break-3: 80rem /** * Layers @@ -29,5 +27,6 @@ $font-weight-bold: 600 /** * Base measurements */ +$max-width: 80rem $units: 1rem $transition-duration: 350ms diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index 4377d27..9ac7c3c 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -9,45 +9,8 @@ main.albums +break(min-max, $break-0, $break-1) grid-template-columns: repeat(2, 1fr) - +break(min-max, $break-1, $break-2) + +break(min-max, $break-1, $break-3) grid-template-columns: repeat(3, 1fr) - +break(min-max, $break-2, $break-3) - grid-template-columns: repeat(4, 1fr) - - +break(min-max, $break-3, $break-4) - grid-template-columns: repeat(5, 1fr) - - +break(min-max, $break-4, $break-5) - grid-template-columns: repeat(6, 1fr) - - +break(min, $break-5) - grid-template-columns: repeat(8, 1fr) - - // display: flex - // flex-direction: row - // flex-wrap: wrap - -// main.albums -// column-gap: $units - -// +break(min-max, 0, $break-0) -// column-count: 1 - -// +break(min-max, $break-0, $break-1) -// column-count: 2 - -// +break(min-max, $break-1, $break-2) -// column-count: 3 - -// +break(min-max, $break-2, $break-3) -// column-count: 4 - -// +break(min-max, $break-3, $break-4) -// column-count: 5 - -// +break(min-max, $break-4, $break-5) -// column-count: 6 - -// +break(min, $break-5) -// column-count: 8 \ No newline at end of file + +break(min, $break-3) + grid-template-columns: repeat(4, 1fr) \ No newline at end of file diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index 19fc313..e0dad01 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -4,4 +4,10 @@ box-sizing: border-box body - padding: $units / 4 \ No newline at end of file + display: flex + justify-content: center + padding: $units / 4 + +main + width: 100vw + max-width: $max-width \ No newline at end of file diff --git a/site/layouts/index.html b/site/layouts/index.html index 29c765e..033c04f 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -7,7 +7,7 @@ {{ partial "header" . }}
{{ $photos := where .Data.Pages "Section" "photos" }} - {{ range first 30 $photos }} + {{ range first 50 $photos }} {{ .Render "card" }} {{ end }}
From 123a237fb50a8d5caffc57b94921a9a49097747d Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 11:07:21 +0200 Subject: [PATCH 22/66] Tweaks to fix browser rendering issues. --- assets/sass/cards.sass | 7 ++++++- assets/sass/constants.sass | 4 ++-- assets/sass/layouts/landing.sass | 9 +++------ site/layouts/photos/card.html | 4 ++-- 4 files changed, 13 insertions(+), 11 deletions(-) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index dae2ca7..dfeb068 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -2,11 +2,16 @@ * Photo card */ figure.photo-card + position: relative + min-height: $units * 20 + &.orientation-portrait grid-row-end: span 2 img - display: block + position: absolute + top: 0 + left: 0 width: 100% height: 100% object-fit: cover \ No newline at end of file diff --git a/assets/sass/constants.sass b/assets/sass/constants.sass index de37627..aaced32 100644 --- a/assets/sass/constants.sass +++ b/assets/sass/constants.sass @@ -4,7 +4,7 @@ $break-0: 30rem $break-1: 48rem $break-2: 64rem -$break-3: 80rem +$break-3: 90rem /** * Layers @@ -27,6 +27,6 @@ $font-weight-bold: 600 /** * Base measurements */ -$max-width: 80rem +$max-width: 90rem $units: 1rem $transition-duration: 350ms diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index 9ac7c3c..d6d637d 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -6,11 +6,8 @@ main.albums +break(min-max, 0, $break-0) grid-template-columns: 1fr - +break(min-max, $break-0, $break-1) + +break(min-max, $break-0, $break-2) grid-template-columns: repeat(2, 1fr) - +break(min-max, $break-1, $break-3) - grid-template-columns: repeat(3, 1fr) - - +break(min, $break-3) - grid-template-columns: repeat(4, 1fr) \ No newline at end of file + +break(min, $break-2) + grid-template-columns: repeat(3, 1fr) \ No newline at end of file diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index 338c5b8..d0dfb1c 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -4,8 +4,8 @@ {{ $height := .Params.height }}
\ No newline at end of file From b17a18b13b660c9b4a53f06db50044f5721214bd Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 12:16:38 +0200 Subject: [PATCH 23/66] Grid layout for the body and the header. --- assets/sass/partials.sass | 16 ++++++++++++++++ assets/sass/setup.sass | 12 +++++++++--- site/layouts/index.html | 2 +- site/layouts/partials/footer.html | 1 + site/layouts/partials/header.html | 14 +++++++++++++- site/layouts/photos/card.html | 1 - 6 files changed, 40 insertions(+), 6 deletions(-) diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass index e69de29..75a067f 100644 --- a/assets/sass/partials.sass +++ b/assets/sass/partials.sass @@ -0,0 +1,16 @@ +/** + * Header + */ +header + display: grid + grid-template-columns: 3fr + grid-template-rows: 1fr + + > a + grid-column: 1 / 2 + nav + grid-column: 2 / 3 + +/** + * Footer + */ \ No newline at end of file diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index e0dad01..ce4a33a 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -4,10 +4,16 @@ box-sizing: border-box body - display: flex - justify-content: center + display: grid + grid-template-columns: 1fr + grid-template-rows: 1fr padding: $units / 4 + max-width: $max-width + margin: 0 auto main width: 100vw - max-width: $max-width \ No newline at end of file + max-width: $max-width + +ul + list-style: none \ No newline at end of file diff --git a/site/layouts/index.html b/site/layouts/index.html index 033c04f..5b3c178 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -7,7 +7,7 @@ {{ partial "header" . }}
{{ $photos := where .Data.Pages "Section" "photos" }} - {{ range first 50 $photos }} + {{ range first 20 $photos }} {{ .Render "card" }} {{ end }}
diff --git a/site/layouts/partials/footer.html b/site/layouts/partials/footer.html index f893ae1..c656019 100644 --- a/site/layouts/partials/footer.html +++ b/site/layouts/partials/footer.html @@ -1,2 +1,3 @@
+ This is the footer
\ No newline at end of file diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html index 76b0812..2377210 100644 --- a/site/layouts/partials/header.html +++ b/site/layouts/partials/header.html @@ -1,7 +1,19 @@ +{{$albums := where .Data.Pages "Section" "albums" }}

- {{ .Site.Params.title }} + {{ .Site.Title }}

+
\ No newline at end of file diff --git a/site/layouts/photos/card.html b/site/layouts/photos/card.html index d0dfb1c..eee0ecd 100644 --- a/site/layouts/photos/card.html +++ b/site/layouts/photos/card.html @@ -7,5 +7,4 @@ data-src="{{ $base }}/image/upload/w_480/v{{ .Params.cl_version }}/{{ .Params.cl_public_id }}.jpg" data-srcset="{{ $base }}/image/upload/w_480/v{{ .Params.cl_version }}/{{ .Params.cl_public_id }}.jpg 1x, {{ $base }}/image/upload/w_960/v{{ .Params.cl_version }}/{{ .Params.cl_public_id }}.jpg 2x" /> -
\ No newline at end of file From 2e5770e81db02246a5f38b49995e156a0b16182c Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 13:26:40 +0200 Subject: [PATCH 24/66] Added the basic layout for the header. --- assets/sass/partials.sass | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass index 75a067f..99ddf79 100644 --- a/assets/sass/partials.sass +++ b/assets/sass/partials.sass @@ -3,14 +3,13 @@ */ header display: grid - grid-template-columns: 3fr + grid-template-columns: repeat(auto-fill, 50%) grid-template-rows: 1fr - - > a - grid-column: 1 / 2 + nav - grid-column: 2 / 3 - -/** - * Footer - */ \ No newline at end of file + display: grid + align-items: center + ul + display: grid + grid-auto-flow: column + grid-gap: $units \ No newline at end of file From 5ad89b9612d9ddfa91fab98029468dd8b4d17f9a Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 14:10:58 +0200 Subject: [PATCH 25/66] Adding animations for image lazy loading. --- assets/sass/cards.sass | 8 ++++++++ assets/scripts/main.js | 6 ++++-- assets/scripts/utils.js | 38 ++++++++++++++++++++++++++++++++++++-- 3 files changed, 48 insertions(+), 4 deletions(-) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index dfeb068..70af4b3 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -5,6 +5,14 @@ figure.photo-card position: relative min-height: $units * 20 + +transitionWithProperties((transform, opacity), 700ms) + transform: translate3d(0, 30%, 0) + opacity: 0 + + &.loaded + transform: translate3d(0, 0, 0) + opacity: 1 + &.orientation-portrait grid-row-end: span 2 diff --git a/assets/scripts/main.js b/assets/scripts/main.js index c859659..0f3d631 100644 --- a/assets/scripts/main.js +++ b/assets/scripts/main.js @@ -5,6 +5,8 @@ if(window.cinematt == null) { } onload = () => { - cinematt.utils.makeBars(); - cinematt.utils.loadThumbnails(); + const utils = window.cinematt.utils; + utils.makeBars(); + utils.loadThumbnails(); + document.addEventListener('scroll', utils.throttle(utils.loadThumbnails)); }; \ No newline at end of file diff --git a/assets/scripts/utils.js b/assets/scripts/utils.js index 0ef120e..4d6943e 100644 --- a/assets/scripts/utils.js +++ b/assets/scripts/utils.js @@ -6,6 +6,20 @@ if(window.cinematt == null) { window.cinematt.utils = { + throttle: (fn, limit = 200) => { + let waiting = false; + + return () => { + if(!waiting) { + fn.call(); + waiting = true; + setTimeout(() => { + waiting = false; + }, limit); + } + }; + }, + addGradients: (photo_card) => { let colours = photo_card.getAttribute('data-colours').split(','), step = 100 / colours.length; @@ -32,11 +46,31 @@ window.cinematt.utils = { loadThumbnails: () => { let images = [...document.querySelectorAll('figure img')]; - images.forEach(cinematt.utils.primeImage); + images.filter(image => { + return cinematt.utils.inView(image) && !cinematt.utils.hasLoaded(image); + }).forEach(cinematt.utils.primeImage); + }, + + inView: (node) => { + const { + top, + right, + bottom, + left, + width, + height + } = node.getBoundingClientRect(); + + return top <= window.innerHeight; + }, + + hasLoaded: (node) => { + return node.getAttribute('src') != null; }, imageLoaded: (evt) => { - let figure = evt.target.parentNode; + let image = evt.target, + figure = image.parentNode; figure.removeAttribute('data-colours'); figure.style.backgroundImage = 'none'; figure.classList.add('loaded'); From 0d5d71cd12ad6692d0378f12859f80a06d13cb6e Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 14:21:16 +0200 Subject: [PATCH 26/66] Tweaks to the image lazy load animations. --- assets/sass/cards.sass | 14 ++++++++++---- assets/scripts/utils.js | 10 +++++----- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/assets/sass/cards.sass b/assets/sass/cards.sass index 70af4b3..d30e0d4 100644 --- a/assets/sass/cards.sass +++ b/assets/sass/cards.sass @@ -4,14 +4,20 @@ figure.photo-card position: relative min-height: $units * 20 - - +transitionWithProperties((transform, opacity), 700ms) + +transitionWithProperties((transform, background-position), 250ms) transform: translate3d(0, 30%, 0) - opacity: 0 + background-position: 0px 0px + background-repeat: no-repeat + + img + +transitionWithProperties(opacity, 250ms) + opacity: 0 &.loaded transform: translate3d(0, 0, 0) - opacity: 1 + background-position: 0px $units * 20 + img + opacity: 1.0 &.orientation-portrait grid-row-end: span 2 diff --git a/assets/scripts/utils.js b/assets/scripts/utils.js index 4d6943e..5c77255 100644 --- a/assets/scripts/utils.js +++ b/assets/scripts/utils.js @@ -45,13 +45,13 @@ window.cinematt.utils = { }, loadThumbnails: () => { - let images = [...document.querySelectorAll('figure img')]; + let images = [...document.querySelectorAll('figure.photo-card img')]; images.filter(image => { - return cinematt.utils.inView(image) && !cinematt.utils.hasLoaded(image); + return cinematt.utils.inView(image, 20) && !cinematt.utils.hasLoaded(image); }).forEach(cinematt.utils.primeImage); }, - inView: (node) => { + inView: (node, offset = 0) => { const { top, right, @@ -61,7 +61,7 @@ window.cinematt.utils = { height } = node.getBoundingClientRect(); - return top <= window.innerHeight; + return top + offset <= window.innerHeight; }, hasLoaded: (node) => { @@ -72,7 +72,7 @@ window.cinematt.utils = { let image = evt.target, figure = image.parentNode; figure.removeAttribute('data-colours'); - figure.style.backgroundImage = 'none'; + // figure.style.backgroundImage = 'none'; figure.classList.add('loaded'); } From d4ab25a8c157309bffc267a12f21b671cc557859 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 18:05:19 +0200 Subject: [PATCH 27/66] Removing max width for body. Using grid-template columns to fix this. --- assets/sass/constants.sass | 10 ++++++++++ assets/sass/layouts/landing.sass | 1 + assets/sass/mixins.sass | 2 +- assets/sass/partials.sass | 22 ++++++++++++++++++++-- assets/sass/setup.sass | 19 ++++++++++--------- assets/sass/typography.sass | 11 ++++++++++- 6 files changed, 52 insertions(+), 13 deletions(-) diff --git a/assets/sass/constants.sass b/assets/sass/constants.sass index aaced32..7c4341e 100644 --- a/assets/sass/constants.sass +++ b/assets/sass/constants.sass @@ -18,6 +18,10 @@ $z-under: -1 */ $font-family: Gill Sans, Gill Sans MT, Calibri, sans-serif $base-font-size: 1rem +$medium-font-size: $base-font-size * 1.5 +$large-font-size: $base-font-size * 2 +$teaser-font-size: $base-font-size * 4 + $letter-spacing: $base-font-size / 8 $font-weight-light: 100 $font-weight-normal: 300 @@ -30,3 +34,9 @@ $font-weight-bold: 600 $max-width: 90rem $units: 1rem $transition-duration: 350ms + +/** + * Colours + */ +$white: #fff +$black: #000 \ No newline at end of file diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index d6d637d..8d96256 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -1,5 +1,6 @@ main.albums display: grid + grid-column: 2 / 3 grid-column-gap: $units / 4 grid-row-gap: $units / 4 diff --git a/assets/sass/mixins.sass b/assets/sass/mixins.sass index f232c4f..d9da2f9 100644 --- a/assets/sass/mixins.sass +++ b/assets/sass/mixins.sass @@ -3,7 +3,7 @@ @media screen and (min-width: $param-break-1) @content @else if $type == max - @media screen and (max-width: $param-break-2) + @media screen and (max-width: $param-break-1) @content @else if $type == min-max @media screen and (min-width: $param-break-1) and (max-width: $param-break-2 - 0.05rem) diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass index 99ddf79..fe16677 100644 --- a/assets/sass/partials.sass +++ b/assets/sass/partials.sass @@ -2,14 +2,32 @@ * Header */ header + z-index: $z-over + position: fixed + top: 0 + left: 0 + width: 100vw + height: $units * 4 + padding: 0 $units * 4 display: grid grid-template-columns: repeat(auto-fill, 50%) grid-template-rows: 1fr - + background-color: rgba($white, 0.9) + + h1 + line-height: $units * 4 + nav display: grid align-items: center ul display: grid grid-auto-flow: column - grid-gap: $units \ No newline at end of file + grid-gap: $units + +/** + * Footer + */ +footer + grid-row: 2 / 3 + grid-column: 1 / 3 \ No newline at end of file diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index ce4a33a..00318e1 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -5,15 +5,16 @@ body display: grid - grid-template-columns: 1fr - grid-template-rows: 1fr - padding: $units / 4 - max-width: $max-width - margin: 0 auto + grid-template-columns: 1fr minmax(auto, $max-width) 1fr + grid-template-rows: 3fr + margin: $units * 4 auto -main - width: 100vw - max-width: $max-width + +break(max, $break-3) + padding: $units / 4 ul - list-style: none \ No newline at end of file + list-style: none + +a + text-decoration: none + color: currentColor \ No newline at end of file diff --git a/assets/sass/typography.sass b/assets/sass/typography.sass index a61a443..50306d1 100644 --- a/assets/sass/typography.sass +++ b/assets/sass/typography.sass @@ -1,4 +1,13 @@ body font-family: $font-family -webkit-font-smoothing: antialiased - -moz-osx-font-smoothing: grayscale \ No newline at end of file + -moz-osx-font-smoothing: grayscale + +ul, +p + font-size: $base-font-size + +header + h1 + font-weight: $font-weight-light + font-size: $large-font-size \ No newline at end of file From 4ecb50eff37c7dfc515beb247b41f1a457f3474f Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 18:56:12 +0200 Subject: [PATCH 28/66] Making better use of CSS grids for overall page layout --- assets/sass/partials.sass | 64 +++++++++++++++++++++---------- assets/sass/setup.sass | 3 +- site/layouts/index.html | 1 + site/layouts/partials/header.html | 12 ------ site/layouts/partials/nav.html | 12 ++++++ 5 files changed, 58 insertions(+), 34 deletions(-) diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass index fe16677..51f31ae 100644 --- a/assets/sass/partials.sass +++ b/assets/sass/partials.sass @@ -2,32 +2,56 @@ * Header */ header - z-index: $z-over - position: fixed - top: 0 - left: 0 - width: 100vw - height: $units * 4 - padding: 0 $units * 4 + grid-row: 1 / 2 + grid-column: 2 / 3 display: grid - grid-template-columns: repeat(auto-fill, 50%) - grid-template-rows: 1fr - background-color: rgba($white, 0.9) + align-items: center - h1 - line-height: $units * 4 +nav + grid-row: 1 / 2 + grid-column: 2 / 3 - nav + display: grid + grid-template-columns: repeat(2, 1fr) + grid-template-rows: 1fr + align-items: center + + ul + grid-column: 2 / 3 display: grid - align-items: center - ul - display: grid - grid-auto-flow: column - grid-gap: $units + grid-auto-flow: column + grid-gap: $units + + // z-index: $z-over + // background-color: rgba($white, 0.9) + // height: $units * 4 + // align-items: center + + // +break(max, $break-2) + // position: fixed + // top: 0 + // left: 0 + // width: 100vw + + + // +break(min, $break-2) + // grid-row: 1 / 2 + // grid-column: 2 / 3 + // display: grid + // grid-template-columns: repeat(2, 1fr) + // grid-template-rows: 1fr + + // nav + // display: grid + // align-items: center + // ul + // display: grid + // grid-auto-flow: column + // grid-gap: $units /** * Footer */ footer - grid-row: 2 / 3 - grid-column: 1 / 3 \ No newline at end of file + grid-row: 3 / 4 + grid-column: 2 / 3 \ No newline at end of file diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index 00318e1..f49d0e2 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -6,8 +6,7 @@ body display: grid grid-template-columns: 1fr minmax(auto, $max-width) 1fr - grid-template-rows: 3fr - margin: $units * 4 auto + grid-template-rows: $units * 4 1fr $units * 4 +break(max, $break-3) padding: $units / 4 diff --git a/site/layouts/index.html b/site/layouts/index.html index 5b3c178..80ba70c 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -5,6 +5,7 @@ {{ partial "header" . }} + {{ partial "nav" . }}
{{ $photos := where .Data.Pages "Section" "photos" }} {{ range first 20 $photos }} diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html index 2377210..b1ef94a 100644 --- a/site/layouts/partials/header.html +++ b/site/layouts/partials/header.html @@ -1,19 +1,7 @@ -{{$albums := where .Data.Pages "Section" "albums" }}

{{ .Site.Title }}

-
\ No newline at end of file diff --git a/site/layouts/partials/nav.html b/site/layouts/partials/nav.html index e69de29..183bb89 100644 --- a/site/layouts/partials/nav.html +++ b/site/layouts/partials/nav.html @@ -0,0 +1,12 @@ +{{$albums := where .Data.Pages "Section" "albums" }} + \ No newline at end of file From a5725e155cf637928c34d58799df07df33877fa2 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 20:50:22 +0200 Subject: [PATCH 29/66] Playing around with grid to get the responsive header rendered. --- assets/sass/layouts/landing.sass | 1 + assets/sass/partials.sass | 79 +++++++++++++++++-------------- site/layouts/partials/header.html | 3 ++ 3 files changed, 47 insertions(+), 36 deletions(-) diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass index 8d96256..1051c22 100644 --- a/assets/sass/layouts/landing.sass +++ b/assets/sass/layouts/landing.sass @@ -1,6 +1,7 @@ main.albums display: grid grid-column: 2 / 3 + grid-row: 2 / 3 grid-column-gap: $units / 4 grid-row-gap: $units / 4 diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass index 51f31ae..00a2366 100644 --- a/assets/sass/partials.sass +++ b/assets/sass/partials.sass @@ -6,48 +6,55 @@ header grid-column: 2 / 3 display: grid align-items: center + background-color: rgba($white, 0.8) + + +break(max, $break-2) + grid-template-columns: 1fr $units * 4 + grid-template-rows: 1fr + + button + grid-column: 2 / 3 + height: $units * 4 + + +break(min, $break-2) + button + display: none nav - grid-row: 1 / 2 - grid-column: 2 / 3 + +break(max, $break-2) + z-index: $z-over + grid-row: 2 / 4 + grid-column: 2 / 4 + background-color: rgba($white, 0.96) - display: grid - grid-template-columns: repeat(2, 1fr) - grid-template-rows: 1fr - align-items: center + display: grid + grid-template-rows: minmax(auto, 75vh) + grid-template-columns: 1fr + + ul + grid-row: 1 + grid-column: 1 - ul + display: grid + grid-template-columns: 1fr + grid-template-rows: auto + align-items: center + justify-items: center + + +break(min, $break-2) + grid-row: 1 / 2 grid-column: 2 / 3 + display: grid - grid-auto-flow: column - grid-gap: $units - - // z-index: $z-over - // background-color: rgba($white, 0.9) - // height: $units * 4 - // align-items: center - - // +break(max, $break-2) - // position: fixed - // top: 0 - // left: 0 - // width: 100vw - - - // +break(min, $break-2) - // grid-row: 1 / 2 - // grid-column: 2 / 3 - // display: grid - // grid-template-columns: repeat(2, 1fr) - // grid-template-rows: 1fr - - // nav - // display: grid - // align-items: center - // ul - // display: grid - // grid-auto-flow: column - // grid-gap: $units + grid-template-columns: repeat(2, 1fr) + grid-template-rows: 1fr + align-items: center + + ul + grid-column: 2 / 3 + display: grid + grid-auto-flow: column + grid-gap: $units /** * Footer diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html index b1ef94a..c5b1f5d 100644 --- a/site/layouts/partials/header.html +++ b/site/layouts/partials/header.html @@ -4,4 +4,7 @@

{{ .Site.Title }}

+ \ No newline at end of file From d1fca9abe7e6e2142fa6b5671e4c17d9a32a0056 Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 22:52:03 +0200 Subject: [PATCH 30/66] Adding menu button svg. --- assets/sass/partials.sass | 10 ++++++++++ assets/sass/setup.sass | 7 ++++++- assets/svg/sprite.svg | 32 +++++++++++++++++++++++++++++++ gulpfile.js | 10 +++++----- site/layouts/partials/header.html | 9 ++++++++- 5 files changed, 61 insertions(+), 7 deletions(-) create mode 100644 assets/svg/sprite.svg diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass index 00a2366..5e9736a 100644 --- a/assets/sass/partials.sass +++ b/assets/sass/partials.sass @@ -8,6 +8,16 @@ header align-items: center background-color: rgba($white, 0.8) + button + svg.button-close + display: none + + &.opened + svg.button-menu + display: none + svg.button-close + display: unset + +break(max, $break-2) grid-template-columns: 1fr $units * 4 grid-template-rows: 1fr diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index f49d0e2..406d967 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -16,4 +16,9 @@ ul a text-decoration: none - color: currentColor \ No newline at end of file + color: currentColor + +button + background-color: inherit + border: none + outline: none \ No newline at end of file diff --git a/assets/svg/sprite.svg b/assets/svg/sprite.svg new file mode 100644 index 0000000..300859c --- /dev/null +++ b/assets/svg/sprite.svg @@ -0,0 +1,32 @@ + + + + + + Close + + + + + + + + Menu + + + + + + + + + + End + + + + + + + \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index fccfdf4..82e9469 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -5,7 +5,7 @@ const gulp = require('gulp'), const dest = { scripts: process.env['SCRIPTS_DEST'], - svgs: process.env['SVG_DEST'], + svg: process.env['SVG_DEST'], favicons: process.env['FAVICONS_DEST'], watch: process.env['WATCH'] != null }; @@ -14,7 +14,7 @@ const tasks = () => { let items = [ 'debug', 'scripts', - 'svgs', + 'svg', 'favicons' ]; @@ -44,10 +44,10 @@ gulp.task('favicons', () => { .pipe(gulp.dest(dest.favicons)); }); -gulp.task('svgs', () => { +gulp.task('svg', () => { return gulp - .src('./assets/svgs/**/*') - .pipe(gulp.dest(dest.svgs)); + .src('./assets/svg/**/*') + .pipe(gulp.dest(dest.svg)); }); gulp.task('watch', () => { diff --git a/site/layouts/partials/header.html b/site/layouts/partials/header.html index c5b1f5d..4c41f45 100644 --- a/site/layouts/partials/header.html +++ b/site/layouts/partials/header.html @@ -5,6 +5,13 @@

\ No newline at end of file From e6da212cb4d829037b2b5496f2113e5fc026d83e Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 23:24:42 +0200 Subject: [PATCH 31/66] Responsive nav menu toggle to reveal now working. --- assets/sass/partials.sass | 6 ++++++ assets/scripts/main.js | 3 ++- assets/scripts/utils.js | 27 +++++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass index 5e9736a..451dff2 100644 --- a/assets/sass/partials.sass +++ b/assets/sass/partials.sass @@ -41,6 +41,12 @@ nav grid-template-rows: minmax(auto, 75vh) grid-template-columns: 1fr + +transitionWithProperties(transform) + transform: translate3d(calc(100% + 4px), 0, 0) + + &.revealed + transform: translate3d(0, 0, 0) + ul grid-row: 1 grid-column: 1 diff --git a/assets/scripts/main.js b/assets/scripts/main.js index 0f3d631..455e4fe 100644 --- a/assets/scripts/main.js +++ b/assets/scripts/main.js @@ -8,5 +8,6 @@ onload = () => { const utils = window.cinematt.utils; utils.makeBars(); utils.loadThumbnails(); - document.addEventListener('scroll', utils.throttle(utils.loadThumbnails)); + utils.primeTapEvent('button', utils.toggleMenuReveal); + document.addEventListener('scroll', utils.throttle(utils.loadThumbnails)); }; \ No newline at end of file diff --git a/assets/scripts/utils.js b/assets/scripts/utils.js index 5c77255..07cfba7 100644 --- a/assets/scripts/utils.js +++ b/assets/scripts/utils.js @@ -20,6 +20,33 @@ window.cinematt.utils = { }; }, + primeTapEvent: (selector, fn) => { + const items = document.querySelectorAll(selector); + items.forEach(item => { + if('onpointerdown' in window) { + item.addEventListener('pointerdown', fn); + } + else if('ontouchstart' in window) { + item.addEventListener('touchstart', fn); + } + else { + item.addEventListener('click', fn); + } + }); + }, + + toggleMenuReveal: () => { + let nav = document.querySelector('nav'), + button = document.querySelector('button'); + + if(nav.classList.toggle('revealed')) { + button.classList.add('opened'); + } + else { + button.classList.remove('opened'); + } + }, + addGradients: (photo_card) => { let colours = photo_card.getAttribute('data-colours').split(','), step = 100 / colours.length; From f9d87c84d82baf1140c42e3c6c670d09cc3a12cc Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 23:29:57 +0200 Subject: [PATCH 32/66] Adding end mark for the footer. --- assets/sass/partials.sass | 11 ++++++++++- assets/sass/setup.sass | 2 +- site/layouts/partials/footer.html | 7 ++++++- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/assets/sass/partials.sass b/assets/sass/partials.sass index 451dff2..024796b 100644 --- a/assets/sass/partials.sass +++ b/assets/sass/partials.sass @@ -77,4 +77,13 @@ nav */ footer grid-row: 3 / 4 - grid-column: 2 / 3 \ No newline at end of file + grid-column: 2 / 3 + + display: grid + // grid-template-rows: $units * 4 1fr $units * 4 + grid-template-columns: 1fr + align-items: center + justify-items: center + + a + grid-row: 1 / 3 \ No newline at end of file diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index 406d967..b7c3323 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -6,7 +6,7 @@ body display: grid grid-template-columns: 1fr minmax(auto, $max-width) 1fr - grid-template-rows: $units * 4 1fr $units * 4 + grid-template-rows: $units * 4 1fr $units * 6 +break(max, $break-3) padding: $units / 4 diff --git a/site/layouts/partials/footer.html b/site/layouts/partials/footer.html index c656019..7afb552 100644 --- a/site/layouts/partials/footer.html +++ b/site/layouts/partials/footer.html @@ -1,3 +1,8 @@ \ No newline at end of file From aff18353b4575455a7ae57969e05d93b3f5263cf Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Mon, 12 Jun 2017 23:54:07 +0200 Subject: [PATCH 33/66] Tidying up JS code to check if a card is in view. --- assets/sass/setup.sass | 2 +- assets/scripts/utils.js | 18 ++++++------------ 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/assets/sass/setup.sass b/assets/sass/setup.sass index b7c3323..575bc2d 100644 --- a/assets/sass/setup.sass +++ b/assets/sass/setup.sass @@ -7,7 +7,7 @@ body display: grid grid-template-columns: 1fr minmax(auto, $max-width) 1fr grid-template-rows: $units * 4 1fr $units * 6 - + overflow-x: hidden +break(max, $break-3) padding: $units / 4 diff --git a/assets/scripts/utils.js b/assets/scripts/utils.js index 07cfba7..1e4ce77 100644 --- a/assets/scripts/utils.js +++ b/assets/scripts/utils.js @@ -74,21 +74,15 @@ window.cinematt.utils = { loadThumbnails: () => { let images = [...document.querySelectorAll('figure.photo-card img')]; images.filter(image => { - return cinematt.utils.inView(image, 20) && !cinematt.utils.hasLoaded(image); + return cinematt.utils.inView(image) && !cinematt.utils.hasLoaded(image); }).forEach(cinematt.utils.primeImage); }, - inView: (node, offset = 0) => { - const { - top, - right, - bottom, - left, - width, - height - } = node.getBoundingClientRect(); - - return top + offset <= window.innerHeight; + inView: (node) => { + let top = node.getBoundingClientRect().top, + height = window.innerHeight; + + return top <= height; }, hasLoaded: (node) => { From 53a7c9138337876d74fd13d9a551d59c33452d7f Mon Sep 17 00:00:00 2001 From: Matt Finucane Date: Tue, 13 Jun 2017 00:38:04 +0200 Subject: [PATCH 34/66] Setting up the grid template for the album detail view. --- assets/sass/layouts/landing.sass | 15 ----------- assets/sass/layouts/pages.sass | 39 +++++++++++++++++++++++++++++ assets/sass/main.sass | 2 +- site/archetypes/album.md | 3 +-- site/content/albums/abandoned.md | 3 +-- site/content/albums/city.md | 1 - site/content/albums/events.md | 1 - site/content/albums/experimental.md | 1 - site/content/albums/landscapes.md | 1 - site/content/albums/music.md | 1 - site/content/albums/nature.md | 1 - site/content/albums/people.md | 1 - site/layouts/albums/single.html | 10 ++++++-- site/layouts/index.html | 2 +- site/layouts/partials/nav.html | 2 +- 15 files changed, 52 insertions(+), 31 deletions(-) delete mode 100644 assets/sass/layouts/landing.sass create mode 100644 assets/sass/layouts/pages.sass diff --git a/assets/sass/layouts/landing.sass b/assets/sass/layouts/landing.sass deleted file mode 100644 index 1051c22..0000000 --- a/assets/sass/layouts/landing.sass +++ /dev/null @@ -1,15 +0,0 @@ -main.albums - display: grid - grid-column: 2 / 3 - grid-row: 2 / 3 - grid-column-gap: $units / 4 - grid-row-gap: $units / 4 - - +break(min-max, 0, $break-0) - grid-template-columns: 1fr - - +break(min-max, $break-0, $break-2) - grid-template-columns: repeat(2, 1fr) - - +break(min, $break-2) - grid-template-columns: repeat(3, 1fr) \ No newline at end of file diff --git a/assets/sass/layouts/pages.sass b/assets/sass/layouts/pages.sass new file mode 100644 index 0000000..5851040 --- /dev/null +++ b/assets/sass/layouts/pages.sass @@ -0,0 +1,39 @@ +/** + * The landing page + */ +main.landing + display: grid + grid-column: 2 / 3 + grid-row: 2 / 3 + grid-column-gap: $units / 4 + grid-row-gap: $units / 4 + + +break(min-max, 0, $break-0) + grid-template-columns: 1fr + + +break(min-max, $break-0, $break-2) + grid-template-columns: repeat(2, 1fr) + + +break(min, $break-2) + grid-template-columns: repeat(3, 1fr) + +/** + * Albums page + */ +main.albums + display: grid + grid-column: 1 / 4 + grid-row: 2 / 3 + grid-template-columns: 1fr minmax(auto, $max-width) 1fr + grid-template-rows: 1fr $units * 6 auto + +section.teaser + grid-row: 1 / 2 + grid-column: 1 / 4 + + img + width: 100% + +section.content + grid-row: 3 / 4 + grid-column: 2 / 3 \ No newline at end of file diff --git a/assets/sass/main.sass b/assets/sass/main.sass index 380ab09..3025651 100644 --- a/assets/sass/main.sass +++ b/assets/sass/main.sass @@ -12,4 +12,4 @@ */ @import "partials" @import "cards" -@import "layouts/landing" +@import "layouts/pages" diff --git a/site/archetypes/album.md b/site/archetypes/album.md index f587c1c..62d409f 100644 --- a/site/archetypes/album.md +++ b/site/archetypes/album.md @@ -4,6 +4,5 @@ description: "" date: "" identifier: "" weight: "" -importance: "" -preview_image: "" +teaser_image: "" --- \ No newline at end of file diff --git a/site/content/albums/abandoned.md b/site/content/albums/abandoned.md index ee09664..69ae541 100644 --- a/site/content/albums/abandoned.md +++ b/site/content/albums/abandoned.md @@ -2,8 +2,7 @@ date: 2017-05-31T13:45:38Z description: "Abandoned" identifier: "abandoned" -importance: "9" -preview_image: "" +preview_image: "cite-foche-reflections" title: "Abandoned" weight: "9" --- diff --git a/site/content/albums/city.md b/site/content/albums/city.md index 2c6f070..223f7d4 100644 --- a/site/content/albums/city.md +++ b/site/content/albums/city.md @@ -2,7 +2,6 @@ date: 2017-05-31T13:42:34Z description: "City" identifier: "city" -importance: "3" title: "City" weight: "3" preview_image: "" diff --git a/site/content/albums/events.md b/site/content/albums/events.md index 4f29ac0..c9c1ca8 100644 --- a/site/content/albums/events.md +++ b/site/content/albums/events.md @@ -2,7 +2,6 @@ date: 2017-05-31T13:44:49Z description: "Events" identifier: "events" -importance: "5" preview_image: "" title: "Events" weight: "5" diff --git a/site/content/albums/experimental.md b/site/content/albums/experimental.md index 1fec707..c287ebc 100644 --- a/site/content/albums/experimental.md +++ b/site/content/albums/experimental.md @@ -2,7 +2,6 @@ date: 2017-05-31T13:42:59Z description: "Experimental" identifier: "experimental" -importance: "4" title: "Experimental" weight: "4" preview_image: "" diff --git a/site/content/albums/landscapes.md b/site/content/albums/landscapes.md index 37f413e..b9972d8 100644 --- a/site/content/albums/landscapes.md +++ b/site/content/albums/landscapes.md @@ -2,7 +2,6 @@ date: 2017-05-31T13:42:04Z description: "Landcapes" identifier: "landscapes" -importance: "2" title: "Landscapes" weight: "2" preview_image: "" diff --git a/site/content/albums/music.md b/site/content/albums/music.md index 2e6c12c..a2d5047 100644 --- a/site/content/albums/music.md +++ b/site/content/albums/music.md @@ -2,7 +2,6 @@ date: 2017-05-31T13:47:34Z description: "Music" identifier: "music" -importance: "8" preview_image: "" title: "Music" weight: "8" diff --git a/site/content/albums/nature.md b/site/content/albums/nature.md index 0d9bdb5..2ea25c0 100644 --- a/site/content/albums/nature.md +++ b/site/content/albums/nature.md @@ -2,7 +2,6 @@ date: 2017-05-31T13:46:14Z description: "Nature" identifier: "nature" -importance: "6" preview_image: "" title: "Nature" weight: "6" diff --git a/site/content/albums/people.md b/site/content/albums/people.md index 3ab9b91..6c1c8fc 100644 --- a/site/content/albums/people.md +++ b/site/content/albums/people.md @@ -2,7 +2,6 @@ date: 2017-05-31T13:41:21Z description: "People" identifier: "people" -importance: "1" title: "People" weight: "1" preview_image: "" diff --git a/site/layouts/albums/single.html b/site/layouts/albums/single.html index 9599949..29d28e4 100644 --- a/site/layouts/albums/single.html +++ b/site/layouts/albums/single.html @@ -5,8 +5,14 @@ {{ partial "header" . }} -
- {{ .Content }} + {{ partial "nav" . }} +
+
+ +
+
+ {{ .Content }} +
{{ partial "footer" . }} {{ partial "scripts" }} diff --git a/site/layouts/index.html b/site/layouts/index.html index 80ba70c..4c47014 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -6,7 +6,7 @@ {{ partial "header" . }} {{ partial "nav" . }} -
+
{{ $photos := where .Data.Pages "Section" "photos" }} {{ range first 20 $photos }} {{ .Render "card" }} diff --git a/site/layouts/partials/nav.html b/site/layouts/partials/nav.html index 183bb89..2f36a6d 100644 --- a/site/layouts/partials/nav.html +++ b/site/layouts/partials/nav.html @@ -1,4 +1,4 @@ -{{$albums := where .Data.Pages "Section" "albums" }} +{{$albums := where .Site.Pages "Section" "albums" }}