summaryrefslogtreecommitdiff
path: root/lib/lsg_web/templates/page/widget.html.eex
blob: 65853b31bee1f8c806ec196a9147213a28d5cc37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="<%= static_path(@conn, "/assets/css/widget.css") %>">
<script src="<%= static_path(@conn, "/assets/js/soundmanager2-jsmin.js") %>"></script>
<script src="<%= static_path(@conn, "/assets/js/widget.js") %>"></script>
</head>
<body>
  <div id="player" class="<%= if @icecast.live, do: "live", else: "autodj" %>">
    <div id="state"></div>
    <div id="titles">
      <div id="genre"><%= @icecast.genre %></div>
      <div id="np"><%= @icecast.np %></div>
    </div>
  </div>
</body>
</html>