cacert-boardvoting/boardvoting/templates/footer.html
Jan Dittberner 94dcb5bd75 Use static assets for HTML templates
- implement custom http.Filesystem boardvoting.AssetFS
- replace "footer" and "header" with "footer.html" and "header.html"
- change renderTemplate to use Assets
- use boardvoting.GetAssetFS() with http.Fileserver
2018-03-29 21:26:12 +02:00

12 lines
No EOL
267 B
HTML

{{ define "footer.html" }}
</div>
<script type="text/javascript">
$(document).ready(function() {
$('.message .close').on('click', function() {
$(this).closest('.message').transition('fade');
});
});
</script>
</body>
</html>
{{ end }}