jefklakscodex/themes/jefklak-creative-portfolio/layouts/partials/score.html

13 lines
480 B
HTML
Raw Normal View History

{{ $simplescore := $.Scratch.Get "simplescore" }}
{{ if isset $.Params "score" }}
<p>
{{ $score := $.Params.score }}
{{ if not $simplescore }}
2022-04-09 15:01:33 +02:00
<strong>Verdict</strong>: <span class="rating">{{ $score }}</span>/5
{{ else }}
<span class="rating" style="display: none;">{{ $score }}</span>
{{ end }}
2022-11-01 09:41:58 +01:00
<img src="/img/{{ $score }}.png" class="score" title="Score: {{ $score }}/5" />{{ if not $simplescore }}—{{ partial "scorelabel" . }}.{{ end }}
</p>
{{ end }}