treebird/perl/timeline.pm
nekobit a3bb29d01a Perl timeline C
FossilOrigin-Name: c078ecf81d0273400acba2d3be987a8a0363eb6bd540beebb8f2427348707496
2022-08-04 01:15:17 +00:00

25 lines
473 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,
post_box => $show_post_box,
);
to_template(\&vars, \&data->{'attachment.tt'});
}