hotmixes.lapis/code/views/layout.etlua
2025-12-31 11:20:19 +01:00

44 lines
1.4 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">
<% if titles.css ~= nil then %>
<link rel="stylesheet" href="/static/<%= titles.css %>">
<% else %>
<link rel="stylesheet" href="/static/style.css">
<% end %>
</head>
<body class="body">
<header class="header">
<a href="/"><img src="/static/<%= titles['header'] %>" alt="videohotmix logo" class="hotmixlogo"/></a>
</header>
<h1 class="h1 h1mobile">Tons Of Mix - Downloads & Streams (right click + Save link as... for downloads)<br>
<%= titles.name %><br>
Sharing <%= total[0] %> files</h1>
<% content_for("inner") %>
<section class="latest">
<div class="latest_files">
<br>
<br>
<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>
</body>
</html>