diff --git a/src/routes/[country]/[location].svelte b/src/routes/[country]/[location].svelte deleted file mode 100644 index 12fd75f..0000000 --- a/src/routes/[country]/[location].svelte +++ /dev/null @@ -1 +0,0 @@ -

Hello location

\ No newline at end of file diff --git a/src/routes/[country]/[location]/[photo].svelte b/src/routes/[country]/[location]/[photo].svelte new file mode 100644 index 0000000..fb67c2f --- /dev/null +++ b/src/routes/[country]/[location]/[photo].svelte @@ -0,0 +1 @@ +photo page \ No newline at end of file diff --git a/src/routes/[country]/[location]/index.svelte b/src/routes/[country]/[location]/index.svelte new file mode 100644 index 0000000..4406bd8 --- /dev/null +++ b/src/routes/[country]/[location]/index.svelte @@ -0,0 +1,65 @@ + + +

Hello {data.name}

+ +{#each photos as { image: { id, title }, slug }} +
+ + {title}, {data.name} + +
+{/each} + + + \ No newline at end of file