Skip to content

Commit d5d1e74

Browse files
committed
Remove retina support for logo.
1 parent faba431 commit d5d1e74

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

django_views_tutorial/templates/layout.html

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,13 @@
4949
name="twitter:image"
5050
content="https://hackersandslackers-cdn.storage.googleapis.com/2020/04/django-views-1.jpg"
5151
/>
52-
<link
53-
rel="apple-touch-icon"
54-
href="{% static 'homepage/img/logo@2x.png' %}"
55-
/>
52+
<link rel="apple-touch-icon" href="{% static 'homepage/img/logo.png' %}" />
5653
<link
5754
rel="icon"
5855
type="image/x-icon"
59-
href="{% static 'homepage/img/logo@2x.png' %}"
56+
href="{% static 'homepage/img/logo.png' %}"
6057
/>
61-
<link rel="shortcut icon" href="{% static 'homepage/img/logo@2x.png' %}" />
58+
<link rel="shortcut icon" href="{% static 'homepage/img/logo.png' %}" />
6259
<link
6360
rel="stylesheet"
6461
href="{% static 'homepage/css/styles.css' %}"

homepage/templates/homepage/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
{% block content %}
99
<div class="card">
10-
<img src="{% static 'homepage/img/logo@2x.png' %}" alt="logo" class="logo" />
10+
<img src="{% static 'homepage/img/logo.png' %}" alt="logo" class="logo" />
1111
<h1 class="site-title">{{ title }}</h1>
1212
<p class="subtitle">{{ description }}</p>
1313
<div class="apps-container">
@@ -16,4 +16,4 @@ <h1 class="site-title">{{ title }}</h1>
1616
{% include 'homepage/partials/models_module.html' %}
1717
</div>
1818
</div>
19-
{% endblock %}
19+
{% endblock %}

0 commit comments

Comments
 (0)