Anteprima cliccabile con pulsante play, badge stato, select visibilità compatti e colonna azioni senza sovrapposizioni. Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
1.4 KiB
Plaintext
28 lines
1.4 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title><%= content_for?(:title) ? yield(:title) : "Match Live TV" %></title>
|
|
<meta name="application-name" content="Match Live TV">
|
|
<%= render "shared/meta_tags" %>
|
|
<%= yield :head %>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer">
|
|
<link rel="stylesheet" href="/marketing.css?v=37">
|
|
</head>
|
|
<body<% if MatchLiveTv.google_analytics_configured? %> data-ga-id="<%= MatchLiveTv.google_analytics_measurement_id %>"<% end %>>
|
|
<%= render "shared/cookie_banner" %>
|
|
<%= render "shared/marketing_nav" %>
|
|
<main>
|
|
<% if flash[:notice] %><div class="wrap"><div class="flash notice"><%= flash[:notice] %></div></div><% end %>
|
|
<% if flash[:alert] %><div class="wrap"><div class="flash alert"><%= flash[:alert] %></div></div><% end %>
|
|
<%= yield %>
|
|
</main>
|
|
<%= render "shared/marketing_footer" %>
|
|
<script src="/branding-form.js?v=1" defer></script>
|
|
<script src="/roster-form.js?v=1" defer></script>
|
|
<script src="/password-toggle.js?v=2" defer></script>
|
|
<script src="/cookie-consent.js?v=1" defer></script>
|
|
</body>
|
|
</html>
|