${this.items.map(item => html`
${item.imageSrc ? html` ${item.title} ` : ``} ${this._truncateText(item.title, this.maxTitleLength)}
${this._truncateText(item.excerpt, this.maxExcerptLength)}
${this.showReadMore ? html` ${this.readMoreAnchorText} ` : ``}
`)}