blob: 4dc5e7fe564238048ad07fc631f52c168cbd9528 (
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
|
</article>
<hr />
<footer class="printhide">
<?php include('nav.php'); ?>
<p>
© 2019-<?php printf('%s', date('Y')); ?> Adam Carpenter
<br>
<?php
if (!isset($nolicense)) {
printf('%s', <<<EOF
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>
|