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
|
import img192w from '$images/lallans/issue103-192w.webp';
import img274w from '$images/lallans/issue103-274w.webp';
import type LallansIssue from '$types/LallansIssue';
const issue: LallansIssue = {
issueNumber: 103,
img: {
width192: img192w,
width274: img274w,
},
issueName: 'Yuiltide 2023',
price: '10.00',
uploadDate: '2024-09-18',
description: {
'en-GB': 'The hundred-and-third issue of the Lallans magazine.',
sco: 'The hunner-an-thrid issue o the Lallans magazine.',
},
contributors: [
'Brendan McCluskey',
'William Dunbar',
'Keith Wood',
'Robert Duncan',
'Carlos Llaza',
'Dorothy Lawrenson',
'Alan Millar',
'Jerry Randalls',
'Nicola Furrie',
'John Burns',
'Dauvit Horsbroch',
'Andrew Matthews',
'John Erskine',
'Sheena Blackhall',
'Ann Jones',
'George T Watt',
'Jim Aitken',
'Jock Stein',
'Fred Freeman',
'Tom Ellett',
'WS Milne',
'Joe Carstairs',
'Colin MacKenzie',
'James Sinclair',
'Hamish Scott',
'Donald Adamson',
'Aino Krohn',
'Ross MacDiarmid',
'Maureen Sangster',
'Frances Robson',
'Derrick McClure',
'Brithers Grimm',
'Irene Howat',
'Alastair Mcleish',
'AC Clarke',
'Rob McClure',
'Alistair Lawrie',
'Andrew Urquhart',
'Ian Nimmo White',
'Elaine Morton',
'Hamish Wallochie',
'Ann MacKinnon',
],
};
export default issue;
|