in reply to POE::Component::Server::HTTP and CSS
sub header_css { my @css_style_sheets = ( "http://othermachine/css/standard.css", "http://othermachine/css/ssd.css", ); my @head_links; foreach (@css_style_sheets) { push(@head_links, Link({ -rel => 'stylesheet', -type => 'text/css', -href => $_ })); } return \@head_links; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: POE::Component::Server::HTTP and CSS
by jfroebe (Parson) on Jan 10, 2006 at 19:23 UTC | |
by ikegami (Patriarch) on Jan 10, 2006 at 19:25 UTC | |
by jfroebe (Parson) on Jan 10, 2006 at 19:37 UTC | |
by jfroebe (Parson) on Jan 10, 2006 at 19:52 UTC |