summaryrefslogtreecommitdiff
path: root/src/data/committee.ts
blob: 1defd453b617bd0b1a2bbf5e434fb6bcf8b2adb8 (plain)
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
import type { CommitteeMember } from '$types/CommitteeMember';
import CommitteeRole from '$enums/CommitteeRole';

const committee: CommitteeMember[] = [
  {
    name: 'Joe Carstairs',
    roles: [CommitteeRole.Secretar, CommitteeRole.Wabmaister],
    bio: {
      sco: `
        Joe haes been i the Associe syne 2019. He is a Scots leid lairner an
        believes eydent at the Scots leid belangs awbody. He is frae Perth
        but bides eenou i Embro, at he haes bidden in syne 2018.
      `,
      'en-GB': `
        Joe has been in the Society since 2019. He is a Scots language learner
        and believes passionately that the Scots language belongs to everyone.
        He is from Perth but now lives in Edinburgh, where he lived since 2018.
      `,
    },
    imgSrc: '/images/commattee/joe-carstairs.jpg',
  },
  {
    name: 'Tony Beekman',
    roles: [],
  },
  {
    name: 'David Bleiman',
    roles: [CommitteeRole.OrdinaryMember],
    bio: {
      sco: `
        David bides i Cramond on the Embro Riviera. He is a makar, an is the winner
        o the 2020 Sangschaw Prize an 2023 McCash Prize fur poyums in Scots. He
        sells buiks on
        <a href="https://poetrykilt.bigcartel.com/" class="link">
          poetrykilt.bigcartel.com
        </a>.
      `,
      'en-GB': `
        David lives in Cramond on the Edinburgh Riviera. He is a poet, and is the
        winner of the 2020 Sangschaw Prize and 2023 McCash Prize for poems in Scots.
        He sells books on
        <a href="https://poetrykilt.bigcartel.com/" class="link">
          poetrykilt.bigcartel.com
        </a>.
      `,
    },
    imgSrc: '/images/commattee/david-bleiman.jpg',
  },
  {
    name: 'Michael Everson',
    roles: [],
  },
  {
    name: 'William Hershaw',
    roles: [CommitteeRole.LallansEiditor],
    bio: {
      sco: `
        William Hershaw is the praisent eiditor o Lallans. He is a weill-kent
        <a
          class="link"
          href="http://www.scottishpoetrylibrary.org.uk/poetry/poets/william-hershaw"
        >
          poet
        </a> and
        <a
          class="link"
          href="https://en-gb.facebook.com/bowhillplayers"
        >
          singer
        </a>. Brocht up as a native Scots speiker in a Fife
        mining community he trowes that ‘the Scots leid is for aabody’ and
        “gin ye tint your leid ye tint your sel’. Aa Scots leid has a feir in
        Lallans.  William can be contacted at
        <a class="link" href="mailto:w.hershaw678@btinternet">
          w.hershaw678@btinternet
        </a>.
      `,
      'en-GB': `
        William Hershaw is the current editor of Lallans. He is a well-known
        <a
          class="link"
          href="http://www.scottishpoetrylibrary.org.uk/poetry/poets/william-hershaw"
        >
          poet
        </a> and
        <a
          class="link"
          href="https://en-gb.facebook.com/bowhillplayers"
        >
          singer
        </a>. Brought up as a native Scots speaker in a Fife mining
        community, he believes that ‘the Scots language is for everyone’ and
        “if you lose your language you lose your self.’ All Scots language can
        give it a shot in Lallans. William can be contacted at
        <a class="link" href="mailto:w.hershaw678@btinternet">
          w.hershaw678@btinternet
        </a>.
      `,
    },
    imgSrc: '/images/commattee/william-hershaw.jpg',
  },
  {
    name: 'Derrick McClure',
    roles: [],
  },
  {
    name: 'Elaine Morton',
    roles: [],
  },
  {
    name: 'Colin Robertson',
    roles: [],
  },
  {
    name: 'Jack Stuart',
    roles: [],
  },
  {
    name: 'George T Watt',
    roles: [CommitteeRole.MemmershipSecretar],
    bio: {
      sco: `
        George T Watt is a writer in Scots poesie, cutty tales and airticles.
        This cheil haes been published in mony anthologies an magazines as weel
        as Lallans. He haes produced seiveral recordings fur
        <a class="link" href="/en-GB/furthsettins/scotsoun">Scotsoun</a> anaa.
      `,
      'en-GB': `
        George T Watt is a writer in Scots poetry, short stories and articles.
        He has been published in many anthologies and magazines as well as
        Lallans. He has also produced several recordings for
        <a class="link" href="/en-GB/furthsettins/scotsoun">Scotsoun</a>.
      `,
    },
    imgSrc: '/images/commattee/george-t-watt.jpg',
  },
  {
    name: 'Rab Wilson',
    roles: [],
  },
];

export default committee;