blob: ec6482d2f57c3ab1eb5dc36e9a8a868bc1c3b758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import img from '$images/scotsoun/sscd061.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img,
title: 'Robert Garioch 1909-1981',
subtitle: 'In Mind o a Makar',
longName: 'Robert Garioch 1909-1981 – In Mind o a Makar',
author: 'Robert Garioch',
cdCount: 1,
price: '11.00',
scotsounId: '061',
uploadDate: '2023-08-25',
trackList: [
'Heard in the Cougate',
'Fi’baw in the street',
'Edwin Morgan',
'Elegy on Maggie Johnston (Ramsay)',
],
};
export default cd;
|