summaryrefslogtreecommitdiff
path: root/includes/foot.php
blob: 7b8bb011f3966c6387c60dd3292f6b080d812ba5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
</article>
<hr />

<footer class="printhide">
	<?php include('nav.php'); ?>
	<p>
		&copy; 2019-<?php printf('%s', date('Y')); ?> Adam Carpenter
		<br>
<?php
if (!isset($nolicense)) {
	printf('%s', <<<EOF
		Content released under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.
		<br>
		Source code released under <a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a>, unless otherwise stated.
		<br>
EOF);
}
?>
		<noscript>
			JavaScript? Where we're going we don't need JavaScript.
		</noscript>
	</p>
</footer>

</body>

</html>