Skip to content

Commit

Permalink
Fix alt text
Browse files Browse the repository at this point in the history
  • Loading branch information
FX-Wood committed Nov 8, 2023
1 parent 517c250 commit be62710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pages/events/$id.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function ({ html, state = {} }) {
<! -- loop through talks -->
${hasTalks ? talks.map(t => `
<h4 style="font-family: headline-gothic-atf-round, sans-serif; font-weight: 700; font-size: 24px;">${t.title} by ${t.speaker.name}</h4>
<p><img width="200" alt="${t.title}" src="https://seattlejs.com/_public/images/speakers/${t.speaker.photo}" title="${t.speaker.name}"></p>
<p><img width="200" alt="photo of ${t.speaker.name}" src="https://seattlejs.com/_public/images/speakers/${t.speaker.photo}" title="${t.speaker.name}"></p>
${description && `<p>${marked(description)}</p>` }
`).join('') : null }
<!-- end loop -->
Expand Down

0 comments on commit be62710

Please sign in to comment.