You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			872 B
		
	
	
	
		
			Django/Jinja
		
	
			
		
		
	
	
			34 lines
		
	
	
		
			872 B
		
	
	
	
		
			Django/Jinja
		
	
{%- extends 'lab/base.html.j2' -%}
 | 
						|
{% from 'cellslidedata.j2' import cellslidedata %}
 | 
						|
 | 
						|
{%- block any_cell scoped -%}
 | 
						|
{%- if cell.metadata.get('slide_start', False) -%}
 | 
						|
<section {{ cellslidedata(cell) }}>
 | 
						|
{%- endif -%}
 | 
						|
{%- if cell.metadata.get('subslide_start', False) -%}
 | 
						|
<section {{ cellslidedata(cell) }}>
 | 
						|
{%- endif -%}
 | 
						|
{%- if cell.metadata.get('fragment_start', False) -%}
 | 
						|
<div class="fragment" {{ cellslidedata(cell) }}>
 | 
						|
{%- 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 -%}
 |