fix static files link
This commit is contained in:
parent
12945a0e3d
commit
beb795dfb1
1 changed files with 3 additions and 2 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
|
{% load static %}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="de">
|
<html lang="de">
|
||||||
<head>
|
<head>
|
||||||
|
|
@ -8,8 +9,8 @@
|
||||||
content="{% block keywords %} {% endblock keywords %}" />
|
content="{% block keywords %} {% endblock keywords %}" />
|
||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||||
<link rel="stylesheet" href="/static/repapp/css/bootstrap.min.css" />
|
<link rel="stylesheet" href="{% static 'repapp/css/bootstrap.min.css' %}" />
|
||||||
<script src="/static/repapp/css/bootstrap.min.js"></script>
|
<script src="{% static 'repapp/css/bootstrap.min.js' %}"></script>
|
||||||
<title>RepApp
|
<title>RepApp
|
||||||
{% block title %}
|
{% block title %}
|
||||||
{% endblock title %}
|
{% endblock title %}
|
||||||
|
|
|
||||||
Reference in a new issue