##// END OF EJS Templates
allow trimming to an empty database (--keep=0)
allow trimming to an empty database (--keep=0)

File last commit:

r13332:77888f85
r13611:1a067b37
Show More
html_basic.tpl
148 lines | 3.1 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
remove more hard coded layout
r13332 <div class="cell border-box-sizing code_cell">
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 -%}
Matthias BUSSONNIER
remove hardcoded box-orient
r12918 <div class="input">
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
remove hardcoded box-orient
r12918 <div class="output_wrapper">
Matthias BUSSONNIER
remove more hard coded layout
r13332 <div class="output">
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">
Pablo de Oliveira
highlight filter: pass metadata as an optional argument
r12577 {{ cell.input | highlight2html(metadata=cell.metadata) }}
Matthias BUSSONNIER
some other fixes
r9591 </div>
Matthias BUSSONNIER
working on html
r9590 {%- endblock input %}
MinRK
fix div hierarchy for outputs...
r10041 {% block output %}
Matthias BUSSONNIER
remove hardcoded box-orient
r12918 <div class="output_area">
MinRK
fix div hierarchy for outputs...
r10041 {%- 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">
MinRK
remove strip_math_space...
r12864 {{ cell.source | 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">
MinRK
remove strip_math_space...
r12864 {{ ("#" * cell.level + cell.source) | replace('\n', ' ') | 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
MinRK
add missing data_javascript...
r12446 {%- block data_javascript %}
<script type="text/javascript">
{{ output.javascript }}
</script>
{%- 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>
Matthias BUSSONNIER
remove hardcoded box-orient
r12918 {%- endblock display_data -%}