emese/views/folder.ejs

19 lines
791 B
Plaintext
Raw Permalink Normal View History

2024-03-28 15:14:34 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans&family=Reddit+Mono:wght@200..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="master.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
<title>Folder</title>
</head>
<body>
<h1 style="text-align: center;"><%- name %></h1>
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;">
<%- img %>
</div>
</body>
</html>