mirror of
https://framagit.org/fiat-tux/hat-softwares/lutim.git
synced 2026-07-05 09:21:34 +02:00
22 lines
903 B
Plaintext
22 lines
903 B
Plaintext
% # vim:set sw=4 ts=4 sts=4 ft=html.epl expandtab:
|
|
% my $scheme = (defined(config('https')) && config('https')) ? 'https' : 'http';
|
|
<!DOCTYPE html>
|
|
<html style="height:100%;">
|
|
<head>
|
|
<title>LUTIm</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" type="image/png" href="<%= url_for('/')->base->scheme($scheme) %>/img/favicon.png">
|
|
<meta name="twitter:card" content="photo">
|
|
% if (defined(config('tweet_card_via'))) {
|
|
<meta name="twitter:site" content="<%= config('tweet_card_via') %>">
|
|
% }
|
|
<meta name="twitter:image:src" content="<%= url_for('/')->base->scheme($scheme)->to_abs().'/'.$short %>">
|
|
</head>
|
|
<body style="height: 97%;">
|
|
<img style="max-width:100%; max-height:100%;" src="<%= url_for('/').$short %>" alt="<%= $filename %>">
|
|
</body>
|
|
</html>
|
|
|
|
|