21 lines
493 B
HTML
21 lines
493 B
HTML
{{/* Source:https://gitlab.com/Roneo/hugo-shortcode-roneo-collection */}}
|
|
|
|
{{- $title := "" -}}
|
|
{{- $theme := "" -}}
|
|
{{- $class := "" -}}
|
|
|
|
|
|
{{- if .IsNamedParams }}
|
|
{{- $title = .Get "title" -}}
|
|
{{- $theme = (.Get "theme" | default "default") -}}
|
|
{{- $class = .Get "class" -}}
|
|
{{- else }}
|
|
{{- $title = .Get 0 -}}
|
|
{{- $theme = (.Get 1 | default "default") -}}
|
|
{{- $class = .Get 2 -}}
|
|
{{- end }}
|
|
|
|
<div>
|
|
<h2>{{ $title }}</h2>
|
|
{{ .Page.TableOfContents }}
|
|
</div> |