You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
639 B

  1. {% extends "!layout.html" %}
  2. {% set css_files = css_files + ["_static/custom_collapsible_code.css"] %}
  3. # sadly, I didn't find a css style way to add custom JS to a list that is automagically added to head like CSS (above) #}
  4. {% block extrahead %}
  5. <script type="text/javascript" src="_static/custom_collapsible_code.js"></script>
  6. {% endblock %}
  7. {% block footer %}
  8. <script type="text/javascript">
  9. $(document).ready(function() {
  10. // using this approach as we don't have access to the jQuery selectors
  11. // when executing the function on load in HEAD
  12. makeCodeBlocksCollapsible();
  13. });
  14. </script>
  15. {% endblock %}