Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
32
venv/share/jupyter/nbconvert/templates/reveal/base.html.j2
Normal file
32
venv/share/jupyter/nbconvert/templates/reveal/base.html.j2
Normal file
|
@ -0,0 +1,32 @@
|
|||
{%- extends 'lab/base.html.j2' -%}
|
||||
|
||||
{%- block any_cell scoped -%}
|
||||
{%- if cell.metadata.get('slide_start', False) -%}
|
||||
<section>
|
||||
{%- endif -%}
|
||||
{%- if cell.metadata.get('subslide_start', False) -%}
|
||||
<section>
|
||||
{%- endif -%}
|
||||
{%- if cell.metadata.get('fragment_start', False) -%}
|
||||
<div class="fragment">
|
||||
{%- endif -%}
|
||||
|
||||
{%- if cell.metadata.slide_type == 'notes' -%}
|
||||
<aside class="notes">
|
||||
{{ super() }}
|
||||
</aside>
|
||||
{%- elif cell.metadata.slide_type == 'skip' -%}
|
||||
{%- else -%}
|
||||
{{ super() }}
|
||||
{%- endif -%}
|
||||
|
||||
{%- if cell.metadata.get('fragment_end', False) -%}
|
||||
</div>
|
||||
{%- endif -%}
|
||||
{%- if cell.metadata.get('subslide_end', False) -%}
|
||||
</section>
|
||||
{%- endif -%}
|
||||
{%- if cell.metadata.get('slide_end', False) -%}
|
||||
</section>
|
||||
{%- endif -%}
|
||||
{%- endblock any_cell -%}
|
Loading…
Add table
Add a link
Reference in a new issue