blob: 8c09d690f4ee5646fe5d347690582e3021f8789b (
plain)
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
|
import { t } from '@lingui/macro';
import { SubjectPreview } from '@ts/types/taxonomies';
import Link from 'next/link';
import styles from './PostFooter.module.scss';
const PostFooter = ({ subjects }: { subjects: SubjectPreview[] }) => {
const getSubjects = () => {
return subjects.map((subject) => {
return (
<li key={subject.id}>
<Link href={`/sujet/${subject.slug}`}>
<a>{subject.title}</a>
</Link>
</li>
);
});
};
return (
<footer>
{subjects.length > 0 && (
<>
<dl className={styles.meta}>
<dt>{t`Subjects:`}</dt>
<dd>
<ul className={styles.list}>{getSubjects()}</ul>
</dd>
</dl>
</>
)}
</footer>
);
};
export default PostFooter;
|