${
typeof d.illumination === 'number'
? html`
${this.t('Illumination')}
${formatPercent(this.effectiveLang(), d.illumination <= 1 ? d.illumination * 100 : d.illumination, 0)}
`
: nothing
}
${
typeof d.age === 'number'
? html`
${this.t('Age')}
${this.t('{{count}} days', { count: formatNumber(this.effectiveLang(), d.age, 1) })}
`
: nothing
}
${
d.sign
? html`
${this.t('Sign')}
${d.sign}
`
: nothing
}
${
typeof d.distance === 'number'
? html`
${this.t('Distance')}
${this.t('{{value}}k km', { value: formatNumber(this.effectiveLang(), d.distance / 1000, 0) })}
`
: nothing
}
${
// The tiles above are the ephemeris; the description and the chips that
// belong to it are what the phase is taken to mean.
d.meaning?.description && !this.hideReadings
? html`