% layout 'default';
% title 'Filebin -- View';
% my $file = stash('file') || {};
<%= link_to l('Upload') => "/filebin", class => 'btn upload' %>
<%= link_to l('Download') => $file->{path}, class => 'btn download', download => $file->{fname} %>
% if (config->{filebin}->{show_latest}) {
<%= link_to l('Latest files') => "/filebin/latest", class => 'btn latest' %>
% }
% if ($file->{ftype} eq 'i') {
<%= image $file->{path} %>
% } elsif ($file->{ftype} eq 'a') {
<%= tag audio => (src => $file->{path}, controls => 'controls', preload => 'metadata') => l('HTML5-aware browser required') %>
% } elsif ($file->{ftype} eq 'v') {
<%= tag video => (src => $file->{path}, controls => 'controls', preload => 'metadata') => l('HTML5-aware browser required') %>
% }
<%= l('Name') %> | : | <%= $file->{fname} %> |
<%= l('Size') %> | : | <%= sprintf("%.1f kb", $file->{fsize} / 1024) %> |
<%= l('Mime') %> | : | <%= $file->{fmime} %> |
% if (($file->{ftype} eq 'i' or $file->{ftype} eq 'v') and ($file->{res_w} or $file->{res_h})) {
<%= l('Image size') %> | : | <%= sprintf("%dx%d", $file->{res_w}, $file->{res_h}) %> |
% }