{% extends "base.html" %}
{% from "content/_player_content.html" import render_content with context %}
{% macro render_slide(entry, first) %}
{{ render_content(entry.content) }}
{{ entry.content.title }}
{% endmacro %}
{% block title %}{{ layout.name }} ยท LibreSignage{% endblock %}
{% block head %}
{% endblock %}
{% block body %}
{% for playable_zone in zones %}
{% for entry in playable_zone.entries %}
{{ render_slide(entry, loop.first) }}
{% else %}
No content assigned
{% endfor %}
{% endfor %}
{% if screen_slug %}
{% endif %}
{% endblock %}
{% block scripts %}
{% if screen_slug %}
{% endif %}
{% if screen_slug %}
{% if zones|selectattr('zone.schedule_mode', 'equalto', 'scheduled')|list %}
{% endif %}
{% endif %}
{% endblock %}