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