-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshow.ejs
More file actions
29 lines (25 loc) · 1.09 KB
/
show.ejs
File metadata and controls
29 lines (25 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>View File</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
</style>
</head>
<body class="bg-pink-200 text-zinc-800">
<div class=" min-h-screen flex flex-col items-center justify-start px-6 py-10">
<div class="w-full max-w-3xl bg-white rounded-2xl shadow-xl p-8"></div>
<a class="text-blue-600 hover:underline text-sm font-medium inline-block mb-6"href="/">Go Back to Home</a>
<h1 class="text-3xl font-bold tracking-tighter text-zinc-900 mb-4"><%= filename %></h1>
<div class="bg-pink-100 rounded-lg p-5 text-zinc-700 text-lg leading-relaxed shadow-inner max-h-[500px] overflow-y-auto whitespace-pre-wrap">
<%= filedata %>
</div>
</div>
</body>
</html>