mirror of
https://github.com/standardebooks/web.git
synced 2025-07-10 00:30:28 -04:00
25 lines
685 B
PHP
25 lines
685 B
PHP
<?
|
|
$includeLinks ??= true;
|
|
?>
|
|
<div class="footer<? if(!$includeLinks){ ?> no-links<? } ?>">
|
|
<? if($includeLinks){ ?>
|
|
<p>
|
|
<a href="<?= SITE_URL ?>/donate">Donate</a> • <a href="<?= SITE_URL ?>/contribute">Get involved</a> • <a href="<?= SITE_URL ?>/feeds">Ebook feeds</a>
|
|
</p>
|
|
<? } ?>
|
|
<p>
|
|
<a href="<?= SITE_URL ?>">
|
|
<img src="https://standardebooks.org/images/logo-small.png" alt="The Standard Ebooks logo."/>
|
|
</a>
|
|
</p>
|
|
<? if($includeLinks){ ?>
|
|
<address>
|
|
<p>Standard Ebooks L<sup>3</sup>C</p>
|
|
<p>2027 W. Division St. Unit 106</p>
|
|
<p>Chicago, IL 60622</p>
|
|
</address>
|
|
<? } ?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|