mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
19 lines
No EOL
536 B
HTML
19 lines
No EOL
536 B
HTML
{{- $unused := .Inner }}
|
|
{{- $version := split hugo.Version "." }}
|
|
{{- $major := int (index $version 0) }}
|
|
{{- $minor := int (index $version 1) }}
|
|
{{- $color := (.Get "color") }}
|
|
{{- $groupid := (.Get "groupid") }}
|
|
{{- $icon := (.Get "icon") }}
|
|
{{- $style := (.Get "style") }}
|
|
{{- $title := (.Get "title") }}
|
|
{{- $tabs := (.Scratch.Get "tabs") }}
|
|
{{- partial "shortcodes/tabs.html" (dict
|
|
"page" .Page
|
|
"color" $color
|
|
"content" $tabs
|
|
"groupid" $groupid
|
|
"icon" $icon
|
|
"style" $style
|
|
"title" $title
|
|
) }} |