{% extends "base.html" %}
{% from "content/_player_content.html" import render_content with context %}
{% block title %}Player ยท LibreSignage{% endblock %}
{% block head %}
{% endblock %}
{% block body %}
{% if entries %}
{% for entry in entries %}
{{ render_content(entry.content) }}
{{ entry.content.title }}
{% endfor %}
{% else %}
{% endif %}
Playback complete
{% if screen_slug is defined %}
{% endif %}
{% endblock %}
{% block scripts %}
{% if entries %}
{% endif %}
{% if scheduled %}
{% endif %}
{% if screen_slug is defined %}
{% endif %}
{% endblock %}