blob: 975a68926df72eb71986a5abdf3be749c6e1e9d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import img192w from '$images/scotsoun/sscd017-192w.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img: {
width192: img192w,
},
title: 'Tenement Tales',
longName: 'Tenement Tales',
author: 'Molly Weir',
cdCount: 1,
price: '11.00',
scotsounId: '017',
uploadDate: '2023-08-25',
description: {
sco: 'Thir stories wis else broadcast on Scottish Television unner the same title.',
'en-GB': 'These stories were previously broadcast on Scottish Television under the same title.',
},
trackList: ['A Mess of Potage', 'Entertaining Angels Unawares'],
};
export default cd;
|