{# This is required by insert_above #} {% insert_handler %} MySlice - {{ title }} {# This is where insert_str will end up #} {% media_container prelude %} {# let's add these ones no matter what #} {% insert_str prelude "jquery/js/jquery.js" %} {% insert_str prelude "bootstrap/js/bootstrap.js" %} {% insert_str prelude "bootstrap/css/bootstrap.css" %} {% insert_str prelude "js/plugin.js" %} {% insert_str prelude "css/myslice.css" %} {# also add the stuff as collected in a Prelude class #} {% for js_file in js_files %} {% insert_str prelude js_file %} {% endfor %} {% for css_file in css_files %} {% insert_str prelude css_file %} {% endfor %} {% block container %}
{% block topmenu %} {% include 'widget-topmenu.html' %} {% endblock topmenu %}
{% block content_main %} "The main content area (define block 'content_main')" {% endblock content_main %}
{% endblock container %}