Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Created October 13, 2016 04:39
Show Gist options
  • Select an option

  • Save toptensoftware/8f005749ae464013efca1dda09cacdd8 to your computer and use it in GitHub Desktop.

Select an option

Save toptensoftware/8f005749ae464013efca1dda09cacdd8 to your computer and use it in GitHub Desktop.
Cantabile's default printable set list template.
<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