Skip to content
Snippets Groups Projects
Commit 9e2997ca authored by Michael Fanini's avatar Michael Fanini
Browse files

Issue #3502873 by g4mbini: [2.0.x] add Blockquote component

parent d8a804bb
No related branches found
No related tags found
1 merge request!2Issue #3502873 by g4mbini: [2.0.x] add Blockquote component
name: Blockquote
description: "Blockquote is used for citations."
group: Content
links:
- "https://picocss.com/docs/typography#blockquote"
slots:
quote:
title: Quote
description: "Blockquote quote."
cite:
title: Cite
description: "Blockquote cite."
name: Default
slots:
quote: Design is a funny word. Some people think design means how it looks. But of course, if you dig deeper, it's really how it works.
cite: Steve Jobs
<blockquote {{ attributes }}>
{% if quote %}
"{{ quote }}"
{% endif %}
{% if cite %}
<footer>
<cite>{{ cite }}</cite>
</footer>
{% endif %}
</blockquote>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment