-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
258 lines (245 loc) · 12.6 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<script setup>
const { $formatMarkdown } = useNuxtApp()
const { locale, locales, setLocale } = useI18n();
const availableLocales = computed(() => {
return (locales.value).filter(i => i.code !== locale.value)
});
const data = {
program: {
key: { speaker: 'Ben Winters', title: 'Reflections on the Multimedia Film-Score Edition and the Textual Instability of Film', time: { hh: 13, mm: 30 }, id: "winters" },
fr1: {
chair: "Tim Kuhlmann", lectures: [{ speaker: 'Derek Greten-Harrison', title: "The 20th Century-Fox Songbook: Restoring a Hollywood Studio's Musical Legacy", time: { hh: 14, mm: 45 }, id: "harrison" },
{ speaker: 'Simone Nowicki', title: 'Edition von Filmmusik Herausforderungen der Multimedialität (Un-) Sichtbarer Krach: Die Marginalisierung und Visualisierung von Geräuschemacher*innen in der Edition von Filmmusik', time: { hh: 15, mm: 30 }, id: "nowicki" }]
},
fr2: {
chair: "Arne Stollberg", lectures: [{ speaker: 'Roberto Calabretto, Luca Cossettini', title: 'The New Musical Writings for Cinema: History, Sources and Compositional Practices', time: { hh: 16, mm: 45 }, id: "calabretto" },
{ speaker: 'Jörg Holzmann', title: 'Tonfilme, Interpretationsforschung und die Herausforderungen der Notation von Bewegungen', time: { hh: 17, mm: 30 }, id: "holzmann" },]
},
sa1: {
chair: "Tim Martin Hoffmann", lectures: [
{ speaker: 'Oliver Huck', title: 'Eine Phänomenologie der „Stummfilm-Partitur“. Prolegomena zur Edition von Filmmusik', time: { hh: 9, mm: 0 }, id: "huck" },
{ speaker: 'Fabian Müller', title: 'Komponieren und Inkorporieren. Herausforderungen der Edition von Musik und Film am Beispiel von Joseph Carl Breil', time: { hh: 9, mm: 45 }, id: "mueller" }]
},
sa2: {
chair: "Sandra Kebig", lectures: [{ speaker: 'Johannes C. Gall, Silke Reich', title: 'Hybrid Film Music Editing. The Case of “The Adventures of Robin Hood”', time: { hh: 11, mm: 0 }, id: "gall" },
{ speaker: 'Dennis Ried', title: 'Hybride Edition – Der Inbegriff von Multimedialität?', time: { hh: 11, mm: 45 }, id: "ried" }, { speaker: 'Axel Berndt, Andreas Münzmay', title: 'Digitale Interpretationsedition und Filmmusikedition als multimodale Schwestern – Gemeinsame Herausforderungen und Lösungsansätze', time: { hh: 11, mm: 45 }, id: "berndt" },]
},
sa3:
{
chair: "Gabriele Groll", lectures: [
{ speaker: 'Tessa Gengnagel', title: 'Superstrukturen', time: { hh: 14, mm: 15 }, id: "gengnagel" },
{ speaker: 'Dennis Friedl', title: 'Multimedia in the Scholarly Editing Software Edirom-Online. Current and Future Possibilities', time: { hh: 15, mm: 0 }, id: "friedl" }
]
},
},
roundtable: ["Dennis Friedl", "Tessa Gengnagel", "Oliver Huck", "Andreas Münzmay", "Dennis Ried", "Ben Winters"]
}
</script>
<template>
<div class="container">
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="/website_editing-film-music">
<img src="./assets/Logo-einfarbig-rgb-150dpi.png" alt="Logo" width="30" height="24"
class="d-inline-block align-text-top me-1">
Editing Film Music
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item me-2">
<a class="nav-link active" aria-current="page" href="/website_editing-film-music">{{ $t('nav.home') }}</a>
</li>
<li class="nav-item me-2">
<a class="nav-link" href="#prgrm">{{ $t('nav.program') }}</a>
</li>
<li class="nav-item me-2">
<a class="nav-link" href="#plan">{{ $t('nav.plan') }}</a>
</li>
<li class="nav-item me-2">
<a class="nav-link" href="#contact">{{ $t('nav.contact') }}</a>
</li>
</ul>
</div>
<div class="d-flex">
<button type="button" class="btn btn-outline-secondary" v-for="locale in availableLocales" :key="locale.code"
@click.prevent.stop="setLocale(locale.code)">{{
locale.name }}</button>
</div>
</div>
</nav>
<div class="my-3 mx-lg-6 mx-md-5 mx-sm-3">
<h1 class="sup">{{ $t('headlineSup') }}</h1>
<h1 class="main">{{ $t('headlineMain') }} </h1>
<h1 class="sub">{{ $t('headlineSub') }}</h1>
<i18n-t keypath="msg1" tag="p">
<template v-slot:website>
<a href="https://www.korngold-werkausgabe.de">korngold-werkausgabe.de</a>
</template>
</i18n-t>
<p>{{ $t('msg2') }}</p>
<p>{{ $t('msg3') }}</p>
</div>
<div class="mt-5 mb-3 mx-lg-6 mx-md-5 mx-sm-3">
<h2 id="prgrm" class="mb-3">{{ $t('headlinePrgrm') }}</h2>
<!-- Day 1 -->
<h3 class="mt-5 my-3 secondary">{{ $t('prgrm.day1') }}</h3>
<h4>Goethe-Universität Frankfurt am Main || Uni-Campus Westend || {{ $t('prgrm.room1') }}</h4>
<!-- Keynote -->
<Container class="mt-5 mb-3 keynote">
<h4 class="mb-3">{{ $t('prgrm.keynote') }}</h4>
<Row :id="data.program.key.id">
<Col col="1">{{ $d(new Date(0, 0, 0, data.program.key.time.hh, data.program.key.time.mm, 0), 'short') }}
</Col>
<Col col="3">{{ data.program.key.speaker }}</Col>
<Col col="8"><a class="none" :href="'#' + data.program.key.id + '-abs'">{{ data.program.key.title }}</a></Col>
</Row>
</Container>
<!-- Block 1 -->
<Container class="my-4">
<h4 class="chair">Chair: {{ data.program.fr1.chair }}</h4>
<Row :id="entry.id" class="mb-2" v-for="(entry, index) in data.program.fr1.lectures" :key="index">
<Col col="1">{{ $d(new Date(0, 0, 0, entry.time.hh, entry.time.mm, 0), 'short') }}</Col>
<Col col="3">{{ entry.speaker }}</Col>
<Col col="8"><a class="none" :href="'#' + entry.id + '-abs'">{{ entry.title }}</a></Col>
</Row>
</Container>
<p class="it font-center">{{ $t('prgrm.pause1') }}</p>
<Container class="my-4">
<h4 class="chair">Chair: {{ data.program.fr2.chair }}</h4>
<Row :id="entry.id" class="mb-2" v-for="(entry, index) in data.program.fr2.lectures" :key="index">
<Col col="1">{{ $d(new Date(0, 0, 0, entry.time.hh, entry.time.mm, 0), 'short') }}</Col>
<Col col="3">{{ entry.speaker }}</Col>
<Col col="8"><a class="none" :href="'#' + entry.id + '-abs'">{{ entry.title }}</a></Col>
</Row>
</Container>
<!-- Day2 -->
<h3 class="mt-5 mb-3 secondary">{{ $t('prgrm.day2') }}</h3>
<h4 class="mb-5 ">Goethe-Universität Frankfurt am Main || Uni-Campus Westend || {{ $t('prgrm.room2') }}
</h4>
<!-- Block 2 -->
<Container class="my-4">
<h4 class="chair">Chair: {{ data.program.sa1.chair }}</h4>
<Row :id="entry.id" class="mb-2" v-for="(entry, index) in data.program.sa1.lectures" :key="index">
<Col col="1">{{ $d(new Date(0, 0, 0, entry.time.hh, entry.time.mm, 0), 'short') }}</Col>
<Col col="3">{{ entry.speaker }}</Col>
<Col col="8"><a class="none" :href="'#' + entry.id + '-abs'">{{ entry.title }}</a></Col>
</Row>
</Container>
<p class="it font-center">{{ $t('prgrm.pause1') }}</p>
<Container class="my-4">
<h4 class="chair">Chair: {{ data.program.sa2.chair }}</h4>
<Row class="mb-2" v-for="(entry, index) in data.program.sa2.lectures" :key="index">
<Col col="1"><span v-if="entry.id === 'ried'" class="strike-through">{{ $d(new Date(0, 0, 0, entry.time.hh,
entry.time.mm, 0), 'short') }}</span><span v-else>{{ $d(new Date(0, 0, 0, entry.time.hh,
entry.time.mm, 0), 'short') }}</span></Col>
<Col col="3"><span v-if="entry.id === 'ried'" class="strike-through">{{ entry.speaker }}</span><span v-else>{{
entry.speaker }}</span></Col>
<Col col="8">
<span v-if="entry.id === 'ried'">
<a class="none strike-through" :href="'#' + entry.id + '-abs'">{{ entry.title }}</a> {{ $t('illness') }}
</span>
<span v-else>
<a class="none" :href="'#' + entry.id + '-abs'">{{ entry.title }}</a>
</span>
</Col>
</Row>
</Container>
<p class="it font-center">{{ $t('prgrm.pause2') }}</p>
<!-- Block 3 -->
<Container class="my-4">
<h4 class="chair">Chair: {{ data.program.sa3.chair }}</h4>
<Row :id="entry.id" class="mb-2" v-for="(entry, index) in data.program.sa3.lectures" :key="index">
<Col col="1">{{ $d(new Date(0, 0, 0, entry.time.hh, entry.time.mm, 0), 'short') }}</Col>
<Col col="3">{{ entry.speaker }}</Col>
<Col col="8"><a class="none" :href="'#' + entry.id + '-abs'">{{ entry.title }}</a></Col>
</Row>
</Container>
<p class="it font-center">{{ $t('prgrm.pause1') }}</p>
<h4 class="my-4 primary">{{ $d(new Date(0, 0, 0, 16, 15, 0), 'short') }}–{{ $d(new Date(0, 0, 0, 17, 15, 0),
'short') }} {{ $t('prgrm.roundtable') }}</h4>
<p class="ms-2"><span v-for="(person, i) in data.roundtable" :key="i">{{ person }}<span
v-if="i < data.roundtable.length - 1">,
</span></span>
</p>
</div>
<div div class="mt-5 mb-3 mx-lg-6 mx-md-5 mx-sm-3">
<h2 id="abstracts" class="mb-3"> {{ $t('abstracts.headlineAbstracts') }}</h2>
<Container class="my-4 keynote">
<h4 class="mb-3">Keynote</h4>
<Row :id="$t('abstracts.keynote.id') + '-abs'">
<Col col="12">
<h4 class="caps secondary">{{ $t('abstracts.keynote.speaker') }}</h4>
<a class="none" :href="'#' + $t('abstracts.keynote.id')">
<h3 class="my-3">{{ $t('abstracts.keynote.title') }}</h3>
</a>
<p class="mb-0" v-for="(p, i) in $tm('abstracts.keynote.text')" :key="i" v-html="$formatMarkdown(p)"></p>
</Col>
</Row>
</Container>
<Container class="my-4">
<Row class="mb-4" v-for="(entry, index) in $tm('abstracts.abstracts')" :key="index"
:id="'#' + entry.id + '-abs'">
<Col col="12">
<h4 class="caps secondary">{{ entry.speaker }}</h4>
<a class="none" :href="'#' + entry.id">
<h3 class="my-3">{{ entry.title }}</h3>
</a>
<p v-for="(p, i) in entry.text" :key="i" v-html="$formatMarkdown(p)">
</p>
</Col>
<!-- <Col col="1">
<a :href="entry.download">
PDF
</a>
</Col> -->
</Row>
</Container>
</div>
<div class="mt-5 mb-3 mx-lg-6 mx-md-5 mx-sm-3">
<h2 id="plan" class="mb-3">{{ $t('headlinePlan') }}</h2>
<a href="https://www.uni-frankfurt.de/86262292/lage-und-anfahrtsplan-campus-westend-stand-juni-2024.pdf">
<img class="img-fluid" src="./assets/GU_Lageplan_Campus_Westend_crop.png" />
</a>
</div>
<div class="mt-5 mb-3 mx-lg-6 mx-md-5 mx-sm-3">
<h2 id="contact" class="mb-3">{{ $t('headlineContact') }}</h2>
<i18n-t keypath="msgContact" tag="p">
<template v-slot:mail>
<a href="mailto:[email protected]">[email protected]</a>
</template>
</i18n-t>
</div>
<footer class="sticky mt-5 mb-3 mx-lg-6 mx-md-5 mx-sm-3">
<div class="row my-2">
<div class="col-sm col-md-last col-lg-normal">
<a href="https://dev.korngold-werkausgabe.de/de/about/imprint" class="me-3">Impressum</a>
<a href="https://dev.korngold-werkausgabe.de/de/about/privacy">Datenschutz</a>
</div>
</div>
<div class="row my-2 align-items-center justify-content-around">
<div class="col-10 col-sm-5 col-md-4 col-lg-3">
<a href="https://www.uni-frankfurt.de">
<img class="img-fluid" src="./assets/gu-logo.png" />
</a>
</div>
<div class="col-10 col-sm-5 col-md-4 col-lg-3">
<a href="https://www.adwmainz.de/">
<img class="img-fluid" src="./assets/adw-logo.png" />
</a>
</div>
<div class="col-10 col-sm-5 col-md-4 col-lg-3">
<a href="https://www.akademienunion.de/">
<img class="img-fluid" src="./assets/union-logo.png" />
</a>
</div>
</div>
<div class="row">
<div class="col-sm col-md-last col-lg-normal">© 2021–2024 Erich Wolfgang Korngold Werkausgabe</div>
</div>
</footer>
</div>
</template>