invidious-experimenting/src/invidious/views/embed.ecr

29 lines
596 B
Plaintext
Raw Normal View History

2018-07-14 19:06:31 +05:30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="thumbnail" content="<%= thumbnail %>">
<%= rendered "components/player_sources" %>
<link rel="stylesheet" href="/css/default.css">
<title><%= HTML.escape(video.title) %> - Invidious</title>
<style>
2019-03-17 22:27:29 +05:30
#player {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
}
</style>
2018-07-14 19:06:31 +05:30
</head>
<body>
<%= rendered "components/player" %>
2018-07-14 19:06:31 +05:30
</body>
2018-08-17 21:34:38 +05:30
</html>