11 lines
442 B
XML
11 lines
442 B
XML
<!-- SVG to show the current freshness of goods with a traffic light food labeling system -->
|
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
|
|
<g class="arcs">
|
|
{{if eq .Fresh false}}
|
|
<circle cx="50" cy="50" r="40" fill="#b02" stroke="#b02" stroke-width="5"/>
|
|
{{else}}
|
|
<circle cx="50" cy="50" r="40" fill="#093" stroke="#093" stroke-width="5"/>
|
|
{{end}}
|
|
</g>
|
|
</svg>
|