${
typeof d.illumination === 'number'
? html`
Illumination
${formatIllumination(d.illumination)}
`
: nothing
}
${
typeof d.age === 'number'
? html`
Age
${formatNumber(d.age, 1)} days
`
: nothing
}
${
d.sign
? html`
Sign
${d.sign}
`
: nothing
}
${
typeof d.distance === 'number'
? html`
Distance
${(d.distance / 1000).toFixed(0)}k km
`
: nothing
}
${
d.meaning?.description
? html`