a3bb29d01a
FossilOrigin-Name: c078ecf81d0273400acba2d3be987a8a0363eb6bd540beebb8f2427348707496
24 lines
473 B
Perl
24 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'});
|
|
}
|