base.html 431 B

123456789101112
  1. {% extends "wagtailcrx/pages/base.html" %}
  2. {% load static %}
  3. {% block custom_assets %}
  4. {# Add your custom CSS here #}
  5. <link rel="stylesheet" type="text/css" href="{% static 'website/css/custom.css' %}">
  6. {% endblock %}
  7. {% block custom_scripts %}
  8. {# Add your custom JavaScript here, or delete the line below if you don't need any #}
  9. <script type="text/javascript" src="{% static 'website/js/custom.js' %}"></script>
  10. {% endblock %}