invidious/src/invidious/views/embed.ecr

37 行
1.2 KiB
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>
2019-05-05 21:46:01 +09:00
<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="/videojs/videojs-overlay/videojs-overlay.css?v=<%= ASSET_COMMIT %>">
<script src="/videojs/videojs-overlay/videojs-overlay.js?v=<%= ASSET_COMMIT %>"></script>
2019-05-05 21:46:01 +09:00
<link rel="stylesheet" href="/css/default.css?v=<%= ASSET_COMMIT %>">
<link rel="stylesheet" href="/css/embed.css?v=<%= ASSET_COMMIT %>">
2019-05-05 21:46:01 +09:00
<title><%= HTML.escape(video.title) %> - Invidious</title>
2018-07-14 22:36:31 +09:00
</head>
<body class="dark-theme">
<script id="video_data" type="application/json">
2020-03-30 06:44:45 +09:00
<%=
{
2020-03-30 06:44:45 +09:00
"id" => video.id,
"index" => continuation,
"plid" => plid,
"length_seconds" => video.length_seconds.to_f,
"video_series" => video_series,
"params" => params,
"preferences" => preferences,
2022-04-23 05:37:45 +09:00
"premiere_timestamp" => video.premiere_timestamp.try &.to_unix,
"local_disabled" => CONFIG.disabled?("local")
2020-03-30 06:44:45 +09:00
}.to_pretty_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>