treebird/perl/timeline.pm
nekobit ff3d383464 Timeline template
FossilOrigin-Name: 33082559569a1dd5aa038d4636583d0918253724defbb58570f5baafe06220d1
2022-08-04 02:47:48 +00:00

25 lines
476 B
Perl

package timeline;
use strict;
use warnings;
use Exporter 'import';
our @EXPORT = qw( generate_attachment );
use template_helpers 'to_template';
use icons 'get_icon';
sub content_timeline
{
my ($ssn, $data, $statuses, $title, $show_post_box) = @_;
my %vars = (
prefix => '',
ssn => $ssn,
statuses => $statuses,
title => $title,
show_post_box => $show_post_box,
);
to_template(\&vars, \&data->{'timeline.tt'});
}