PreviouslyOnIFM/code/views/station.etlua
2020-10-16 15:09:39 +02:00

46 lines
2.6 KiB
Plaintext

<% render("views.navigation") %>
<div class="scroll">
<% if offset > 0 then %>
<a href="<%= url_for("station", { station = station_id }, { offset = offset-1 }) %>"><span style="color:#ffffff !important;">previous</span></a>
<% end %>
-
<% if table.getn(airtimes) >= limit then %>
<a href="<%= url_for("station", { station = station_id }, { offset = offset+1 }) %>"><span style="color:#ffffff !important;">next</span></a>
<% end %>
</div>
<div class="airtimes" style="background-color: black; width: 900px; margin:0 auto;">
<% 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>