Skip to content

Commit fb6b5be

Browse files
committed
Revert logo rename.
1 parent c77b8ee commit fb6b5be

File tree

2 files changed

+18
-23
lines changed

2 files changed

+18
-23
lines changed

django_views_tutorial/templates/layout.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,8 @@
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-
/>
56-
<link rel="shortcut icon" href="{% static 'homepage/img/logo@2x.png' %}" />
52+
<link rel="apple-touch-icon" href="{% static 'homepage/img/logo.png' %}" />
53+
<link rel="shortcut icon" href="{% static 'homepage/img/logo.png' %}" />
5754
<link
5855
rel="stylesheet"
5956
href="{% static 'homepage/css/styles.css' %}"
Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
1-
{% extends 'layout.html' %}
2-
{% load static %}
3-
4-
5-
{% block extra_css %}
6-
<link rel="stylesheet" href="{% static 'homepage/css/home.css' %}" type="text/css">
7-
{% endblock %}
8-
9-
{% block content %}
10-
<div class="card">
11-
<img src="{% static 'homepage/img/logo@2x.png' %}" alt="logo" class="logo" />
12-
<h1 class="site-title">{{ title }}</h1>
13-
<p class="subtitle">{{ description }}</p>
14-
<div class="apps-container">
15-
{% include 'homepage/partials/function_module.html' %}
16-
{% include 'homepage/partials/class_module.html' %}
17-
{% include 'homepage/partials/models_module.html' %}
18-
</div>
1+
{% extends 'layout.html' %} {% load static %} {% block extra_css %}
2+
<link
3+
rel="stylesheet"
4+
href="{% static 'homepage/css/home.css' %}"
5+
type="text/css"
6+
/>
7+
{% endblock %} {% block content %}
8+
<div class="card">
9+
<img src="{% static 'homepage/img/logo.png' %}" alt="logo" class="logo" />
10+
<h1 class="site-title">{{ title }}</h1>
11+
<p class="subtitle">{{ description }}</p>
12+
<div class="apps-container">
13+
{% include 'homepage/partials/function_module.html' %} {% include
14+
'homepage/partials/class_module.html' %} {% include
15+
'homepage/partials/models_module.html' %}
1916
</div>
17+
</div>
2018
{% endblock %}

0 commit comments

Comments
 (0)