Files
songsheet_generator/templates/songsheet.tt
T
2024-11-27 14:51:40 +01:00

25 lines
593 B
Plaintext

[% PROCESS variables.tt;
IF proper != '';
PROCESS "${propers_dir}/${proper}.tt";
END;
-%]
[% parts = 0 -%]
[% INCLUDE header.tt -%]
\begin{document}
[% INCLUDE head.tt %]
[% USE song_choices = datafile("${config_dir}/song_choices.csv", delim= '|') %]
[% FOREACH song = song_choices %]
[% template = song.template == '' ? "song_template.tt" : song.template -%]
[% INCLUDE "$template"
purpose = song.purpose
content = song.content
variables = song.variables ? "${library_dir}/${song.variables}/assignments.tt" : ''
%]
[% END %]
[% INCLUDE footer.tt %]
\end{document}