Created
October 13, 2016 04:39
-
-
Save toptensoftware/8f005749ae464013efca1dda09cacdd8 to your computer and use it in GitHub Desktop.
Cantabile's default printable set list template.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>{Title}</title> | |
| <style> | |
| body { font-family:Arial; margin:20px; font-size:14pt} | |
| </style> | |
| </head> | |
| <body> | |
| <h1>{Title}</h1> | |
| {foreach Sections} | |
| {if Title} | |
| <h2>{Title}</h2> | |
| {/if} | |
| <ol> | |
| {foreach Songs} | |
| <li>{Name}</li> | |
| {/foreach} | |
| </ol> | |
| {/foreach} | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment