Continue fleshing out project management system

This commit is contained in:
Alex Cabal 2024-12-16 14:56:10 -06:00
parent 657ecc68d4
commit 051e286a6d
19 changed files with 420 additions and 108 deletions

View file

@ -1,17 +1,24 @@
<div class="footer">
<p>
<a href="<?= SITE_URL ?>/donate">Donate</a> &bull; <a href="<?= SITE_URL ?>/contribute">Get involved</a> &bull; <a href="<?= SITE_URL ?>/feeds">Ebook feeds</a>
</p>
<?
$includeLinks = $includeLinks ?? true;
?>
<div class="footer<? if(!$includeLinks){ ?> no-links<? } ?>">
<? if($includeLinks){ ?>
<p>
<a href="<?= SITE_URL ?>/donate">Donate</a> &bull; <a href="<?= SITE_URL ?>/contribute">Get involved</a> &bull; <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>
<address>
<p>Standard Ebooks L<sup>3</sup>C</p>
<p>2027 W. Division St. Unit 106</p>
<p>Chicago, IL 60622</p>
</address>
<? 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>