mirror of
https://github.com/Django-LiveView/demo-doom
synced 2026-01-10 07:13:39 +01:00
6 lines
272 B
HTML
6 lines
272 B
HTML
<div class="pixel-grid" style="display: grid; grid-template-columns: repeat({{ width }}, 6px); grid-template-rows: repeat({{ height }}, 6px); gap: 0; width: fit-content;">
|
|
{% for color in pixels %}
|
|
<div style="background-color: {{ color }};"></div>
|
|
{% endfor %}
|
|
</div>
|