base.html: comment out unused css and js

This commit is contained in:
Seth Ladygo
2019-03-13 17:50:20 -07:00
parent 6ed4792a21
commit e31c4ddc34

View File

@ -5,8 +5,8 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{% static 'main.css' %}">
<title>{% block title %}ProCatalog{% endblock %}</title>
{# <link rel="stylesheet" href="{% static 'main.css' %}"> #}
</head>
<body>
{% include "nav.html" %}
@ -22,6 +22,6 @@
{% block content %}
{% endblock %}
<script src="{% static 'app.js' %}"></script>
{# <script src="{% static 'app.js' %}"></script> #}
</body>
</html>