Story
Style
Guidelines
Style guide
Content editors on this website have sometimes the power to use markdown and/or HTML. This makes this platform extremely flexible and powerful. It is possible to use some classes to style some elements, but also to use some specific meaningful html structures/patterns.
quotes / blockquotes
This is an example of blockquote in HTML and markdown.
<blockquote cite="https://example.com/page">
<p>The investigation showed, among other things, that the dozens of
GrandVision brand shops all must have their own identity. A disconnected
front-end gives you that freedom.</p>
<footer>
<p><cite>Martijn Vrielink</cite> Managing director at Incentro</p>
</footer>
</blockquote>
or in markdown:
> The investigation showed, among other things, that the dozens of
> GrandVision brand shops all must have their own identity. A disconnected
> front-end gives you that freedom.
> <footer>
> <cite>Martijn Vrielink</cite>
> Managing director at Incentro
> </footer>