8000 Update base.html · stephenmcd/django-socketio@b2b3a10 · GitHub
[go: up one dir, main page]

Skip to content

Commit b2b3a10

Browse files
committed
Update base.html
1 parent acd2dd9 commit b2b3a10

File tree

1 file changed

+3
-1
lines changed
  • django_socketio/example_project/chat/templates

1 file changed

+3
-1
lines changed

django_socketio/example_project/chat/templates/base.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
{% load static %}
2+
13
<!doctype html>
24
<html lang="en">
35
<head>
46

57
<meta charset="utf-8">
68
<title>{% block title %}Chat{% endblock %}</title>
7-
<link rel="stylesheet" href="{{ STATIC_URL }}css/chat.css">
9+
<link rel="stylesheet" href="{% static 'css/chat.css' %}">
810
{% block extra_css %}{% endblock %}
911
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
1012
<script>

0 commit comments

Comments
 (0)
0