1
0
Fork 0
mirror of synced 2024-07-05 22:51:24 +12:00
appwrite/app/views/console/comps/footer.phtml

21 lines
713 B
PHTML
Raw Normal View History

2019-08-24 19:27:11 +12:00
<?php
$home = $this->getParam('home', '');
2019-11-29 20:35:18 +13:00
$version = $this->getParam('version', '');
2019-08-24 19:27:11 +12:00
?>
2019-05-09 18:54:39 +12:00
<footer class="clear margin-top-xl">
<ul class="copyright pull-start">
<li>
2019-10-02 06:10:16 +13:00
<a href="https://github.com/appwrite/appwrite" target="_blank"><i class="icon-github-circled"></i> GitHub Repository</a>
2019-05-09 18:54:39 +12:00
</li>
<li>
2019-11-29 20:35:18 +13:00
<a href="https://github.com/appwrite/appwrite/issues/new?body=%0A%0A%0A---%0AAppwrite Version:%20<?php echo $version; ?>" target="_blank">Open an Issue</a>
2019-05-09 18:54:39 +12:00
</li>
<li>
2019-08-24 19:27:11 +12:00
<a href="<?php echo $home; ?>/docs" target="_blank">Documentation</a>
2019-05-09 18:54:39 +12:00
</li>
<li>
2019-11-29 20:35:18 +13:00
v:<?php echo $version; ?>
2019-05-09 18:54:39 +12:00
</li>
</ul>
2019-10-02 14:34:49 +13:00
</footer>