File tree Expand file tree Collapse file tree 2 files changed +18
-23
lines changed
django_views_tutorial/templates
homepage/templates/homepage Expand file tree Collapse file tree 2 files changed +18
-23
lines changed Original file line number Diff line number Diff line change 49
49
name ="twitter:image "
50
50
content ="https://hackersandslackers-cdn.storage.googleapis.com/2020/04/django-views-1.jpg "
51
51
/>
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' %} " />
57
54
< link
58
55
rel ="stylesheet "
59
56
href ="{% static 'homepage/css/styles.css' %} "
Original file line number Diff line number Diff line change 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' %}
19
16
</ div >
17
+ </ div >
20
18
{% endblock %}
You can’t perform that action at this time.
0 commit comments