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
|
import type LallansIssue from '../../types/LallansIssue';
const issue: LallansIssue = {
'issueNumber': 54,
'issueName': '1999',
'price': '4.00',
'description': {
'sco': 'The fifty-fowerth issue o the Lallans magazine.',
'en-GB': 'The fifty-fourth issue of the Lallans magazine.',
}, 'contributions': [
{
'title': 'Verse for a New Watch',
'author': 'TS Law',
}, {
'title': 'Hinniewaff',
'author': 'David C. Purdie',
}, {
'title': 'Regrets',
'author': 'George Hardie',
}, {
'title': 'Howff',
'author': 'Muriel Ferrier',
}, {
'title': 'Better than a slater...',
'author': 'Iain Ferguson ',
}, {
'title': 'Woondit',
'author': 'James Hall Thomson',
}, {
'title': 'Killing Time',
'author': 'Muriel Ferrier',
}, {
'title': 'Hungers',
'author': 'T.S. Law',
}, {
'title': 'Echtyseeven',
'author': 'James Hall Thomson',
}, {
'title': 'Ferry Acrostics',
'author': 'William Hershaw',
}, {
'title': 'Paintin the Mune',
'author': 'James Robertson',
}, {
'title': 'Ferlies furth the yird',
'author': 'Dauvit Horsbroch',
}, {
'title': 'Skim tae there',
'author': 'Andy McNeil',
}, {
'title': 'Objects',
'author': 'Andy McNeil',
}, {
'title': 'Comment',
'author': '',
}, {
'title': 'Gyte',
'author': 'James Hall Thomson',
}, {
'title': 'Passive Izzit?',
'author': 'James Hall Thomson',
}, {
'title': 'Encoonter',
'author': 'George Hardie',
}, {
'title': 'White Slave',
'author': 'Matthew Fitt',
}, {
'title': 'Sea Lifetimes',
'author': 'Christine De Luca',
}, {
'title': 'Love at furst sicht',
'author': 'Iain Ferguson',
}, {
'title': 'A Leid Cawed Love',
'author': 'William Hershaw',
}, {
'title': 'Da Ballad o Maggie Reid',
'author': 'Christine De Luca',
}, {
'title': 'Son of Santa',
'author': 'LA Reid',
}, {
'title': 'Eddie\'s Monologue',
'author': 'Margaret McSeveney',
}, {
'title': 'A Jobe in Haund',
'author': 'TS Law',
}
]
};
export default issue;
|