summaryrefslogblamecommitdiffstats
path: root/templates/template.gohtml
blob: 911bfdd20a53b86672ac31c84aa5dd4261745639 (plain) (tree)






















































                                                                                                           
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8"/>
	<style>
	{{ tpl (file.Read "templates/styles.css") }}
	</style>
</head>

<body>
	<section>
	{{ tpl (file.Read "templates/invoice.gohtml")
		(dict
			"ctx" (dict "lang" "fr")
			"data" .data
			"translations" .translations) }}
	</section>

	<section>
		<article class="annex">
			<p>annexe 01: facture en anglais / invoice</p>
		</article>
		{{ tpl (file.Read "templates/invoice.gohtml")
			(dict
				"ctx" (dict "lang" "en")
				"data" .data
				"translations" .translations) }}
	</section>

	<!---
	<section>
		<article class="annex">
			<p>annexe 02: conditions général de vente</p>
		</article>
		{{ tpl (file.Read "templates/terms.gohtml")
			(dict
				"ctx" (dict "lang" "fr")
				"data" .data
				"translations" .translations) }}
	</section>

	<section>
		<article class="annex">
			<p>annexe 03: conditions générales de vente en anglais / terms and conditions</p>
		</article>
		{{ tpl (file.Read "templates/terms.gohtml")
			(dict
				"ctx" (dict "lang" "en")
				"data" .data
				"translations" .translations) }}
	</section>
	--->

</body>
</html>
remember that computers suck.