wordle/templates/_guess_line.html

5 lines
146 B
HTML
Raw Permalink Normal View History

2022-01-19 01:43:19 +01:00
<li>
{% for letter, color in guess %}
<span class="letter" style="color:{{ color }};">{{ letter|upper }}</span>
{% endfor %}
</li>