initial commit

This commit is contained in:
2024-10-17 17:12:52 +02:00
parent a38c1690dd
commit e09a8ec6eb
71 changed files with 1341 additions and 229 deletions
+20
View File
@@ -0,0 +1,20 @@
[% PROCESS variables.tt -%]
[% parts = 0 -%]
[% INCLUDE header.tt -%]
\begin{document}
[% INCLUDE head.tt %]
[% USE song_choices = datafile('song_choices.csv') %]
[% FOREACH song = song_choices %]
[% template = song.template == '' ? "song_template.tt" : song.template -%]
[% INCLUDE "$template"
purpose = song.purpose
content = song.content
variables = song.variables ? "${song.variables}/assignments.tt" : ''
%]
[% END %]
[% INCLUDE footer.tt %]
\end{document}