fix static data urls
This commit is contained in:
parent
877b160851
commit
03a6736d73
1 changed files with 5 additions and 5 deletions
|
@ -9,14 +9,14 @@
|
|||
|
||||
<title>{% block htmltitle %}Page{% endblock%} - {{ SITENAME }}</title>
|
||||
|
||||
<link rel="stylesheet" href="static/css/index.css" type="text/css">
|
||||
<link rel="stylesheet" href="/static/css/index.css" type="text/css">
|
||||
</head>
|
||||
<body id="page-top">
|
||||
|
||||
{% block content %}{% endblock %}
|
||||
|
||||
<script src="static/js/jquery.js"></script>
|
||||
<script src="static/js/libs.js"></script>
|
||||
<script src="static/js/app.js"></script>
|
||||
<script src="/static/js/jquery.js"></script>
|
||||
<script src="/static/js/libs.js"></script>
|
||||
<script src="/static/js/app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Reference in a new issue