##// END OF EJS Templates
Removed some box-flex1 classes
Removed some box-flex1 classes

File last commit:

r15715:a5c878c8
r15715:a5c878c8
Show More
basic.tpl
187 lines | 4.3 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 %}
Jonathan Frederic
Make nbconvert html full output like notebook's html....
r15713 <div class="cell border-box-sizing code_cell rendered unselected">
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 %}
damianavila
Make the name of empty_in_prompt more explicit.
r14198 {% block empty_in_prompt -%}
damianavila
Rename of input groups and use of self.block for e_in_prompt.
r14193 <div class="prompt input_prompt">
</div>
damianavila
Make the name of empty_in_prompt more explicit.
r14198 {%- endblock empty_in_prompt %}
damianavila
Rename of input groups and use of self.block for e_in_prompt.
r14193
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 %}
Jonathan Frederic
Make nbconvert html full output like notebook's html....
r15713 <div class="inner_cell">
<div class="input_area">
MinRK
allow highlighting language to be set from notebook metadata
r15672 {{ cell.input | highlight2html(language=resources.get('language'), metadata=cell.metadata) }}
Matthias BUSSONNIER
some other fixes
r9591 </div>
Jonathan Frederic
Make nbconvert html full output like notebook's html....
r15713 </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
damianavila
Simplification of the logic.
r14195 {% block markdowncell scoped %}
Jonathan Frederic
Make nbconvert html full output like notebook's html....
r15713 <div class="cell border-box-sizing text_cell rendered unselected">
damianavila
Make the name of empty_in_prompt more explicit.
r14198 {{ self.empty_in_prompt() }}
damianavila
Added new structure (input prompt and inner cell) to markdown cells.
r14191 <div class="inner_cell">
damianavila
Restructuration of null.tpl and addition of inner_cell classes.
r14192 <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>
damianavila
Added new structure (input prompt and inner cell) to markdown cells.
r14191 </div>
damianavila
Simplification of the logic.
r14195 </div>
{%- endblock markdowncell %}
Matthias BUSSONNIER
null template
r9580
damianavila
Simplification of the logic.
r14195 {% block headingcell scoped %}
Jonathan Frederic
Make nbconvert html full output like notebook's html....
r15713 <div class="cell border-box-sizing text_cell rendered unselected">
damianavila
Make the name of empty_in_prompt more explicit.
r14198 {{ self.empty_in_prompt() }}
damianavila
Restructuration of null.tpl and addition of inner_cell classes.
r14192 <div class="inner_cell">
Matthias BUSSONNIER
null template
r9580 <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>
damianavila
Restructuration of null.tpl and addition of inner_cell classes.
r14192 </div>
damianavila
Simplification of the logic.
r14195 </div>
{% endblock headingcell %}
damianavila
Restructuration of null.tpl and addition of inner_cell classes.
r14192
damianavila
Simplification of the logic.
r14195 {% block unknowncell scoped %}
damianavila
Redo of fixing templates structure.
r11770 unknown type {{ cell.type }}
damianavila
Simplification of the logic.
r14195 {% endblock unknowncell %}
Matthias BUSSONNIER
working on html
r9590
{% block pyout -%}
Jonathan Frederic
Make nbconvert html full output like notebook's html....
r15713 <div class="output_subarea output_text">
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 -%}
Jonathan Frederic
Removed some box-flex1 classes
r15715 <div class="output_subarea output_stream output_stdout output_text">
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 -%}
MinRK
support extracted output in HTML template...
r15535 {%- if output.svg_filename %}
<img src="{{output.svg_filename | posix_path}}"
{%- else %}
damianavila
Redo of fixing templates structure.
r11770 {{ output.svg }}
MinRK
support extracted output in HTML template...
r15535 {%- endif %}
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 %}
MinRK
support extracted output in HTML template...
r15535 {%- if output.png_filename %}
<img src="{{output.png_filename | posix_path}}"
{%- else %}
MinRK
handle image size metadata in nbconvert html
r15298 <img src="data:image/png;base64,{{ output.png }}"
MinRK
support extracted output in HTML template...
r15535 {%- endif %}
MinRK
don't assume outputs have metadata...
r15417 {%- if 'metadata' in output and 'width' in output.metadata.get('png', {}) %}
MinRK
handle image size metadata in nbconvert html
r15298 width={{output.metadata['png']['width']}}
{%- endif %}
MinRK
don't assume outputs have metadata...
r15417 {%- if 'metadata' in output and 'height' in output.metadata.get('png', {}) %}
MinRK
handle image size metadata in nbconvert html
r15298 height={{output.metadata['png']['height']}}
{%- endif %}
>
Matthias BUSSONNIER
try to play with data display priority
r9599 {%- endblock data_png %}
{% block data_jpg %}
MinRK
support extracted output in HTML template...
r15535 {%- if output.jpeg_filename %}
<img src="{{output.jpeg_filename | posix_path}}"
{%- else %}
MinRK
handle image size metadata in nbconvert html
r15298 <img src="data:image/jpeg;base64,{{ output.jpeg }}"
MinRK
support extracted output in HTML template...
r15535 {%- endif %}
MinRK
don't assume outputs have metadata...
r15417 {%- if 'metadata' in output and 'width' in output.metadata.get('jpeg', {}) %}
MinRK
handle image size metadata in nbconvert html
r15298 width={{output.metadata['jpeg']['width']}}
{%- endif %}
MinRK
don't assume outputs have metadata...
r15417 {%- if 'metadata' in output and 'height' in output.metadata.get('jpeg', {}) %}
MinRK
handle image size metadata in nbconvert html
r15298 height={{output.metadata['jpeg']['height']}}
{%- endif %}
>
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 -%}
Jonathan Frederic
Removed some box-flex1 classes
r15715 <div class="output_subarea output_text 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 -%}