html.tpl 355 B

123456789101112131415
  1. {% extends 'basic.tpl' %}
  2. {% from 'celltags.tpl' import celltags %}
  3. {% block any_cell %}
  4. <div class="jb_cell{{ celltags(cell) }}">
  5. {{ super() }}
  6. </div>
  7. {% endblock any_cell %}
  8. {% block output %}
  9. <div class="jb_output_wrapper{%- if 'interactive' in cell.metadata.tags %} output_widget_view {% endif %} }}">
  10. {{- super() -}}
  11. </div>
  12. {%- endblock output %}