mirror of
https://github.com/imfing/hextra.git
synced 2025-07-03 08:37:12 -04:00
Compare commits
3 Commits
9661555c93
...
0d0e9d2ca4
Author | SHA1 | Date | |
---|---|---|---|
0d0e9d2ca4 | |||
0c90c1aa50 | |||
bb5923f113 |
@ -56,6 +56,12 @@
|
||||
{{ if $external }}target="_blank" rel="noreferrer"{{ end }}
|
||||
class="hx-text-sm contrast-more:hx-text-gray-700 contrast-more:dark:hx-text-gray-100 hx-relative -hx-ml-2 hx-hidden hx-whitespace-nowrap hx-p-2 md:hx-inline-block {{ $activeClass }}"
|
||||
>
|
||||
{{ with .Params.hero_icon -}}
|
||||
<span style="float: left; padding-right: 0.3em; padding-top: 2px; opacity: 0.75">
|
||||
{{ partial "utils/icon.html" (dict "name" . "attributes" "height=18") }}
|
||||
</span>
|
||||
{{- end }}
|
||||
|
||||
<span class="hx-text-center">{{ or (T .Identifier) .Name | safeHTML }}</span>
|
||||
</a>
|
||||
{{- end -}}
|
||||
|
10
layouts/shortcodes/hextra/hero-section.html
Normal file
10
layouts/shortcodes/hextra/hero-section.html
Normal file
@ -0,0 +1,10 @@
|
||||
{{- $style := .Get "style" -}}
|
||||
{{- $heading := int (strings.TrimPrefix "h" (.Get "heading" | default "h2")) -}}
|
||||
{{- $size := cond (ge $heading 4) "xl" (cond (eq $heading 3) "2xl" "4xl") -}}
|
||||
|
||||
<h{{ $heading }}
|
||||
class="not-prose hx-text-{{ $size }} hx-font-bold hx-leading-none hx-tracking-tighter md:hx-text-3xl hx-py-2 hx-bg-clip-text hx-text-transparent hx-bg-gradient-to-r hx-from-gray-900 hx-to-gray-600 dark:hx-from-gray-100 dark:hx-to-gray-400"
|
||||
{{ with $style }}style="{{ . | safeCSS }}"{{ end }}
|
||||
>
|
||||
{{ .Inner | markdownify }}
|
||||
</h{{ $heading }}>
|
Reference in New Issue
Block a user