Files
mediacms/templates/root.html
T

66 lines
1.5 KiB
HTML
Raw Normal View History

2020-12-16 13:48:37 +02:00
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<title>{% block headtitle %}{{PORTAL_NAME}}{% endblock headtitle %}</title>
{% include "common/head-meta.html" %}
{% block headermeta %}
2025-06-11 14:48:30 +03:00
2020-12-16 13:48:37 +02:00
<meta property="og:title" content="{{PORTAL_NAME}}">
<meta property="og:type" content="website">
{%endblock headermeta %}
{% block externallinks %}{% endblock externallinks %}
{% include "common/head-links.html" %}
{% block topimports %}{%endblock topimports %}
{% include "config/index.html" %}
2025-06-11 14:48:30 +03:00
{% if not USE_ROUNDED_CORNERS %}
<style>
.viewer-container .player-container, .item-thumb, a.item-thumb {
border-radius: revert !important;
}
</style>
{% endif %}
2020-12-16 13:48:37 +02:00
{% endblock head %}
</head>
<body>
{% block beforecontent %}{% endblock %}
<div class="page-main-wrap">
{% include "messages.html" %}
{% block content %}{% endblock %}
</div>
{% block aftercontent %}{% endblock %}
{% if LOAD_FROM_CDN %}
2022-09-07 12:33:11 +03:00
<script src="https://vjs.zencdn.net/7.20.2/video.min.js"></script>
2020-12-16 13:48:37 +02:00
{% else %}
2022-09-07 12:33:11 +03:00
<script src="{% static "lib/video-js/7.20.2/video.min.js" %}"></script>
2020-12-16 13:48:37 +02:00
{% endif %}
{% block externalscripts %}{% endblock externalscripts %}
{% include "common/body-scripts.html" %}
{% block bottomimports %}{% endblock bottomimports %}
</body>
</html>