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

41 行
1013 B
Plaintext
Raw 通常表示 履歴

2018-07-14 22:36:31 +09:00
<!DOCTYPE html>
2019-04-28 23:17:35 +09:00
<html lang="<%= env.get("preferences").as(Preferences).locale %>">
2018-07-14 22:36:31 +09:00
<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?v=<%= ASSET_COMMIT %>">
<title><%= HTML.escape(video.title) %> - Invidious</title>
<style>
2019-03-18 01:57:29 +09:00
#player {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
}
</style>
2018-07-14 22:36:31 +09:00
</head>
<body>
<script>
2019-05-07 01:23:14 +09:00
var video_data = {
2019-05-07 00:37:10 +09:00
id: '<%= video.id %>',
plid: '<%= plid %>',
2019-05-07 01:23:14 +09:00
length_seconds: '<%= video.info["length_seconds"].to_f %>',
2019-05-07 00:37:10 +09:00
video_series: <%= video_series.to_json %>,
params: <%= params.to_json %>,
preferences: <%= preferences.to_json %>
}
</script>
2019-05-07 01:23:14 +09:00
<%= rendered "components/player" %>
<script src="/js/embed.js?v=<%= ASSET_COMMIT %>"></script>
2018-07-14 22:36:31 +09:00
</body>
2018-08-18 01:04:38 +09:00
</html>