719ea6ec79
Some more projetor style work.
19 lines
433 B
HTML
19 lines
433 B
HTML
{% extends "base-projector.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}{{ block.super }} - {{ item }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if item.get_text %}
|
|
<h1>{{ item }}</h1>
|
|
{% else %}
|
|
<div class="item_fullscreen">{{ item }}</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block scrollcontent %}
|
|
{% if item.get_text %}
|
|
<span>{{ item.get_text|safe|linebreaks }}</span>
|
|
{% endif %}
|
|
{% endblock %} |