quad-j/views/file.ejs
2020-10-02 21:44:38 +03:00

41 lines
No EOL
1.7 KiB
Text

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= filename %></title>
<% if (fileType !== 'file') { %>
<% if (fileType === 'video' || fileType === 'image') { %>
<meta property="og:<%= fileType %>:width" content="320" />
<meta property="og:<%= fileType %>:height" content="180" />
<% } %>
<% if (fileType === 'video') { %>
<meta name="twitter:card" content="player" />
<meta name="twitter:site" content="@harry" />
<meta name="twitter:title" content="<%= filename %>" />
<meta name="twitter:description" content="File uploaded to hippoz.xyz" />
<meta name="twitter:player" content="<%= fileUrl %>" />
<meta name="twitter:player:width" content="320" />
<meta name="twitter:player:height" content="180" />
<meta name="twitter:player:stream" content="<%= fileUrl %>" />
<meta name="twitter:player:stream:content_type" content="<%= mimeType %>" />
<% } %>
<meta property="og:<%= fileType %>:url" content="<%= fileUrl %>" />
<meta property="og:<%= fileType %>:secure_url" content="<%= fileUrl %>" />
<meta property="og:<%= fileType %>:type" content="<%= mimeType %>" />
<% } %>
</head>
<body>
<% if (fileType === 'audio' || fileType === 'video') { %>
<<%= fileType %> controls name="media" />
<source src="<%= fileUrl %>" type="<%= mimeType %>">
</<%= fileType %>>
<% } %>
<% if (fileType === 'image') { %>
<img src="<%= fileUrl %>" name="media"></img>
<% } %>
</body>
</html>