Skip to content

Commit 416cb9c

Browse files
author
Kátia Nakamura
committed
templates: fix the static files path
1 parent 284afdb commit 416cb9c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyconbalkan/core/templates/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<div class="col-md-11 offset-0">
3737
<nav class="navbar navbar-light navbar-expand-md bg-faded justify-content-center">
3838
<div class="navbar navbar-header mr-auto">
39-
<a class="navbar-brand" href="#"><img src="img/logo.jpg"></a>
39+
<a class="navbar-brand" href="#"><img src="{% static 'img/logo.jpg' %}"></a>
4040
</div>
4141
<ul class="nav navbar-nav ml-auto w-100 justify-content-end mb-5 pb-3">
4242
<li><a class="btn btn-light btn-sm round" href="#" role="button">News</a></li>
@@ -124,7 +124,7 @@ <h1 class="font900 font-yellow">Speakers</h1>
124124
<div class="card">
125125
<div class="row">
126126
<div class="col-sm">
127-
<img src="img/user1.png">
127+
<img src="{% static 'img/user1.png' %}">
128128
<ul class="card-body h-100 justify-content-center">
129129
<li><b>Luka Kladarić</b></li>
130130
<hr>
@@ -133,15 +133,15 @@ <h1 class="font900 font-yellow">Speakers</h1>
133133
</div>
134134

135135
<div class="col-sm">
136-
<img src="img/user1.png">
136+
<img src="{% static 'img/user1.png' %}">
137137
<ul class="card-body h-100 justify-content-center">
138138
<li><b>Krzysztof Žuraw</b></li>
139139
<hr>
140140
<li>Python Developer at STX Next</li>
141141
</ul>
142142
</div>
143143
<div class="col-sm">
144-
<img src="img/user1.png">
144+
<img src="{% static 'img/user1.png' %}">
145145
<ul class="card-body h-100 justify-content-center">
146146
<li><b>Luka Kladarić</b></li>
147147
<hr>

0 commit comments

Comments
 (0)