aCloud/templates/og_file.html

22 lines
831 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ filename }} - sxbin</title>
<meta property="og:title" content="{{ filename }}">
<meta property="og:type" content="website">
<meta property="og:url" content="{{ request.url }}">
<meta property="og:description" content="File size: {{ file_size|filesizeformat }} | Uploaded by: {{ username }} | Date: {{ created_at.strftime('%Y-%m-%d %H:%M:%S') }}">
2024-09-16 12:26:00 +02:00
{% if is_embeddable %}
2024-09-16 13:02:12 +02:00
<meta property="og:image" content="{{ file_url }}/raw">
{% endif %}
<meta property="og:site_name" content="sxbin">
<meta property="theme-color" content="#4CAF50">
</head>
<body>
2024-09-16 12:26:00 +02:00
<script>
2024-09-16 13:02:12 +02:00
window.location.href = "{{ file_url }}";
2024-09-16 12:26:00 +02:00
</script>
</body>
</html>