import { TimelineElement } from '../../../model/portfolio'; import { html } from '../../../framework/model/misc'; import './timeline-element.scss'; export const generate = ( { date, title, figure, description, more, link }: TimelineElement, showMore: string, showLess: string ): html => `

${date}

${title}

${figure.toHTML()} ${description.toHTML()} ${ more ? `
` : '' } ${link ? link.toHTML() : ''}
`;