diff options
Diffstat (limited to 'src/data')
| -rw-r--r-- | src/data/lallans/index.ts | 1 | ||||
| -rw-r--r-- | src/data/lallans/issue102.ts | 58 |
2 files changed, 59 insertions, 0 deletions
diff --git a/src/data/lallans/index.ts b/src/data/lallans/index.ts index 434ff1c..db443d2 100644 --- a/src/data/lallans/index.ts +++ b/src/data/lallans/index.ts @@ -77,6 +77,7 @@ export const getLallansIssue: LallansIssueGetterTable = { 99: async () => (await import('./issue99')).default, 100: async () => (await import('./issue100')).default, 101: async () => (await import('./issue101')).default, + 102: async () => (await import('./issue102')).default, }; export type LallansIssueGetterTable = { [key in LallansIssueNumber]: () => Promise<LallansIssue> }; diff --git a/src/data/lallans/issue102.ts b/src/data/lallans/issue102.ts new file mode 100644 index 0000000..1ae14e5 --- /dev/null +++ b/src/data/lallans/issue102.ts @@ -0,0 +1,58 @@ +import img192w from '$images/lallans/issue102-192w.webp'; +import img274w from '$images/lallans/issue102-274w.webp'; +import type LallansIssue from '$types/LallansIssue'; + +const issue: LallansIssue = { + issueNumber: 102, + img: { + width192: img192w, + width274: img274w, + }, + issueName: 'Beltane/Lammas 2023', + price: '10.00', + uploadDate: '2023-10-16', + description: { + 'en-GB': 'The hundred-and-second issue of the Lallans magazine.', + sco: 'The hunner-an-saicont issue o the Lallans magazine.', + }, + contributors: [ + 'Finola Scott', + 'Derrick McClure', + 'Jamie Purves', + 'Lord Braxfield', + 'Frieda Morrison', + 'Irene Howat', + 'David Bleiman', + 'Marcus Keaveney', + 'WS Milne', + 'Alistair McLeish', + 'Craig Aitchison', + 'Ian Nimmo White', + 'Maggie Elliott', + 'Jim Aitken', + 'Gordon D Moodie', + 'Walter Perrie', + 'Kevin Connelly', + 'Frances Robson', + 'Jim Roddie', + 'Fred Freeman', + 'George T Watt', + 'Hamish Scott', + 'Rose MacGregor', + 'Nicole Le Marie', + 'Jacqueline Tweddle', + 'Sheena Blackhall', + 'Elaine Morton', + 'Alasdair Allan', + 'Pete Fortune', + 'Tony Beekman', + 'Ewan MacColl', + 'Odveig Klyve', + 'Jock Stein', + 'Michael Swan', + 'Marion Angus', + 'Brendan McCluskey', + ], +}; + +export default issue; |
