blob: 81b1c954500276c711a35c1f0dbcf2ac85e43e8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import img from '$images/scotsoun/sscd017.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img,
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;
|