Ported quote shortcode from previous theme. Allows embedding styled blockquotes with optional source attribution and links.
Usage: {{< quote source="Author Name" src="https://example.com" >}}Quote text{{< /quote >}}
Co-Authored-By: Claude Haiku 4.5 <redacted>
--- /dev/null
+<blockquote class="blockquote">
+ <p>
+ {{.Inner}}
+ </p>
+ {{ if .Get "source" }}
+ <footer class="blockquote-footer">
+ <cite title="by: {{ with .Get "source"}}{{.}}{{ end }}">
+ {{ with .Get "src"}}
+ by
+ <a href="{{.}}" target="_blank" rel="noopener noreferrer">
+ {{ end }}
+ {{ with .Get "source" }}{{.}}{{ end }}
+ {{ with .Get "src"}}
+ </a>
+ {{ end }}
+ </cite>
+ </footer>
+ {{ end }}
+</blockquote>