Files
lutim/templates/twitter.html.ep
T
2014-02-15 23:01:37 +01:00

20 lines
603 B
Plaintext

% # vim:set sw=4 ts=4 sts=4 ft=html.epl expandtab:
<!DOCTYPE html>
<html>
<head>
<title>LUTIm</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" />
<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('/')->to_abs().$short %>">
</head>
<body>
<img src="<%= url_for('/').$short %>" alt="<%= $filename %>">
</body>
</html>