diff --git a/src/lib/Interview.svelte b/src/lib/Interview.svelte index aee6678..923bf3c 100644 --- a/src/lib/Interview.svelte +++ b/src/lib/Interview.svelte @@ -29,6 +29,9 @@
Jméno { data.narrator.gender == "M" ? "narátora" : "narátorky" }
{ data.narrator.name } + {#if data.interview.narrator_abbrev } + ({ data.interview.narrator_abbrev }) + {/if}
Ročník narození
{ data.narrator.birth_year } @@ -38,6 +41,18 @@
Místo rozhovoru
{ data.interview.place } + +
Jméno tazatele +
{ data.interview.interviewer } + {#if data.interview.interviewer_abbrev } + ({ data.interview.interviewer_abbrev }) + {/if} + +
Délka rozhovoru +
{ data.interview.length } + +
Projekt +
{ data.interview.project }
Přepis
{ data.interview.transcriber }
@@ -47,12 +62,6 @@
{ data.interview.redaction }
{/if} -
Délka rozhovoru -
{ data.interview.length } - -
Projekt -
{ data.interview.project } -
{#if data.interview.redaction } @@ -67,7 +76,7 @@
- {#if data.narrator.photo } + {#if data.narrator.photo && data.narrator.photo.license_text }

Fotografie

{ data.narrator.photo.license_text } diff --git a/src/routes/interviews/lubor-kopecky/interview.ts b/src/routes/interviews/lubor-kopecky/interview.ts index ee693e7..526a408 100644 --- a/src/routes/interviews/lubor-kopecky/interview.ts +++ b/src/routes/interviews/lubor-kopecky/interview.ts @@ -13,7 +13,7 @@ export const data: InterviewData = { photo: { url: "/interviews/lubor-kopecky.jpg", details_url: "", - license_text: "" + // license_text: "" } }, interview: { diff --git a/src/types.ts b/src/types.ts index 64b2254..c9f96b2 100644 --- a/src/types.ts +++ b/src/types.ts @@ -3,7 +3,7 @@ type Gender = 'M' | 'F'; export interface Photo { url: string; details_url: string; - license_text: string; + license_text?: string; } export interface InterviewData { @@ -21,7 +21,9 @@ export interface InterviewData { interview: { date: Date; place: string; + narrator_abbrev?: string; interviewer: string; + interviewer_abbrev?: string; length: string; project: string; informed_agreement: boolean; diff --git a/static/interviews/lubor-kopecky.jpg b/static/interviews/lubor-kopecky.jpg index a86d0e9..59be34e 100644 Binary files a/static/interviews/lubor-kopecky.jpg and b/static/interviews/lubor-kopecky.jpg differ