1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bozon_ynh.git synced 2024-09-03 18:16:09 +02:00
bozon_ynh/sources/templates/default/footer.php
2016-03-23 19:30:43 +01:00

23 lines
627 B
PHP

<footer>
<p><a id="github" href="https://github.com/broncowdd/BoZoN" title="<?php e('Fork me on github'); ?>" target="_blank"><span class="icon-github-circled" ></span></a></p>
<p id="version">BoZoN <?php echo VERSION; ?></p>
</footer>
<script>
// click on lightbox link
on('click','a[data-type]',function(event){
lb_show(this);
event.preventDefault();
event.stopPropagation();
return false;
})
// click on folder to ufold content on share page
on('click','.folder',function(){
toggleClass(this.nextElementSibling,'show');
toggleClass(this,'unfolded');
});
</script>
</body>
</html>