1
0
mirror of https://github.com/dani/vroom.git synced 2024-07-04 09:18:53 +02:00
vroom/templates/default/header.html.ep
Daniel Berteaud 6a916d7ba7 Add timestamp as get param to resources
Should force clients to get new files each time thy change
without any maintenance, as it just reads the file mtime
Should fix #22
2014-05-10 18:37:15 +02:00

14 lines
388 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title><%= $title %></title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<%
foreach my $css (qw(bootstrap.min.css vroom.css)){
%>
<link href="/css/<%= $css %>?<%= $self->get_mtime("css/$css") %>" rel="stylesheet" type="text/css">
<% } %>
<link rel="icon" type="image/png" href="/img/favicon.png" />
</head>
<body>