025036832a
FossilOrigin-Name: 58d7a2add5fc05eac12f8bacd7071095d91d0c9d3f481454202898b1cf5c115a
41 lines
870 B
Perl
41 lines
870 B
Perl
use strict;
|
|
use warnings;
|
|
# Modules
|
|
use Template;
|
|
use l10n qw( &lang %L10N );
|
|
use notifications qw( generate_notification_compact );
|
|
use template_helpers qw( &to_template );
|
|
use status;
|
|
|
|
# my $template = Template->new(
|
|
# {
|
|
# INTERPOLATE => 1,
|
|
# POST_CHOMP => 1,
|
|
# EVAL_PERL => 1,
|
|
# TRIM => 1
|
|
# });
|
|
|
|
sub base_page
|
|
{
|
|
my ($ssn,
|
|
$data,
|
|
$main,
|
|
$notifs) = @_;
|
|
my $result;
|
|
|
|
my %vars = (
|
|
prefix => '',
|
|
ssn => $ssn,
|
|
title => $L10N{'EN_US'}->{'APP_NAME'},
|
|
lang => \&lang,
|
|
main => $main,
|
|
sidebar_opacity => $ssn->{config}->{sidebar_opacity} / 255,
|
|
acct => $ssn->{account},
|
|
data => $data,
|
|
notifs => $notifs,
|
|
notification_compact => \&generate_notification_compact,
|
|
);
|
|
|
|
to_template(\%vars, \$data->{'main.tt'});
|
|
}
|
|
|