hotmixes.lapis/code/views/prc_layout.etlua
2026-03-26 16:15:24 +01:00

45 lines
1.7 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title><%= titles['name'] %>
<% if title then %>
- <%= title %>
<% end %>
</title>
<link rel="icon" type="image/x-icon" href="/static/<%= titles['url'] %>.ico">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/<%= titles.css %>">
</head>
<body class="body">
<header class="header">
<a href="/"><img src="/static/<%= titles['header'] %>" alt="prc logo" class="prclogo"/></a>
</header>
<div class="content">
<h1 class="h1">Tons Of Mix - Downloads & Streams (right click + Save link as... for downloads)<br>
<%= titles.name %><br>
Sharing <%= total[0] %> files
</h1>
</div>
<img style="padding-bottom: 10px; padding-left: 10px; padding-top: 10px;" src="/static/panamaracing.club_divider.png">
<div class="content">
<% content_for("inner") %>
</div>
<img style="padding-bottom: 10px; padding-left: 10px; padding-top: 10px;" src="/static/panamaracing.club_divider.png">
<div class="content">
<section class="latest">
<div class="latest_files">
<h1 class="h1">Latest uploads:</h1>
<% for i, file in ipairs(latestpath) do %>
<a class="amixlink" href="<%= '/data/' .. titles.url .. '/' .. file:gsub("#", "%%23") %>">
<span class="mixlink"><%= latestname[i] %></span>
</a>
</br>
<% end %>
</div>
</section>
</div>
<img style="padding-bottom: 10px; padding-left: 10px; padding-top: 10px;" src="/static/panamaracing.club_divider.png">
</body>
</html>