mirror of
https://github.com/gethinode/hinode.git
synced 2025-10-07 10:04:22 +00:00
20 lines
771 B
HTML
20 lines
771 B
HTML
{{/*
|
|
Copyright © 2025 The Hinode Team / Mark Dumay. All rights reserved.
|
|
Use of this source code is governed by The MIT License (MIT) that can be found in the LICENSE file.
|
|
Visit gethinode.com/license for more details.
|
|
*/}}
|
|
|
|
{{ $args := partial "utilities/InitArgs.html" (dict "structure" "separator" "args" .) }}
|
|
{{ if or $args.err $args.warnmsg }}
|
|
{{ partial (cond $args.err "utilities/LogErr.html" "utilities/LogWarn.html") (dict
|
|
"partial" "component-library/components/separator/separator.hugo.html"
|
|
"warnid" "warn-invalid-arguments"
|
|
"msg" "Invalid arguments"
|
|
"details" ($args.errmsg | append $args.warnmsg)
|
|
"file" page.File
|
|
)}}
|
|
{{ end }}
|
|
|
|
{{ if not $args.err }}
|
|
<hr class="w-100">
|
|
{{ end }} |