Skip to content

Commit

Permalink
fix(quote): ensure cite content is in same column as quote text when …
Browse files Browse the repository at this point in the history
…there is an image
  • Loading branch information
rpeterman-gp committed Dec 6, 2024
1 parent 353b5a7 commit 72635e6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions _includes/components/quote.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
{%- if include.image -%}
{% picture quote-image {{ include.image }} --alt {{ include.alt }} %}
{%- endif -%}
<p class="quote-text">{{ include.text }}</p>
{%- if include.citation -%}
<cite class="quote-citation">{{ include.citation }}</cite>
{%- endif -%}
<div>
<p class="quote-text">{{ include.text }}</p>
{%- if include.citation -%}
<cite class="quote-citation">{{ include.citation }}</cite>
{%- endif -%}
</div>
</blockquote>

0 comments on commit 72635e6

Please sign in to comment.