# Blosxom Plugin: siteskinner
# Author(s): Jason Silver
# Version: 0.1
# Home/Docs/Licensing: contact at http://intelliscript.net/

package siteskinner;

# --- Configurable variables -----


# There are no more user configurable variables

$browser_type = $ENV{'HTTP_USER_AGENT'};

# --------------------------------

use CGI qw/:standard/;

$browseable_path;


sub start {
    # shut plugin down if runnning dynamically... do I want this?
#    return $blosxom::static_or_dynamic eq 'dynamic' ? 1 : 0;
    if ($blosxom::flavour ne "rss" && $blosxom::flavour ne "atom" && $browser_type !~ /Windows CE/gi && $browser_type !~ /AvantGo/gi ){
        require "/home/pathtoyoursite/public_html/cgi-bin/print_header.pl";

    }
}
sub end {
    require "/home/pathtoyoursite/public_html/cgi-bin/print_footer.pl";
    return undef;
}
1;

__END__

How to use:

