<html>
<head>
<title>{Title}</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<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>