mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-04 20:30:40 +00:00
24 lines
652 B
HTML
24 lines
652 B
HTML
{{- $value := default 0 (.Get "value") -}}
|
|
{{- $title := .Get "title" -}}
|
|
{{- $icon := .Get "icon" -}}
|
|
|
|
|
|
<div class="gdoc-progress">
|
|
<div class="gdoc-progress__label flex justify-between">
|
|
<div class="gdoc-progress__label--name flex align-center">
|
|
{{ with $icon -}}
|
|
<svg class="gdoc-icon {{ . }}"><use xlink:href="#{{ . }}"></use></svg>
|
|
{{- end }}
|
|
{{ with $title }}<span>{{ . }}</span>{{ end }}
|
|
</div>
|
|
<div>{{ $value }}%</div>
|
|
</div>
|
|
<div class="gdoc-progress__wrap">
|
|
<div
|
|
class="gdoc-progress__bar"
|
|
data-percent="{{ $value }}"
|
|
style="width: {{ $value }}%;"
|
|
></div>
|
|
</div>
|
|
</div>
|