mirror of
https://github.com/wassname/jupyter_contrib_nbextensions.git
synced 2026-08-10 12:20:38 +08:00
17 lines
291 B
Smarty
17 lines
291 B
Smarty
{%- extends 'full.tpl' -%}
|
|
|
|
{% block input_group -%}
|
|
{%- if cell.metadata.hide_input -%}
|
|
{%- else -%}
|
|
{{ super() }}
|
|
{%- endif -%}
|
|
{% endblock input_group %}
|
|
|
|
{% block output_group -%}
|
|
{%- if cell.metadata.hide_output -%}
|
|
{%- else -%}
|
|
{{ super() }}
|
|
{%- endif -%}
|
|
{% endblock output_group %}
|
|
|