footer.php 931 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Site footer view.
  4. *
  5. * To be included from all views.
  6. *
  7. * @category View
  8. */
  9. namespace swdb;
  10. ?>
  11. <footer>
  12. <table id='footer_table'>
  13. <tr>
  14. <td id='footer_left'>
  15. Version <?=APP::VERSION?>. Developed by <a href='https://inigovalentin.com'>I&ntilde;igo Valentin</a>.
  16. <br/>
  17. <br/>
  18. Source code available on <a href='https://github.com'>Github</a> under the GPLv3.
  19. </td>
  20. <td id='footer_right'>
  21. Neither I nor this tool are affiliated with or endorsed by <a href='http://com2us.com/'>Com2uS</a> in any way. The Summoners War logo and the monster images are property of their respective owners (Com2US, probably). Monsters images and info are parsed from <a href='https://swarfarm.com'>https://swarfarm.com</a>.
  22. </td>
  23. </tr>
  24. </table>
  25. </footer>