mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
4dd90050f1
710856e5a Release 0.84.0 362f4ea7b releaser: Add release notes to /docs for release of 0.84.0 6bb8800f7 docs: Regenerate docs helper 00a522e6a docs: Regenerate docshelper bc171954b Merge commit '92405e5b0adc5d8c3dfde88d6a8b67eb09169190' ef73ffc3b Misc config loading fixes 0b4117f7f docs: Regenerate docs helper 9b9452b9c Merge commit '32ba623541d74ee0b7ae4efb1b8326dc49af28b8' 9c4413dd9 tpl/fmt: Add erroridf template func e1875742e tpl/data: Misc header improvements, tests, allow multiple headers of same key e4560893c Add math.Max and math.Min 7dc282eaf common/maps: Add Scratch.DeleteInMap b9cd77171 docs: Update querify function description and examples git-subtree-dir: docs git-subtree-split: 710856e5a6c683ce26d385960423303cc109c09e
41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
{{ $file := .Get "file" }}
|
|
{{ $code := "" }}
|
|
{{ with .Get "config" }}
|
|
{{ $file = $file | default "config" }}
|
|
{{ $sections := (split . ".") }}
|
|
{{ $configSection := index $.Site.Data.docs.config $sections }}
|
|
{{ $code = dict $sections $configSection }}
|
|
{{ if $.Get "skipHeader"}}
|
|
{{ $code = $configSection }}
|
|
{{ end }}
|
|
{{ else }}
|
|
{{ $code = $.Inner }}
|
|
{{ end }}
|
|
{{ $langs := (slice "yaml" "toml" "json") }}
|
|
<div class="code relative" {{ with $file }}id="{{ . | urlize}}"{{ end }}>
|
|
<div class="code-nav flex flex-nowrap items-stretch">
|
|
{{- with $file -}}
|
|
<div class="san-serif f6 dib lh-solid pl2 pv2 mr2">
|
|
{{ . }}.
|
|
</div>
|
|
{{- end -}}
|
|
{{ range $langs }}
|
|
<button data-toggle-tab="{{ . }}" class="tab-button {{ cond (eq . "yaml") "active" ""}} ba san-serif f6 dib lh-solid ph2 pv2">
|
|
{{ . }}
|
|
</button>
|
|
|
|
{{ end }}
|
|
</div>
|
|
<div class="tab-content">
|
|
{{ range $langs }}
|
|
<div data-pane="{{ . }}" class="code-copy-content nt3 tab-pane {{ cond (eq . "yaml") "active" ""}}">
|
|
{{ highlight ($code | transform.Remarshal . | safeHTML) . ""}}
|
|
</div>
|
|
{{ if ne ($.Get "copy") "false" }}
|
|
<button class="needs-js copy copy-toggle bg-accent-color-dark f6 absolute top-0 right-0 lh-solid hover-bg-primary-color-dark bn white ph3 pv2" title="Copy this code to your clipboard." data-clipboard-action="copy" aria-label="copy button"></button>
|
|
{{/* Functionality located within filesaver.js The copy here is located in the css with .copy class so it can be replaced with JS on success */}}
|
|
{{end}}
|
|
{{ end }}
|
|
</div>
|
|
|
|
</div>
|