Jump to content

Template:Insert quote panel

From Insurer Brain
Revision as of 23:58, 11 October 2025 by Wikilah admin (talk | contribs) (Created page with "<!-- ========================= Template:Insert quote panel ========================= --> <includeonly><templatestyles src="Insert quote panel/styles.css" /> <div class="insert-quote-panel {{#if:{{{class|}}}|{{{class}}}}}" style="{{{style|}}}"> {{{1|}}} </div></includeonly><noinclude> == What this does == Reusable wrapper panel for quotes (or any short callout). Styling is kept in TemplateStyles. == Parameters == * <code>1</code> – Required. The content to display (e.g...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


What this does

Reusable wrapper panel for quotes (or any short callout). Styling is kept in TemplateStyles.

Parameters

  • 1 – Required. The content to display (e.g., Template:Quote of the day).
  • style – Optional. Extra inline CSS to override defaults (e.g., borders, radius).
  • class – Optional. Extra classes for site-specific tweaks.

Examples

Basic:

{{Insert quote panel
 | {{Quote of the day}}
}}

With small overrides:

{{Insert quote panel
 | {{Quote of the day}}
 | style=border:1px solid #9CA4AC; border-radius:6px;
}}

Arbitrary content:

{{Insert quote panel
 | <blockquote>“Simplicity is the ultimate sophistication.” — Leonardo da Vinci</blockquote>
}}