Apply <lower> filter to <color.hex>.

As now, some hex values are in uppercase. To unify the page, and prevent this from happening, we can apply lower filter.
Pros:
> Easy of copy-paste
This commit is contained in:
FireGrace 2019-04-15 21:21:19 +03:00 committed by GitHub
parent 5a82c12ea7
commit 3a041e0a85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ The following **grayscale** colors are currently used on the Qubes website and d
<div class="swatch more-bottom more-right">
<div class="color add-bottom bg-{{color.class}}"></div>
<strong class="add-bottom">{{color.name}}</strong>
<code>#{{color.hex}}</code>
<code>#{{color.hex | lower}}</code>
</div>
{% endif %}
{% endfor %}
@ -50,7 +50,7 @@ The following **colors** are currently being used on the Qubes website and docum
<div class="swatch more-bottom more-right">
<div class="color add-bottom bg-{{color.class}}"></div>
<strong class="add-bottom">{{color.name}}</strong>
<code>#{{color.hex}}</code>
<code>#{{color.hex | lower}}</code>
</div>
{% endif %}
{% endfor %}