1
Fork 0

fix static data urls

This commit is contained in:
Jake Howard 2016-05-20 08:51:15 +01:00
parent 877b160851
commit 03a6736d73

View file

@ -9,14 +9,14 @@
<title>{% block htmltitle %}Page{% endblock%} - {{ SITENAME }}</title> <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> </head>
<body id="page-top"> <body id="page-top">
{% block content %}{% endblock %} {% block content %}{% endblock %}
<script src="static/js/jquery.js"></script> <script src="/static/js/jquery.js"></script>
<script src="static/js/libs.js"></script> <script src="/static/js/libs.js"></script>
<script src="static/js/app.js"></script> <script src="/static/js/app.js"></script>
</body> </body>
</html> </html>