static: Use SVG logo during first wizard welcome step

- This removes the need to ship a 67K file and scales better.

- Rename the file to have lowercase chars only for consistency.

Tests performed:

- Goto home page, see the logo at the bottom properly displayed.

- Goto the first wizard welcome page, notice that the logo is displayed. Also
the dimensions of the image are same as without the change.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2020-04-21 13:01:11 -07:00 committed by James Valleroy
parent af5e0e1b24
commit 2526c98de6
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808
3 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
{% block content %}
<div class="logo">
<img class="firstboot" src="{% static 'theme/img/FreedomBox-logo-standard.png' %}"
<img class="firstboot" src="{% static 'theme/img/freedombox-logo-standard.svg' %}"
alt="{{ box_name }}" />
</div>

View File

@ -99,7 +99,7 @@
<p>
<a href="{% url 'index' %}" title="{{ box_name }}">
<img class="footer-logo" src="{% static 'theme/img/FreedomBox-logo-standard.svg' %}"
<img class="footer-logo" src="{% static 'theme/img/freedombox-logo-standard.svg' %}"
alt="{{ box_name }}" />
</a>
</p>

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB