##// END OF EJS Templates
FIX, coalescestreams incorrect nesting.
FIX, coalescestreams incorrect nesting.

File last commit:

r11770:6b8a9d57
r12268:a403e722
Show More
html_basic.tpl
141 lines | 3.0 KiB | application/vnd.groove-tool-template | SmartyLexer
Matthias BUSSONNIER
try to play with data display priority
r9599 {%- extends 'display_priority.tpl' -%}
Matthias BUSSONNIER
null template
r9580
Matthias BUSSONNIER
working on html
r9590 {% block codecell %}
Matthias BUSSONNIER
null template
r9580 <div class="cell border-box-sizing code_cell vbox">
damianavila
Redo of fixing templates structure.
r11770 {{ super() }}
</div>
Matthias BUSSONNIER
some other fixes
r9591 {%- endblock codecell %}
Matthias BUSSONNIER
working on html
r9590
{% block input_group -%}
<div class="input hbox">
damianavila
Redo of fixing templates structure.
r11770 {{ super() }}
Matthias BUSSONNIER
null template
r9580 </div>
Matthias BUSSONNIER
working on html
r9590 {% endblock input_group %}
MinRK
fix div hierarchy for outputs...
r10041 {% block output_group %}
Matthias BUSSONNIER
fix prompt/output hbox/vbox
r9823 <div class="vbox output_wrapper">
MinRK
fix div hierarchy for outputs...
r10041 <div class="output vbox">
Matthias BUSSONNIER
fix prompt/output hbox/vbox
r9823 {{ super() }}
Matthias BUSSONNIER
null template
r9580 </div>
damianavila
Addind a closing div.
r9707 </div>
Matthias BUSSONNIER
working on html
r9590 {% endblock output_group %}
{% block in_prompt -%}
damianavila
Redo of fixing templates structure.
r11770 <div class="prompt input_prompt">
In&nbsp;[{{ cell.prompt_number }}]:
</div>
Matthias BUSSONNIER
working on html
r9590 {%- endblock in_prompt %}
MinRK
fix div hierarchy for outputs...
r10041 {#
output_prompt doesn't do anything in HTML,
because there is a prompt div in each output area (see output block)
#}
{% block output_prompt %}
Matthias BUSSONNIER
working on html
r9590 {% endblock output_prompt %}
{% block input %}
<div class="input_area box-flex1">
damianavila
Redo of fixing templates structure.
r11770 {{ cell.input | highlight2html }}
Matthias BUSSONNIER
some other fixes
r9591 </div>
Matthias BUSSONNIER
working on html
r9590 {%- endblock input %}
MinRK
fix div hierarchy for outputs...
r10041 {% block output %}
<div class="hbox output_area">
{%- if output.output_type == 'pyout' -%}
damianavila
Redo of fixing templates structure.
r11770 <div class="prompt output_prompt">
Out[{{ cell.prompt_number }}]:
MinRK
fix div hierarchy for outputs...
r10041 {%- else -%}
damianavila
Redo of fixing templates structure.
r11770 <div class="prompt">
MinRK
fix div hierarchy for outputs...
r10041 {%- endif -%}
damianavila
Redo of fixing templates structure.
r11770 </div>
MinRK
fix div hierarchy for outputs...
r10041 {{ super() }}
</div>
{% endblock output %}
Matthias BUSSONNIER
null template
r9580
Matthias BUSSONNIER
some other fixes
r9591 {% block markdowncell scoped %}
Matthias BUSSONNIER
null template
r9580 <div class="text_cell_render border-box-sizing rendered_html">
damianavila
Redo of fixing templates structure.
r11770 {{ cell.source | strip_math_space | markdown2html | strip_files_prefix }}
Matthias BUSSONNIER
null template
r9580 </div>
{%- endblock markdowncell %}
{% block headingcell scoped %}
<div class="text_cell_render border-box-sizing rendered_html">
damianavila
Redo of fixing templates structure.
r11770 {{ ("#" * cell.level + cell.source) | replace('\n', ' ') | strip_math_space | markdown2html | strip_files_prefix | add_anchor }}
Matthias BUSSONNIER
null template
r9580 </div>
{% endblock headingcell %}
{% block rawcell scoped %}
Matthias BUSSONNIER
svgoutput
r9592 {{ cell.source }}
Matthias BUSSONNIER
null template
r9580 {% endblock rawcell %}
{% block unknowncell scoped %}
damianavila
Redo of fixing templates structure.
r11770 unknown type {{ cell.type }}
Matthias BUSSONNIER
null template
r9580 {% endblock unknowncell %}
Matthias BUSSONNIER
working on html
r9590
{% block pyout -%}
Matthias BUSSONNIER
fix fileext and html multidisplay
r9637 <div class="box-flex1 output_subarea output_pyout">
damianavila
Redo of fixing templates structure.
r11770 {% block data_priority scoped %}
{{ super() }}
{% endblock %}
Matthias BUSSONNIER
working on html
r9590 </div>
{%- endblock pyout %}
Matthias BUSSONNIER
fix some stream/pyout/pyerr
r9600 {% block stream_stdout -%}
Matthias BUSSONNIER
fix fileext and html multidisplay
r9637 <div class="box-flex1 output_subarea output_stream output_stdout">
damianavila
Redo of fixing templates structure.
r11770 <pre>
{{ output.text | ansi2html }}
</pre>
Matthias BUSSONNIER
working on html
r9590 </div>
Matthias BUSSONNIER
fix some stream/pyout/pyerr
r9600 {%- endblock stream_stdout %}
{% block stream_stderr -%}
Matthias BUSSONNIER
fix fileext and html multidisplay
r9637 <div class="box-flex1 output_subarea output_stream output_stderr">
damianavila
Redo of fixing templates structure.
r11770 <pre>
{{ output.text | ansi2html }}
</pre>
Matthias BUSSONNIER
fix some stream/pyout/pyerr
r9600 </div>
{%- endblock stream_stderr %}
Matthias BUSSONNIER
svgoutput
r9592
Matthias BUSSONNIER
try to play with data display priority
r9599 {% block data_svg -%}
damianavila
Redo of fixing templates structure.
r11770 {{ output.svg }}
Matthias BUSSONNIER
try to play with data display priority
r9599 {%- endblock data_svg %}
Matthias BUSSONNIER
svgoutput
r9592
Matthias BUSSONNIER
fix some stream/pyout/pyerr
r9600 {% block data_html -%}
<div class="output_html rendered_html">
damianavila
Redo of fixing templates structure.
r11770 {{ output.html }}
Matthias BUSSONNIER
try to play with data display priority
r9599 </div>
{%- endblock data_html %}
{% block data_png %}
damianavila
Redo of fixing templates structure.
r11770 <img src="data:image/png;base64,{{ output.png }}">
Matthias BUSSONNIER
try to play with data display priority
r9599 {%- endblock data_png %}
{% block data_jpg %}
damianavila
Redo of fixing templates structure.
r11770 <img src="data:image/jpeg;base64,{{ output.jpeg }}">
Matthias BUSSONNIER
try to play with data display priority
r9599 {%- endblock data_jpg %}
{% block data_latex %}
damianavila
Redo of fixing templates structure.
r11770 {{ output.latex }}
Matthias BUSSONNIER
try to play with data display priority
r9599 {%- endblock data_latex %}
Matthias BUSSONNIER
svgoutput
r9592 {% block pyerr -%}
Matthias BUSSONNIER
fix fileext and html multidisplay
r9637 <div class="box-flex1 output_subarea output_pyerr">
damianavila
Redo of fixing templates structure.
r11770 <pre>{{ super() }}</pre>
Matthias BUSSONNIER
svgoutput
r9592 </div>
{%- endblock pyerr %}
{%- block traceback_line %}
damianavila
Redo of fixing templates structure.
r11770 {{ line | ansi2html }}
Matthias BUSSONNIER
svgoutput
r9592 {%- endblock traceback_line %}
Matthias BUSSONNIER
try to play with data display priority
r9599
{%- block data_text %}
damianavila
Redo of fixing templates structure.
r11770 <pre>
{{ output.text | ansi2html }}
</pre>
Matthias BUSSONNIER
try to play with data display priority
r9599 {%- endblock -%}
Matthias BUSSONNIER
fix some stream/pyout/pyerr
r9600
{%- block display_data scoped -%}
Matthias BUSSONNIER
fix fileext and html multidisplay
r9637 <div class="box-flex1 output_subarea output_display_data">
damianavila
Redo of fixing templates structure.
r11770 {{ super() }}
Matthias BUSSONNIER
fix some stream/pyout/pyerr
r9600 </div>
damianavila
Redo of fixing templates structure.
r11770 {%- endblock display_data -%}