initial commit
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{{- $style := lower .style }}
|
||||
{{- $set := "" }}
|
||||
{{- range site.Params.boxStyle }}
|
||||
{{- if eq (lower .identifier) $style }}
|
||||
{{- $title := or .title (.i18n | T) }}
|
||||
{{- $set = dict "style" $style "title" $title "icon" .icon }}
|
||||
{{- break }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if not $set }}
|
||||
{{- range (slice
|
||||
(dict "identifier" "caution" "icon" "hand")
|
||||
(dict "identifier" "important" "icon" "bolt")
|
||||
(dict "identifier" "info" "icon" "info-circle")
|
||||
(dict "identifier" "note" "icon" "exclamation-circle")
|
||||
(dict "identifier" "tip" "icon" "lightbulb")
|
||||
(dict "identifier" "warning" "icon" "exclamation-triangle")
|
||||
) }}
|
||||
{{- if eq .identifier $style }}
|
||||
{{- $title := .identifier | T }}
|
||||
{{- $set = dict "style" $style "title" $title "icon" .icon }}
|
||||
{{- break }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- if not $set }}
|
||||
{{- $set = dict "style" $style "title" "" "icon" "" }}
|
||||
{{- end }}
|
||||
{{- if .title }}
|
||||
{{- $set = merge $set (dict "title" .title) }}
|
||||
{{- end }}
|
||||
{{- if .icon }}
|
||||
{{- $set = merge $set (dict "icon" .icon) }}
|
||||
{{- end }}
|
||||
{{- return $set }}
|
||||
Reference in New Issue
Block a user