<div class="blockquote-wrapper">
<blockquote cite="#">
<p>This is a quote</p>
</blockquote>
<cite>The author</cite>
</div>
{{#with blockquote}}
<div class="blockquote-wrapper">
<blockquote cite="{{url}}">
<p>{{text}}</p>
</blockquote>
<cite>{{author}}</cite>
</div>
{{/with}}
{
"blockquote": {
"url": "#",
"text": "This is a quote",
"author": "The author"
}
}
.blockquote-wrapper {
blockquote {
margin: 0;
padding: $margin-s;
background-color: $c-background-light;
}
cite {
display: block;
padding: $margin-s;
&:before {
content: "-";
}
}
}
There are no notes for this item.