Browse Source

* fix use of undef value

master
Alex "AdUser" Z 10 years ago
parent
commit
194bfc3649
  1. 4
      templates/layouts/default.html.ep

4
templates/layouts/default.html.ep

@ -6,10 +6,10 @@
<meta name="robots" content="noindex,nofollow"/>
<title><%= title %> - Linux во Владивостоке</title>
% my @styles = qw(default);
% push @styles, split(/\s+/, stash('styles'));
% push @styles, split(/\s+/, stash('styles') || '');
%
% my @scripts = ();
% push @scripts, split(/\s+/, stash('scripts'));
% push @scripts, split(/\s+/, stash('scripts') || '');
%
% foreach my $style (@styles) {
<%= stylesheet "/css/$style.css" %>

Loading…
Cancel
Save