L'encoder scende in congestione e risale piano; la regia imposta il pavimento, mostra lo stato del telefono e apre il selettore dal bitrate colorato. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
600 B
ERB
17 lines
600 B
ERB
<!DOCTYPE html>
|
|
<html lang="<%= html_lang %>">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="theme-color" content="#0a0a0e">
|
|
<title><%= content_for?(:title) ? yield(:title) : t("regia.meta_title_fallback") %></title>
|
|
<%= render "shared/meta_tags" %>
|
|
<link rel="stylesheet" href="/regia.css?v=11">
|
|
<%= yield :head %>
|
|
</head>
|
|
<body class="regia-body">
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|