Skip to content

Commit

Permalink
Add correct HTML markup (#303)
Browse files Browse the repository at this point in the history
Co-authored-by: Mona,Lisa <[email protected]>
  • Loading branch information
olivierobert and matthewmayer authored May 29, 2023
1 parent 59fcaf3 commit 6da4539
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/stylesheets/components/_list-speaker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

&-link:not(:hover) {
color: variables.$base-font-color;
}
}
}

&__bio {
Expand Down
10 changes: 5 additions & 5 deletions src/_components/list_speaker.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
<p class="list-speaker__bio">{{ speaker.bio }}</p>
</div>
{% else %}
{% if speaker.mini_bio %}
<div class="list-speaker__minibio">
{{ speaker.mini_bio }}
</div>
{% endif %}
{% if speaker.mini_bio %}
<small class="list-speaker__bio list-speaker__bio--mini">
{{ speaker.mini_bio }}
</small>
{% endif %}
{% endif %}
</li>
{% endfor %}
Expand Down

0 comments on commit 6da4539

Please sign in to comment.