Skip to content

Commit e9d2ca5

Browse files
committed
favicon added
settings media root edited
1 parent e2b7d25 commit e9d2ca5

File tree

5 files changed

+4
-3
lines changed

5 files changed

+4
-3
lines changed
1.22 KB
Loading
2.61 KB
Loading
195 KB
Loading

pyconbalkan/core/templates/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
<meta name="viewport" content="width=device-width, initial-scale=1.0">
1212
<meta name="description" content="PyCon Balkan description">
1313
<meta name="author" content="Python Balkan community">
14-
<link rel="shortcut icon" href="favicon.ico">
14+
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'img/favicon-32x32.png' %}">
15+
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'img/favicon-16x16.png' %}">
1516
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
1617
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css" integrity="sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1" crossorigin="anonymous">
1718
<!-- Bootstrap 4 -->

pyconbalkan/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,5 +122,5 @@
122122
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
123123

124124
PDF_ROOT = os.path.join(BASE_DIR, 'pyconbalkan/core/static/pdf/')
125-
MEDIA_ROOT = os.path.join(BASE_DIR, 'pyconbalkan/core/static/img/')
126-
MEDIA_URL = '/img/'
125+
MEDIA_ROOT = os.path.join(BASE_DIR, 'pyconbalkan/core/')
126+
MEDIA_URL = '/img/'

0 commit comments

Comments
 (0)