forked from drowl87/hextra_mirror
19 lines
1.2 KiB
HTML
19 lines
1.2 KiB
HTML
{{- $external := strings.HasPrefix .link "http" -}}
|
|
<a
|
|
class="hx-flex hx-items-center hx-justify-between hx-gap-2 hx-cursor-pointer hx-rounded hx-px-2 hx-py-1.5 hx-text-sm hx-transition-colors [-webkit-tap-highlight-color:transparent] [-webkit-touch-callout:none] [word-break:break-word]
|
|
{{- if .active }}
|
|
sidebar-active-item hx-bg-primary-100 hx-font-semibold hx-text-primary-800 contrast-more:hx-border contrast-more:hx-border-primary-500 dark:hx-bg-primary-400/10 dark:hx-text-primary-600 contrast-more:dark:hx-border-primary-500
|
|
{{- else }}
|
|
hx-text-gray-500 hover:hx-bg-gray-100 hover:hx-text-gray-900 contrast-more:hx-border contrast-more:hx-border-transparent contrast-more:hx-text-gray-900 contrast-more:hover:hx-border-gray-900 dark:hx-text-neutral-400 dark:hover:hx-bg-primary-100/5 dark:hover:hx-text-gray-50 contrast-more:dark:hx-text-gray-50 contrast-more:dark:hover:hx-border-gray-50
|
|
{{- end -}}"
|
|
href="{{ .link }}"
|
|
{{ if $external }}target="_blank" rel="noreferer"{{ end }}
|
|
>
|
|
{{- .title -}}
|
|
{{- with .context }}
|
|
{{- if or .RegularPages .Sections }}
|
|
{{- partialCached "components/sidebar/collapsible-button" . }}
|
|
{{- end }}
|
|
{{ end -}}
|
|
</a>
|