appwrite/app/views/console/comps/footer.phtml

20 lines
668 B
PHTML
Raw Normal View History

2019-08-24 07:27:11 +00:00
<?php
$home = $this->getParam('home', '');
?>
2019-05-09 06:54:39 +00:00
<footer class="clear margin-top-xl">
<ul class="copyright pull-start">
<li>
2019-10-01 17:10:16 +00:00
<a href="https://github.com/appwrite/appwrite" target="_blank"><i class="icon-github-circled"></i> GitHub Repository</a>
2019-05-09 06:54:39 +00:00
</li>
<li>
2019-05-12 06:30:22 +00: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 06:54:39 +00:00
</li>
<li>
2019-08-24 07:27:11 +00:00
<a href="<?php echo $home; ?>/docs" target="_blank">Documentation</a>
2019-05-09 06:54:39 +00:00
</li>
<li>
2019-08-24 19:35:18 +00:00
v:<?php echo VERSION; ?>
2019-05-09 06:54:39 +00:00
</li>
</ul>
2019-10-02 01:34:49 +00:00
</footer>