7 lines
175 B
HTML
7 lines
175 B
HTML
|
{% load static %}
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="{% static 'style.css' %}" />
|
||
|
<link rel="icon" href="{% static 'icon.png' %}" />
|
||
|
<title>{{ title }}</title>
|
||
|
</head>
|