mirror of
https://github.com/imfing/hextra.git
synced 2025-07-03 07:07:15 -04:00
Compare commits
4 Commits
v0.9.2
...
fce3db4812
Author | SHA1 | Date | |
---|---|---|---|
fce3db4812 | |||
27a70e4c12 | |||
aeb0cad979 | |||
fd38dd116f |
@ -3258,14 +3258,6 @@ body:is(html[class~="dark"] *) {
|
|||||||
--tw-ring-opacity: 1;
|
--tw-ring-opacity: 1;
|
||||||
--tw-ring-color: hsl(var(--primary-hue) var(--primary-saturation) calc(calc(var(--primary-lightness) / 50) * 32) / var(--tw-ring-opacity));
|
--tw-ring-color: hsl(var(--primary-hue) var(--primary-saturation) calc(calc(var(--primary-lightness) / 50) * 32) / var(--tw-ring-opacity));
|
||||||
}
|
}
|
||||||
.data-\[state\=selected\]\:dark\:hx-border-primary-500:is(html[class~="dark"] *)[data-state="selected"] {
|
|
||||||
--tw-border-opacity: 1;
|
|
||||||
border-color: hsl(var(--primary-hue) var(--primary-saturation) calc(calc(var(--primary-lightness) / 50) * 50) / var(--tw-border-opacity));
|
|
||||||
}
|
|
||||||
.data-\[state\=selected\]\:dark\:hx-text-primary-600:is(html[class~="dark"] *)[data-state="selected"] {
|
|
||||||
--tw-text-opacity: 1;
|
|
||||||
color: hsl(var(--primary-hue) var(--primary-saturation) calc(calc(var(--primary-lightness) / 50) * 45) / var(--tw-text-opacity));
|
|
||||||
}
|
|
||||||
@media (prefers-contrast: more) {
|
@media (prefers-contrast: more) {
|
||||||
|
|
||||||
.contrast-more\:dark\:hx-border-current:is(html[class~="dark"] *) {
|
.contrast-more\:dark\:hx-border-current:is(html[class~="dark"] *) {
|
||||||
|
@ -56,6 +56,7 @@ The theme can be further customized by overriding the default styles via the exp
|
|||||||
.hextra-footer:is(html[class~="dark"] *) {
|
.hextra-footer:is(html[class~="dark"] *) {
|
||||||
/* Styles will be applied to the footer element in dark mode */
|
/* Styles will be applied to the footer element in dark mode */
|
||||||
}
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
The following classes can be used to customize various parts of the theme.
|
The following classes can be used to customize various parts of the theme.
|
||||||
@ -118,7 +119,6 @@ The following classes can be used to customize various parts of the theme.
|
|||||||
#### Footer
|
#### Footer
|
||||||
|
|
||||||
- `hextra-footer` - The footer element
|
- `hextra-footer` - The footer element
|
||||||
- `hextra-custom-footer` - The custom footer section container
|
|
||||||
|
|
||||||
#### Search
|
#### Search
|
||||||
|
|
||||||
@ -184,28 +184,13 @@ You may add custom scripts to the end of the head for every page by adding the f
|
|||||||
layouts/partials/custom/head-end.html
|
layouts/partials/custom/head-end.html
|
||||||
```
|
```
|
||||||
|
|
||||||
## Custom Extra Section in Footer
|
|
||||||
|
|
||||||
You can add extra section in the footer by creating a file `layouts/partials/custom/footer.html` in your site.
|
|
||||||
|
|
||||||
```html {filename="layouts/partials/custom/footer.html"}
|
|
||||||
<!-- Your footer element here -->
|
|
||||||
```
|
|
||||||
|
|
||||||
The added section will be added before the copyright section in the footer.
|
|
||||||
You can use [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) and [Hugo template syntax](https://gohugo.io/templates/) to add your own content.
|
|
||||||
|
|
||||||
Hugo variables available in the footer section are: `.switchesVisible` and `.copyrightVisible`.
|
|
||||||
|
|
||||||
## Custom Layouts
|
## Custom Layouts
|
||||||
|
|
||||||
The layouts of the theme can be overridden by creating a file with the same name in the `layouts` directory of your site.
|
The layouts of the theme can be overridden by creating a file with the same name in the `layouts` directory of your site.
|
||||||
For example, to override the `single.html` layout for docs, create a file `layouts/docs/single.html` in your site.
|
For example, to override the `single.html` layout for docs, create a file `layouts/docs/single.html` in your site.
|
||||||
|
|
||||||
For further information, refer to the [Hugo Templates][hugo-template-docs].
|
For further information, refer to the [Hugo Templates](https://gohugo.io/templates/).
|
||||||
|
|
||||||
## Further Customization
|
## Further Customization
|
||||||
|
|
||||||
Didn't find what you were looking for? Feel free to [open a discussion](https://github.com/imfing/hextra/discussions) or make a contribution to the theme!
|
Didn't find what you were looking for? Feel free to [open a discussion](https://github.com/imfing/hextra/discussions) or make a contribution to the theme!
|
||||||
|
|
||||||
[hugo-template-docs]: https://gohugo.io/templates/
|
|
||||||
|
@ -34,15 +34,16 @@ Result:
|
|||||||
{{< badge content="warning" type="warning" >}}
|
{{< badge content="warning" type="warning" >}}
|
||||||
{{< badge content="error" type="error" >}}
|
{{< badge content="error" type="error" >}}
|
||||||
|
|
||||||
With link and icon:
|
With link:
|
||||||
|
|
||||||
```
|
```
|
||||||
{{</* badge content="Releases" link="https://github.com/imfing/hextra/releases" icon="github" */>}}
|
{{</* badge content="Releases" link="https://github.com/imfing/hextra/releases" */>}}
|
||||||
```
|
```
|
||||||
|
|
||||||
Result:
|
Result:
|
||||||
|
|
||||||
{{< badge content="Releases" link="https://github.com/imfing/hextra/releases" icon="github" >}}
|
{{< badge content="Releases" link="https://github.com/imfing/hextra/releases" >}}
|
||||||
|
|
||||||
|
|
||||||
## YouTube
|
## YouTube
|
||||||
|
|
||||||
|
@ -40,22 +40,6 @@ def say_hello():
|
|||||||
print("Hello!")
|
print("Hello!")
|
||||||
```
|
```
|
||||||
|
|
||||||
### Link to File
|
|
||||||
|
|
||||||
You can use the `base_url` attribute to provide a base URL that will be combined with the file name to generate a link.
|
|
||||||
|
|
||||||
The file name can include a relative path if it specifies the file's location within the base path.
|
|
||||||
|
|
||||||
````markdown {filename="Markdown"}
|
|
||||||
```go {base_url="https://github.com/imfing/hextra/blob/main/",filename="exampleSite/hugo.work"}
|
|
||||||
go 1.20
|
|
||||||
```
|
|
||||||
````
|
|
||||||
|
|
||||||
```go {base_url="https://github.com/imfing/hextra/blob/main/",filename="exampleSite/hugo.work"}
|
|
||||||
go 1.20
|
|
||||||
```
|
|
||||||
|
|
||||||
### Line Numbers
|
### Line Numbers
|
||||||
|
|
||||||
To set line numbers, set attribute `linenos` to `table` and optionally set `linenostart` to the starting line number:
|
To set line numbers, set attribute `linenos` to `table` and optionally set `linenostart` to the starting line number:
|
||||||
|
@ -173,4 +173,3 @@ params:
|
|||||||
# emitMetadata: 0
|
# emitMetadata: 0
|
||||||
# inputPosition: top
|
# inputPosition: top
|
||||||
# lang: en
|
# lang: en
|
||||||
# theme: noborder_dark
|
|
||||||
|
@ -197,8 +197,6 @@
|
|||||||
"dark:placeholder:hx-text-gray-400",
|
"dark:placeholder:hx-text-gray-400",
|
||||||
"data-[state=closed]:hx-hidden",
|
"data-[state=closed]:hx-hidden",
|
||||||
"data-[state=open]:hx-hidden",
|
"data-[state=open]:hx-hidden",
|
||||||
"data-[state=selected]:dark:hx-border-primary-500",
|
|
||||||
"data-[state=selected]:dark:hx-text-primary-600",
|
|
||||||
"data-[state=selected]:hx-block",
|
"data-[state=selected]:hx-block",
|
||||||
"data-[state=selected]:hx-border-primary-500",
|
"data-[state=selected]:hx-border-primary-500",
|
||||||
"data-[state=selected]:hx-text-primary-600",
|
"data-[state=selected]:hx-text-primary-600",
|
||||||
@ -230,7 +228,6 @@
|
|||||||
"hextra-code-block",
|
"hextra-code-block",
|
||||||
"hextra-code-copy-btn",
|
"hextra-code-copy-btn",
|
||||||
"hextra-code-copy-btn-container",
|
"hextra-code-copy-btn-container",
|
||||||
"hextra-custom-footer",
|
|
||||||
"hextra-feature-card",
|
"hextra-feature-card",
|
||||||
"hextra-feature-grid",
|
"hextra-feature-grid",
|
||||||
"hextra-filetree",
|
"hextra-filetree",
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
{{- $version := .Get "version" | default "" -}}
|
|
||||||
{{- $icon := .Get "icon" | default "" -}}
|
|
||||||
{{- $defaultLink := cond (eq $version "") "https://github.com/imfing/hextra/tree/main" (printf "https://github.com/imfing/hextra/releases/tag/%s" $version) -}}
|
|
||||||
{{- $link := .Get "link" | default $defaultLink -}}
|
|
||||||
{{- $content := cond (eq $version "") "New in main branch" (printf "New in %s" $version) -}}
|
|
||||||
|
|
||||||
<div style="margin-top: 1rem; display: inline-flex;">
|
|
||||||
<a href="{{ $link }}" title="{{ $link | plainify }}" target="_blank">
|
|
||||||
{{- partial "shortcodes/badge" (dict "content" $content "border" true "icon" $icon) -}}
|
|
||||||
</a>
|
|
||||||
</div>
|
|
@ -1,13 +1,12 @@
|
|||||||
{{- $class := .Attributes.class | default "" -}}
|
{{- $class := .Attributes.class | default "" -}}
|
||||||
{{- $filename := .Attributes.filename | default "" -}}
|
{{- $filename := .Attributes.filename | default "" -}}
|
||||||
{{- $base_url := .Attributes.base_url | default "" -}}
|
|
||||||
{{- $lang := .Attributes.lang | default .Type -}}
|
{{- $lang := .Attributes.lang | default .Type -}}
|
||||||
|
|
||||||
|
|
||||||
<div class="hextra-code-block hx-relative hx-mt-6 first:hx-mt-0 hx-group/code">
|
<div class="hextra-code-block hx-relative hx-mt-6 first:hx-mt-0 hx-group/code">
|
||||||
{{- partial "components/codeblock" (dict "filename" $filename "lang" $lang "base_url" $base_url "content" .Inner "options" .Options) -}}
|
{{ partial "components/codeblock" (dict "filename" $filename "lang" $lang "content" .Inner "options" .Options) }}
|
||||||
|
|
||||||
{{- if or (eq site.Params.highlight.copy.enable nil) (site.Params.highlight.copy.enable) -}}
|
{{- if or (eq site.Params.highlight.copy.enable nil) (site.Params.highlight.copy.enable) }}
|
||||||
{{- partialCached "components/codeblock-copy-button" (dict "filename" $filename) $filename -}}
|
{{- partialCached "components/codeblock-copy-button" (dict "filename" $filename) $filename }}
|
||||||
{{- end -}}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,27 +1,11 @@
|
|||||||
{{ $filename := .filename | default "" -}}
|
{{ $filename := .filename | default "" -}}
|
||||||
{{ $base_url := .base_url | default "" -}}
|
|
||||||
{{ $lang := .lang | default "" }}
|
{{ $lang := .lang | default "" }}
|
||||||
{{ $content := .content }}
|
{{ $content := .content }}
|
||||||
{{ $options := .options | default (dict) }}
|
{{ $options := .options | default (dict) }}
|
||||||
|
|
||||||
{{- if $filename -}}
|
{{- if $filename -}}
|
||||||
<div class="filename not-prose" dir="auto">
|
<div class="filename" dir="auto">{{ $filename }}</div>
|
||||||
{{- if $base_url -}}
|
|
||||||
|
|
||||||
{{- $base_url = strings.TrimSuffix "/" $base_url -}}
|
|
||||||
{{- $filename = strings.TrimPrefix "/" $filename -}}
|
|
||||||
{{- $file_url := urls.JoinPath $base_url $filename -}}
|
|
||||||
|
|
||||||
<a class="hx-no-underline hx-inline-flex hx-items-center hx-gap-1" href="{{ $file_url }}" target="_blank" rel="noopener noreferrer">
|
|
||||||
<span>{{- $filename -}}</span>
|
|
||||||
{{- partial "utils/icon" (dict "name" "external-link" "attributes" "height=1em") -}}
|
|
||||||
</a>
|
|
||||||
{{- else -}}
|
|
||||||
{{- $filename -}}
|
|
||||||
{{- end -}}
|
|
||||||
</div>
|
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{- if transform.CanHighlight $lang -}}
|
{{- if transform.CanHighlight $lang -}}
|
||||||
<div>{{- highlight $content $lang $options -}}</div>
|
<div>{{- highlight $content $lang $options -}}</div>
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
|
@ -1,4 +1,26 @@
|
|||||||
{{- $lang := site.Language.LanguageCode | default `en` -}}
|
{{ $default_chinese := "zh-CN" }}
|
||||||
|
|
||||||
|
{{ $sl := site.Language }}
|
||||||
|
{{ $giscus_lang := $sl.Lang | default `en` }}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Special case for Chinese.
|
||||||
|
Giscus uses the geophraphical language code for these.
|
||||||
|
See: https://github.com/giscus/giscus/tree/main/locales
|
||||||
|
*/}}
|
||||||
|
{{ if eq $giscus_lang "zh" }}
|
||||||
|
{{/* Create a code formatted for Giscus: zh-CN or zn-TW. */}}
|
||||||
|
{{ $code := lower $sl.LanguageCode }}
|
||||||
|
|
||||||
|
{{ if (hasSuffix $code "-cn") }}
|
||||||
|
{{ $giscus_lang = "zh-CN" }}
|
||||||
|
{{ else if (hasSuffix $code "-tw") }}
|
||||||
|
{{ $giscus_lang = "zh-TW" }}
|
||||||
|
{{ else }}
|
||||||
|
{{ $giscus_lang = $default_chinese }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
{{- with site.Params.comments.giscus -}}
|
{{- with site.Params.comments.giscus -}}
|
||||||
<script>
|
<script>
|
||||||
@ -8,17 +30,8 @@
|
|||||||
* This solution was created with reference to:
|
* This solution was created with reference to:
|
||||||
* https://github.com/giscus/giscus/issues/336#issuecomment-1214366281
|
* https://github.com/giscus/giscus/issues/336#issuecomment-1214366281
|
||||||
*/
|
*/
|
||||||
function getHugoTheme() {
|
|
||||||
return localStorage.getItem("color-theme");
|
|
||||||
}
|
|
||||||
|
|
||||||
function getGiscusTheme() {
|
function getGiscusTheme() {
|
||||||
let giscusTheme = "{{ (string .theme) | default `light` }}";
|
return localStorage.getItem("color-theme");
|
||||||
if(getHugoTheme() == 'light') {
|
|
||||||
return giscusTheme.replace('dark', 'light');
|
|
||||||
} else {
|
|
||||||
return giscusTheme.replace('light', 'dark');
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function setGiscusTheme() {
|
function setGiscusTheme() {
|
||||||
@ -47,7 +60,7 @@
|
|||||||
"data-emit-metadata": "{{ (string .emitMetadata) | default 0 }}",
|
"data-emit-metadata": "{{ (string .emitMetadata) | default 0 }}",
|
||||||
"data-input-position": "{{ .inputPosition | default `top` }}",
|
"data-input-position": "{{ .inputPosition | default `top` }}",
|
||||||
"data-theme": getGiscusTheme(),
|
"data-theme": getGiscusTheme(),
|
||||||
"data-lang": "{{ .lang | default $lang }}",
|
"data-lang": "{{ .lang | default $giscus_lang }}",
|
||||||
"crossorigin": "anonymous",
|
"crossorigin": "anonymous",
|
||||||
"async": "",
|
"async": "",
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
{{- $enableFooterSwitches := .Scratch.Get "enableFooterSwitches" | default false -}}
|
{{- $enableFooterSwitches := .Scratch.Get "enableFooterSwitches" | default false -}}
|
||||||
{{- $displayThemeToggle := site.Params.theme.displayToggle | default true -}}
|
{{- $displayThemeToggle := site.Params.theme.displayToggle | default true -}}
|
||||||
{{- $footerSwitchesVisible := and $enableFooterSwitches (or hugo.IsMultilingual $displayThemeToggle) -}}
|
|
||||||
{{- $copyrightSectionVisible := or (.Site.Params.footer.displayPoweredBy | default true) .Site.Params.footer.displayCopyright -}}
|
|
||||||
|
|
||||||
{{- $copyright := (T "copyright") | default "© 2024 Hextra." -}}
|
{{- $copyright := (T "copyright") | default "© 2024 Hextra." -}}
|
||||||
{{- $poweredBy := (T "poweredBy") | default "Powered by Hextra" -}}
|
{{- $poweredBy := (T "poweredBy") | default "Powered by Hextra" -}}
|
||||||
@ -17,7 +15,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<footer class="hextra-footer hx-bg-gray-100 hx-pb-[env(safe-area-inset-bottom)] dark:hx-bg-neutral-900 print:hx-bg-transparent">
|
<footer class="hextra-footer hx-bg-gray-100 hx-pb-[env(safe-area-inset-bottom)] dark:hx-bg-neutral-900 print:hx-bg-transparent">
|
||||||
{{- if $footerSwitchesVisible -}}
|
{{- if and $enableFooterSwitches (or hugo.IsMultilingual $displayThemeToggle) -}}
|
||||||
<div class="hx-mx-auto hx-flex hx-gap-2 hx-py-2 hx-px-4 {{ $footerWidth }}">
|
<div class="hx-mx-auto hx-flex hx-gap-2 hx-py-2 hx-px-4 {{ $footerWidth }}">
|
||||||
{{- partial "language-switch.html" (dict "context" .) -}}
|
{{- partial "language-switch.html" (dict "context" .) -}}
|
||||||
{{- with $displayThemeToggle }}{{ partial "theme-toggle.html" }}{{ end -}}
|
{{- with $displayThemeToggle }}{{ partial "theme-toggle.html" }}{{ end -}}
|
||||||
@ -26,21 +24,14 @@
|
|||||||
<hr class="dark:hx-border-neutral-800" />
|
<hr class="dark:hx-border-neutral-800" />
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
<div
|
<div
|
||||||
class="hextra-custom-footer {{ $footerWidth }} hx-pl-[max(env(safe-area-inset-left),1.5rem)] hx-pr-[max(env(safe-area-inset-right),1.5rem)] hx-text-gray-600 dark:hx-text-gray-400"
|
class="{{ $footerWidth }} hx-mx-auto hx-flex hx-justify-center hx-py-12 hx-pl-[max(env(safe-area-inset-left),1.5rem)] hx-pr-[max(env(safe-area-inset-right),1.5rem)] hx-text-gray-600 dark:hx-text-gray-400 md:hx-justify-start"
|
||||||
>
|
>
|
||||||
{{- partial "custom/footer.html" (dict "context" . "switchesVisible" $footerSwitchesVisible "copyrightVisible" $copyrightSectionVisible) -}}
|
<div class="hx-flex hx-w-full hx-flex-col hx-items-center sm:hx-items-start">
|
||||||
|
{{- if (.Site.Params.footer.displayPoweredBy | default true) }}<div class="hx-font-semibold">{{ template "theme-credit" $poweredBy }}</div>{{ end }}
|
||||||
|
{{- if .Site.Params.footer.displayCopyright }}<div class="hx-mt-6 hx-text-xs">{{ $copyright | markdownify }}</div>{{ end }}
|
||||||
</div>
|
</div>
|
||||||
{{- if $copyrightSectionVisible -}}
|
</div>
|
||||||
<div
|
|
||||||
class="{{ $footerWidth }} hx-mx-auto hx-flex hx-justify-center hx-py-12 hx-pl-[max(env(safe-area-inset-left),1.5rem)] hx-pr-[max(env(safe-area-inset-right),1.5rem)] hx-text-gray-600 dark:hx-text-gray-400 md:hx-justify-start"
|
|
||||||
>
|
|
||||||
<div class="hx-flex hx-w-full hx-flex-col hx-items-center sm:hx-items-start">
|
|
||||||
{{- if (.Site.Params.footer.displayPoweredBy | default true) }}<div class="hx-font-semibold">{{ template "theme-credit" $poweredBy }}</div>{{- end -}}
|
|
||||||
{{- if .Site.Params.footer.displayCopyright }}<div class="hx-mt-6 hx-text-xs">{{ $copyright | markdownify }}</div>{{- end -}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{- end -}}
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
{{- define "theme-credit" -}}
|
{{- define "theme-credit" -}}
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
{{- $type := .type -}}
|
{{- $type := .type -}}
|
||||||
{{- $class := .class | default "" -}}
|
{{- $class := .class | default "" -}}
|
||||||
{{- $border := .border | default false -}}
|
{{- $border := .border | default false -}}
|
||||||
{{- $icon := .icon | default "" -}}
|
|
||||||
|
|
||||||
{{- $defaultClass := "hx-text-gray-600 hx-bg-gray-100 dark:hx-bg-neutral-800 dark:hx-text-neutral-200 hx-border-gray-200 dark:hx-border-neutral-700" -}}
|
{{- $defaultClass := "hx-text-gray-600 hx-bg-gray-100 dark:hx-bg-neutral-800 dark:hx-text-neutral-200 hx-border-gray-200 dark:hx-border-neutral-700" -}}
|
||||||
{{- $warningClass := "hx-border-yellow-100 hx-bg-yellow-50 hx-text-yellow-900 dark:hx-border-yellow-200/30 dark:hx-bg-yellow-700/30 dark:hx-text-yellow-200" -}}
|
{{- $warningClass := "hx-border-yellow-100 hx-bg-yellow-50 hx-text-yellow-900 dark:hx-border-yellow-200/30 dark:hx-bg-yellow-700/30 dark:hx-text-yellow-200" -}}
|
||||||
@ -12,9 +11,6 @@
|
|||||||
{{- $borderClass := cond (eq $border true) "hx-border" "" -}}
|
{{- $borderClass := cond (eq $border true) "hx-border" "" -}}
|
||||||
{{- $badgeClass := cond (eq $type "info") $infoClass (cond (eq $type "warning") $warningClass (cond (eq $type "error") $errorClass $defaultClass)) -}}
|
{{- $badgeClass := cond (eq $type "info") $infoClass (cond (eq $type "warning") $warningClass (cond (eq $type "error") $errorClass $defaultClass)) -}}
|
||||||
<div class="hextra-badge {{ $class }}">
|
<div class="hextra-badge {{ $class }}">
|
||||||
<div class="hx-inline-flex hx-gap-1 hx-items-center hx-rounded-full hx-px-2.5 hx-leading-6 hx-text-[.65rem] {{ $borderClass }} {{ $badgeClass }}">
|
<div class="hx-inline-flex hx-items-center hx-rounded-full hx-px-2.5 hx-leading-6 hx-text-[.65rem] {{ $borderClass }} {{ $badgeClass }}">{{- $content -}}</div>
|
||||||
{{- with $icon -}}{{- partial "utils/icon" (dict "name" . "attributes" "height=12") -}}{{- end -}}
|
|
||||||
{{- $content -}}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
{{- /* Strip trailing newline. */ -}}
|
{{- /* Strip trailing newline. */ -}}
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
{{- $type := .Get "type" | default "" -}}
|
{{- $type := .Get "type" | default "" -}}
|
||||||
{{- $class := .Get "class" | default "" -}}
|
{{- $class := .Get "class" | default "" -}}
|
||||||
{{- $link := .Get "link" | default "" -}}
|
{{- $link := .Get "link" | default "" -}}
|
||||||
{{- $icon := .Get "icon" | default "" -}}
|
|
||||||
|
|
||||||
{{- if $link -}}
|
{{- if $link -}}
|
||||||
<a href="{{ $link }}" title="{{ $content | plainify }}" target="_blank">
|
<a href="{{ $link }}" title="{{ $content | plainify }}" target="_blank">
|
||||||
@ -12,7 +11,6 @@
|
|||||||
"type" $type
|
"type" $type
|
||||||
"class" $class
|
"class" $class
|
||||||
"border" true
|
"border" true
|
||||||
"icon" $icon
|
|
||||||
)
|
)
|
||||||
-}}
|
-}}
|
||||||
</a>
|
</a>
|
||||||
@ -22,7 +20,6 @@
|
|||||||
"type" $type
|
"type" $type
|
||||||
"class" $class
|
"class" $class
|
||||||
"border" true
|
"border" true
|
||||||
"icon" $icon
|
|
||||||
)
|
)
|
||||||
-}}
|
-}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<div class="hx-mt-4 hx-flex hx-w-max hx-min-w-full hx-border-b hx-border-gray-200 hx-pb-px dark:hx-border-neutral-800">
|
<div class="hx-mt-4 hx-flex hx-w-max hx-min-w-full hx-border-b hx-border-gray-200 hx-pb-px dark:hx-border-neutral-800">
|
||||||
{{- range $i, $item := $items -}}
|
{{- range $i, $item := $items -}}
|
||||||
<button
|
<button
|
||||||
class="hextra-tabs-toggle data-[state=selected]:hx-border-primary-500 data-[state=selected]:hx-text-primary-600 data-[state=selected]:dark:hx-border-primary-500 data-[state=selected]:dark:hx-text-primary-600 hx-mr-2 hx-rounded-t hx-p-2 hx-font-medium hx-leading-5 hx-transition-colors -hx-mb-0.5 hx-select-none hx-border-b-2 hx-border-transparent hx-text-gray-600 hover:hx-border-gray-200 hover:hx-text-black dark:hx-text-gray-200 dark:hover:hx-border-neutral-800 dark:hover:hx-text-white"
|
class="hextra-tabs-toggle data-[state=selected]:hx-border-primary-500 data-[state=selected]:hx-text-primary-600 hx-mr-2 hx-rounded-t hx-p-2 hx-font-medium hx-leading-5 hx-transition-colors -hx-mb-0.5 hx-select-none hx-border-b-2 hx-border-transparent hx-text-gray-600 hover:hx-border-gray-200 hover:hx-text-black dark:hx-text-gray-200 dark:hover:hx-border-neutral-800 dark:hover:hx-text-white"
|
||||||
role="tab"
|
role="tab"
|
||||||
type="button"
|
type="button"
|
||||||
aria-controls="tabs-panel-{{ $i }}"
|
aria-controls="tabs-panel-{{ $i }}"
|
||||||
|
Reference in New Issue
Block a user