37 lines
2.1 KiB
Plaintext
37 lines
2.1 KiB
Plaintext
<meta charset="UTF-8">
|
|
<div class="airtimes" style="background-color: black;">
|
|
<% for i, item in ipairs(airtimes) do %>
|
|
<div style="clear:both;height:5px;"></div>
|
|
<div id="playingnowpic">
|
|
|
|
<% if string.len(item.img_url) == 0 then %>
|
|
<% item.img_url = "blanco.png" %>
|
|
<% end %>
|
|
|
|
<a href="https://www.intergalactic.fm/images/covers/<%= item.img_url or "blanco.png" %>" rel="ia_lightbox">
|
|
<img style="float:left;margin-right:10px;margin-bottom:0px;height:100px;" src="https://www.intergalactic.fm/images/covers/<%= item.img_url or "blanco.png" %>">
|
|
</a>
|
|
</div>
|
|
<div class="media-body">
|
|
<h5 class="media-heading">
|
|
<a href="<%= url_for("artist")..item.artist_id %>"><span style="color:#ffffff !important;"><%= item.artist %></span></a>
|
|
<span style="margin-left:5px;margin-right:5px;font-weight:normal;color:#fff;">-</span>
|
|
<a href="<%= url_for("track")..item.track_id %>"><span style="color:#ffffff !important;"><%= item.track %></span></a>
|
|
</h5>
|
|
<p>
|
|
<span style="padding-right:5px;color:#fff;">
|
|
<% if item.release then %><a href="<%= url_for("release")..item.release_id %>" style="color: #ffffff; text-decoration: none;"><%= item.release %></a><% end %>
|
|
<% if item.label then %>| <%= item.label %><% end %>
|
|
<% if item.year then %>| <%= item.year %><% end %>
|
|
<% if item.country then %>| <%= item.country %><% end %>
|
|
<% if item.info_url then %><% if item.info_url:match("[^.]+$") == "jpg" then %>| <a href="https://intergalactic.fm/images/covers/<%= item.info_url %>"><span style="color:#ffffff !important;"><%= item.info_url %></span></a>
|
|
<% else %>| <a href="<%= item.info_url %>"><span style="color:#ffffff !important;"><%= item.info_url %></span></a><% end %>
|
|
<% end %>
|
|
</span>
|
|
</p>
|
|
</div>
|
|
<div style="clear:both;height:5px;"></div>
|
|
<br>
|
|
<% end %>
|
|
</div>
|