diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-11-20 03:20:47 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-11-20 03:20:47 +0300 |
commit | 8b78390987476352a6459460e00d5c4cdc0717c2 (patch) | |
tree | 77fd218ddd7203b10b4e4969ed8ede2fb4753d24 /themes/neonxp/layouts/shortcodes/quote.html | |
parent | 74b65dd83f7c66d1f67f961b1fee65400b1fc334 (diff) |
Обновил стиль
Diffstat (limited to 'themes/neonxp/layouts/shortcodes/quote.html')
-rw-r--r-- | themes/neonxp/layouts/shortcodes/quote.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/themes/neonxp/layouts/shortcodes/quote.html b/themes/neonxp/layouts/shortcodes/quote.html new file mode 100644 index 0000000..09bb07c --- /dev/null +++ b/themes/neonxp/layouts/shortcodes/quote.html @@ -0,0 +1,15 @@ +<blockquote> + <p>{{ .Inner | markdownify }}</p> + {{- if or (.Get "author") (.Get "source") -}} + <span class="cite"><span>― </span> + {{- if .Get "author" -}} + <span> + {{- .Get "author" -}}{{- if .Get "source" -}}, {{ end -}} + </span> + {{- end -}} + {{- with .Get "url" -}}<a href="{{ . }}">{{- end -}} + <cite>{{ .Get "source" }}</cite> + {{- if .Get "url" -}}</a>{{- end -}} + </span> + {{- end -}} +</blockquote>
\ No newline at end of file |