29 lines
699 B
HTML
Executable File
29 lines
699 B
HTML
Executable File
{% extends "base.html" %}
|
|
{% block title %} GUARDA IN STREAMING {{ streaming.titolo }} {% endblock title %}
|
|
{% block css %}
|
|
<style>
|
|
.rectangle {
|
|
width:70%;
|
|
height:70%;
|
|
background-color: black;
|
|
border: 3px solid red;
|
|
position: absolute;
|
|
top: 15%;
|
|
left: 15%;
|
|
}
|
|
.rectangle>iframe {
|
|
display:block;
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
</style>
|
|
{% endblock css %}
|
|
{% block content %}
|
|
<body background="https://i.ibb.co/vzXbD3H/lrFfdA1.jpg">
|
|
|
|
<div class="rectangle">
|
|
<iframe src='{{ streaming.link_embedded }}' scrolling="no" frameborder="0" allowfullscreen="true" webkitallowfullscreen="true" mozallowfullscreen="true"></iframe>
|
|
</div>
|
|
</body>
|
|
|
|
{% endblock content %} |