##// END OF EJS Templates
Catch specific error instead of all errors.
Catch specific error instead of all errors.

File last commit:

r11677:da75f652
r11751:a3b13a2b
Show More
align_reveal_cells.tpl
17 lines | 428 B | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'reveal_internals/reveal_cells.tpl' -%}
{%- block any_cell scoped -%}
{%- if cell.metadata.align_type in ['Left'] -%}
{{ super() }}
{%- elif cell.metadata.align_type in ['center'] -%}
<div style="text-align:center">
{{ super() }}
</div>
{%- elif cell.metadata.align_type in ['right'] -%}
<div style="text-align:right">
{{ super() }}
</div>
{%- endif -%}
{%- endblock any_cell -%}