-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram-data.js
More file actions
44 lines (44 loc) · 927 Bytes
/
program-data.js
File metadata and controls
44 lines (44 loc) · 927 Bytes
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
const PROGRAM = {
season: '',
songs: [
{
title: '',
credit: '',
soloists: [],
featuring: [],
lyricsKey: '',
},
{
title: 'Song name',
credit: 'John Doe arr. Jay Doe',
soloists: ['Jane Doe', 'Jay Doe'],
featuring: ['Guitar: John Doe'],
lyricsKey: 'song1',
},
'intermission',
],
lyrics: {
song1: `song1 lyrics line 1
song1 lyrics line 2
song1 lyrics line 3`,
},
directorsNotes: `input directors notes here.<br/>
<br/>
In this section, you have to put in those "br" tags if you want new lines to show up (this is different from the lyrics)`,
members: {
singers: [
'John Doe',
'Jane Doe',
'Jay Doe',
],
credits: [
{role: 'Artistic Director', name: 'John Doe'},
{role: 'Accompanist', name: 'Jane Doe'},
],
},
donors: [
'John Doe',
'Jane Doe',
],
};
window.PROGRAM = PROGRAM;